Skip to content

Commit 6b72b8d

Browse files
author
Ruben
committed
Initial commit
0 parents  commit 6b72b8d

File tree

7 files changed

+464
-0
lines changed

7 files changed

+464
-0
lines changed

LICENSE

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

assets/screenshot-1.png

96.6 KB
Loading

assets/screenshot-2.png

124 KB
Loading

assets/screenshot-3.png

266 KB
Loading

boei-help.php

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?php
2+
/*
3+
* Plugin Name: Boei Help
4+
* Version: 1.0.0
5+
* Plugin URI: https://www.boei.help/?utm_source=wordpress&utm_medium=wp_plugins
6+
* Description: Convert more using Boei by talking to visitors on their favourite channels. This plugin embeds Boei's script in your WordPress website.
7+
* Author: Boei.help
8+
* Tested up to: 5.4
9+
* License: GPL v2 or later
10+
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
11+
*
12+
* @package Boei Help
13+
* @author Boei.help
14+
* @license GPL-2.0-or-later
15+
*/
16+
17+
if (!defined('ABSPATH')) exit;
18+
19+
20+
/**
21+
* Optional function for users that want to test on localhost with their live domain
22+
* @link https://app.boei.help/docs/1.0/localhost
23+
*/
24+
// function boei_localhost_test(){
25+
// echo '<script>window.Boei_Test_Hostname = "example.com";</script>';
26+
// }
27+
//add_action( 'wp_head', 'boei_localhost_test' );
28+
29+
30+
/**
31+
* Loading the Boei script on the frontend
32+
*/
33+
function boei_load_script() {
34+
35+
wp_enqueue_script('boei', 'https://cdn.boei.help/hello.js', array(), '1.0', true);
36+
37+
}
38+
add_action('wp_enqueue_scripts', 'boei_load_script');
39+
40+
41+
42+
/**
43+
* Adding link to the Boei settings page in wp-plugins admin
44+
*/
45+
function boei_admin_action_links( $links ) {
46+
47+
$links = array_merge( array(
48+
'<a href="' . esc_url( 'https://app.boei.help' ) . '">' . __( 'Settings', 'textdomain' ) . '</a>'
49+
), $links );
50+
51+
return $links;
52+
53+
}
54+
add_action( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'boei_admin_action_links' );

index.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
// Silence is golden

readme.txt

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
=== Boei Help ===
2+
3+
Contributors: boeihelp
4+
Donate link: https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage
5+
Tags: chat, whatsapp, facebook messenger, telegram, google maps, crisp chat, intercom, twitter, snapchat, line, skype, waze, viber, email, calendly, call
6+
Requires at least: 2.0
7+
Tested up to: 5.4
8+
Requires PHP: 5.2.4
9+
Stable tag: 1.0.0
10+
License: GPLv2 or later
11+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
12+
13+
Convert more by talking to visitors on their favourite channels.
14+
15+
== Description ==
16+
17+
With Boei you can increase conversions by talking to visitors on their favourite channels.
18+
19+
Don't provide website chat only, but also WhatsApp, Twitter DMs, Facebook messenger, and other options.
20+
21+
Provide support to visitors on the channels that they already use, build a relationship instead of being a live chat robot 🤖
22+
23+
> You need a free account from [Boei](https://www.boei.help/?utm_source=wordpress&utm_medium=plugin).
24+
25+
== Installation ==
26+
27+
Installing "Boei" can be done in multiple ways.
28+
29+
= Install via WordPress Plugins =
30+
31+
1. Search for 'Boei' plugin in you WordPress admin
32+
1. Activate the plugin through the 'Plugins' menu in WordPress
33+
34+
= Download the ZIP via WordPress.org =
35+
36+
1. Download the plugin via WordPress.org
37+
1. Upload the ZIP file through the 'Plugins > Add New > Upload' screen in your WordPress dashboard
38+
1. Activate the plugin through the 'Plugins' menu in WordPress
39+
40+
== Frequently Asked Questions ==
41+
42+
= Do I need a paid subscription? =
43+
No, Boei is free. You only need a free account. You can create an account at [Boei.help](https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage).
44+
45+
= Where can I make adjustments to my button? =
46+
[Login to your free account](https://app.boei.help/?utm_source=wordpress&utm_medium=pluginpage).
47+
48+
= Where can I find the documentation and features? =
49+
See our [documentation here](https://app.boei.help/docs?utm_source=wordpress&utm_medium=pluginpage).
50+
51+
= Where can I leave feedback? =
52+
Send a message [using the Boei button on the website](https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage).
53+
54+
== Screenshots ==
55+
56+
1. Boei button on website
57+
2. Boei button opened
58+
3. Boei administration panel
59+
60+
== Upgrade Notice ==
61+
62+
None
63+
64+
== Changelog ==
65+
66+
= 1.0 =
67+
* 2019-05-09
68+
* Initial release

0 commit comments

Comments
 (0)