Changeset 3161522
- Timestamp:
- 10/02/2024 01:05:46 PM (18 months ago)
- Location:
- boei-help/trunk
- Files:
-
- 2 edited
-
boei-help.php (modified) (16 diffs)
-
readme.txt (modified) (17 diffs)
Legend:
- Unmodified
- Added
- Removed
-
boei-help/trunk/boei-help.php
r3085128 r3161522 4 4 * Version: 1.5.2 5 5 * Plugin URI: https://www.boei.help/?utm_source=wordpress&utm_medium=wp_plugins 6 * Description: Boei is a widget that allows you to engage with your website visitors in their favourite messaging app (e.g. WhatsApp, WhatsApp Business, Telegram). Convert more using Boei by talking to visitors on their favourite channels.6 * Description: Boei is a widget that allows you to engage with your website visitors in their favourite messaging app (e.g., Telegram, SMS, WeChat). Convert more using Boei by talking to visitors on their favourite channels. 7 7 * Author: Boei 8 8 * Author URI: https://www.boei.help/?utm_source=wordpress&utm_medium=wp_plugins 9 * Tested up to: 6. 5.39 * Tested up to: 6.6.2 10 10 * Requires PHP: 7.0 11 11 * License: GPL v2 or later … … 27 27 * 28 28 * @link https://app.boei.help/docs/1.0/localhost 29 * Not used anymore for loading the script for WhatsApp, WhatsApp Business, Telegram, Facebook Messenger, Twitter DMs, etc29 * Not used anymore for loading the script for Telegram, Twitter DMs, etc 30 30 * Now use the advanced installation method. 31 31 */ … … 33 33 // echo '<script>window.Boei_Test_Hostname = "example.com";</script>'; 34 34 // } 35 // add_action( 'wp_head', 'boei_localhost_test');35 // add_action('wp_head', 'boei_localhost_test'); 36 36 37 37 /** 38 38 * Loading the Boei script on the frontend. 39 39 * wp_enqueue_script() function doesn’t support async. 40 * This will load the script for WhatsApp, WhatsApp Business, Telegram, Facebook Messenger, Twitter DMs, etc40 * This will load the script for Telegram, Twitter DMs, SMS, WeChat, etc 41 41 */ 42 42 function boei_load_script() … … 44 44 if (boei_get_key()) { 45 45 // Advanced installation 46 wp_enqueue_script('boei', 'https://app.boei.help/embed/k/' .boei_get_key(), array(), '1.0', true);46 wp_enqueue_script('boei', 'https://app.boei.help/embed/k/' . boei_get_key(), array(), '1.0', true); 47 47 } else { 48 48 // Regular installation … … 53 53 add_action('wp_enqueue_scripts', 'boei_load_script'); 54 54 55 56 55 /** 57 56 * Adding link to the Boei settings page in wp-plugins admin 58 * On the settings page, one can manage the buttons with WhatsApp, WhatsApp Business, Telegram, Facebook Messenger, Twitter DMs, etc57 * On the settings page, one can manage the buttons with Telegram, Twitter DMs, SMS, WeChat, etc 59 58 */ 60 59 function boei_admin_action_links($links) 61 60 { 62 61 $links = array_merge(array( 63 '<a href="' .esc_url(add_query_arg(62 '<a href="' . esc_url(add_query_arg( 64 63 'page', 65 64 'boei-help-settings', 66 get_admin_url() .'admin.php'67 )) .'">'.__('Setup & Settings', 'textdomain').'</a>',68 '<a href="' .esc_url(boei_url_homepage()).'">'.__('Support', 'textdomain').'</a>',65 get_admin_url() . 'admin.php' 66 )) . '">' . __('Setup & Settings', 'textdomain') . '</a>', 67 '<a href="' . esc_url(boei_url_homepage()) . '">' . __('Support', 'textdomain') . '</a>', 69 68 ), $links); 70 69 … … 72 71 } 73 72 74 add_action('plugin_action_links_' .plugin_basename(__FILE__), 'boei_admin_action_links');73 add_action('plugin_action_links_' . plugin_basename(__FILE__), 'boei_admin_action_links'); 75 74 76 75 /** 77 76 * Add menu option for Boei and register the settings 78 * Clicking on it will lead to the settings for WhatsApp, WhatsApp Business, Telegram, Facebook Messenger, Twitter DMs, etc77 * Clicking on it will lead to the settings for Telegram, Twitter DMs, etc 79 78 */ 80 79 function boei_register_admin() … … 91 90 /** 92 91 * Return value of the Boei key 93 * The advanced installation key for the script for WhatsApp, WhatsApp Business, Telegram, Facebook Messenger, Twitter DMs, etc92 * The advanced installation key for the script for Telegram, Twitter DMs, etc 94 93 */ 95 94 function boei_get_key() … … 101 100 * Display settings and installation page 102 101 * This basically redirects to the Boei admin area. 103 * On the admin area, one can manage the buttons and helpers for WhatsApp, WhatsApp Business, Telegram, Facebook Messenger, Twitter DMs, etc102 * On the admin area, one can manage the buttons and helpers for Telegram, Twitter DMs, etc 104 103 */ 105 104 function boei_settings() … … 110 109 $safeInstallationURL = esc_url('https://boei.help/docs/installation-wordpress?utm_source=wordpress&utm_medium=wp_plugins'); 111 110 $safeRoadmapURL = esc_url('https://feedback.boei.help'); 112 $Boei = "<a href=\"".$safeHomepageURL."\" target=\"_blank\">Boei</a>"; 113 114 //<a href="{$safeHomepageURL}" target="_blank"><img src="{$safeLogoURL}" style="max-width: 50px; margin-top: 20px;" alt="logo"></a> 115 116 // Get current user and domain for SSO like registration 111 $Boei = "<a href=\"" . $safeHomepageURL . "\" target=\"_blank\">Boei</a>"; 112 113 // Get current user and domain for SSO-like registration 117 114 $current_user = wp_get_current_user(); 118 115 $boei_register_email = $current_user->user_email; … … 121 118 $boei_register_domain = $urlparts['host']; 122 119 123 $safeRegisterURL = esc_url('https://app.boei.help/register?utm_source=wordpress&utm_medium=wp_plugins&email=' . urlencode($boei_register_email) . '&domain=' .urlencode($boei_register_domain));120 $safeRegisterURL = esc_url('https://app.boei.help/register?utm_source=wordpress&utm_medium=wp_plugins&email=' . urlencode($boei_register_email) . '&domain=' . urlencode($boei_register_domain)); 124 121 125 122 echo <<<EOTEXT 126 123 127 124 <div class="wrap"> 128 129 125 <div id="icon-my-id" class="icon32"> 130 126 <img src="{$safeLogoURL}" style="max-width: 32px; margin-top: 20px;" alt="logo"> … … 132 128 <h2>Boei</h2> 133 129 134 135 130 <div style="display: flex; flex-direction: row; flex-wrap: wrap; width: 100%;"> 136 131 <div style="padding-right: 60px; display: flex; flex-direction: column; flex-basis: 100%; flex: 2; min-width: 300px; font-size: 14px;"> … … 140 135 </div> 141 136 <div class="inside"> 142 Don't drop customers trying to reach you. With {$Boei}, you offer their favorite contact channels in a pretty widget. 143 </div> 144 </div> 145 137 Don't drop customers trying to reach you. With {$Boei}, you offer their favorite contact channels in a pretty widget. 138 </div> 139 </div> 140 146 141 <div class="postbox"> 147 142 <div class="postbox-header"> … … 151 146 <p>1. Start here 👇</p> 152 147 <a href="{$safeRegisterURL}" class="button button-secondary" target="_blank" style="background-color: #713eec; color: #ffffff; border: 0;">Create free widget</a> 153 148 154 149 <p style="margin-top:40px;">2. Enter your widget key to connect your widget with WordPress. <a href="{$safeInstallationURL}">Where can I find this key?</a><br><br><strong>Widget Key</strong></p> 155 150 156 151 EOTEXT; 157 152 … … 159 154 settings_fields('boei_key'); 160 155 do_settings_sections('boei_key'); 161 echo '<input type="text" name="boei_key_option" value="' .esc_attr(boei_get_key()).'" style="width: 80%;" placeholder="Example: 21424816-afa8-4f70-85f0-85ddfbcbcec6" />';156 echo '<input type="text" name="boei_key_option" value="' . esc_attr(boei_get_key()) . '" style="width: 80%;" placeholder="Example: 21424816-afa8-4f70-85f0-85ddfbcbcec6" />'; 162 157 submit_button('Save key'); 163 158 echo '</form>'; 164 159 165 160 echo <<<EOTEXT 166 161 167 162 <p>You make changes in the Boei app. This ensures you have the latest version and features.</p> 168 163 <a href="{$safeManageURL}" class="button button-secondary" target="_blank">Manage existing widgets</a> 169 164 </div> 170 165 </div> 171 172 173 166 174 167 <div class="postbox"> 175 168 <div class="inside"> … … 177 170 </div> 178 171 </div> 179 172 180 173 </div> 181 174 <div style="padding-right: 30px; display: flex; flex-direction: column; flex-basis: 100%; flex: 1; min-width: 300px; font-size: 10px;"> 182 175 183 176 <div class="video-container" style="position:relative; padding-bottom:56.25%; padding-top:30px; height:0; overflow:hidden;"> 184 177 <iframe style="position:absolute; top:0; left:0; width:100%; height:100%;" width="560" height="315" src="https://www.youtube.com/embed/BmEz7_3HFs4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> 185 178 </div> 186 179 187 180 <br /> 188 181 189 182 <h3 style="margin-bottom: 0;">Questions or support</h3> 190 183 <p>Go to the <a href="{$safeHomepageURL}" target="_blank">Boei site</a> and click our Boei widget 💪</p> 191 184 192 185 <br /> 193 186 194 187 <h3 style="margin-bottom: 0;">Roadmap & feedback</h3> 195 188 <p>You can follow Boei developments on our <a href="{$safeRoadmapURL}" target="_blank">public roadmap</a>.</p> 196 189 197 190 </div> 198 191 </div> 199 192 </div> 200 193 EOTEXT; 201 202 203 } 204 205 /** 206 * Return app management url 194 } 195 196 /** 197 * Return app management URL 207 198 */ 208 199 function boei_url_manage() … … 212 203 213 204 /** 214 * Return Boei hom page205 * Return Boei homepage 215 206 */ 216 207 function boei_url_homepage() -
boei-help/trunk/readme.txt
r3085128 r3161522 1 === Ultimate Free Chat Widget: WhatsApp, Telegram, FB Messenger, Live Chat, Social DMs, WeChat, Email, SMS, Call Now & more – Boei ===1 === Ultimate Free Chat Widget: Telegram, Live Chat, Social DMs, WeChat, Email, SMS, Call Now & more – Boei === 2 2 3 3 Contributors: boeihelp 4 4 Donate link: https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage 5 Tags: whatsapp contact, whatsapp, whatsapp plugin, facebook messenger, whatsapp widget5 Tags: telegram, live chat, social dms, wechat, sms 6 6 Requires at least: 2.0 7 7 Requires PHP: 7.0 8 Tested up to: 6. 5.38 Tested up to: 6.6.2 9 9 Stable tag: 1.5.2 10 10 License: GPLv2 or later 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html ±± 12 13 Free WhatsApp Chat, Facebook Messenger Chat, Contact Form, Callback request, WhatsApp for Business, Phone button + 50 channels. Connect with more leads on autopilot. 14 15 == Description == 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html 12 13 Free Chat Widget, Live Chat, Social DMs, WeChat, Email, SMS, Call Now & more. Connect with more leads on autopilot. 14 15 --- 16 17 ## Description 16 18 17 19 [Website](https://boei.help/chat/wordpress?utm_source=wordpress&utm_medium=pluginpage) | [Showcase](https://boei.help/showcase?utm_source=wordpress&utm_medium=pluginpage) | [Docs](https://boei.help/docs?utm_source=wordpress&utm_medium=pluginpage) | [Support](mailto:[email protected]) … … 26 28 27 29 💬 Talk to your customers on their favorite apps 28 (WhatsApp Chat, Telegram, Facebook Messenger, Social DMs, and many more…)30 (e.g., Telegram, Social DMs, WeChat, SMS, and many more…) 29 31 30 32 🔥 Remove friction and collect 30% more leads 31 33 32 34 🛟 Supercharge your customer support with a floating support assistant. 33 34 35 35 36 36 **Ultimate WordPress chat widget with 50+ supported channels** 37 37 Boei integrates with all popular messaging and chat services: 38 WhatsApp Chat, WhatsApp Business, Facebook Messenger Chat, Telegram, Social DMs (Instagram, Twitter, Snapchat…) Live Chat, Jivochat, Crisp, Skype, Slack, WeChat, Discord, Viber, Tawk, Call Now … and many more.38 Telegram, Social DMs (Twitter, Snapchat, WeChat, etc.), Live Chat, Jivochat, Crisp, Skype, Slack, Discord, Viber, Tawk, Call Now … and many more. 39 39 40 40 **Boei has chat buttons. And more. Meet your Contact Supermenu.** … … 44 44 Directly integrate videos, maps, messages, images, iframes, or custom HTML to enhance and personalize your Supermenu. 45 45 46 47 48 46 **Super easy, zero code setup** 49 47 … … 51 49 52 50 **The most efficient WordPress chat plugin: Lightweight script keeps your site blazing fast.** 51 53 52 Boei’s script is 300 times smaller than regular chat scripts. No bloated code that will slow down your site or delay the page load. Let our servers do the work, so your site never skips a beat. 54 53 55 **Flawless 5-star rating on Wordpress.com** 54 **Flawless 5-star rating on WordPress.org** 55 56 56 Check out the stellar rating here on WordPress. 57 57 Or read the raving testimonials on our website. 58 😍 Boei is trusted by [ **7,674** users](https://boei.help/testimonials?utm_source=wordpress&utm_medium=pluginpage) from all over the world. Rated[4.7 based on 158 reviews](https://boei.help/testimonials?utm_source=wordpress&utm_medium=pluginpage).59 60 [youtube https://www.youtube.com/watch?v=GYrKcEVczCs]58 😍 Boei is trusted by [**7,674** users](https://boei.help/testimonials?utm_source=wordpress&utm_medium=pluginpage) from all over the world. Rated [4.7 based on 158 reviews](https://boei.help/testimonials?utm_source=wordpress&utm_medium=pluginpage). 59 60 [youtube https://www.youtube.com/watch?v=GYrKcEVczCs] 61 61 62 62 **Why you need Boei** … … 65 65 Chat and messaging have become the natural way we connect in our private lives. And customers want to talk to businesses the same way they do with friends and family. 66 66 67 70% of consumers prefer messaging apps like WhatsApp, Telegram, Instagram,and live chats over any other form of communication.67 70% of consumers prefer messaging apps like Telegram and live chats over any other form of communication. 68 68 69 69 Give them options with Boei. … … 72 72 And engage with your clients using their preferred channel. 73 73 74 **Don’t miss out on potential customers who prefer to talk to your business esvia:**75 76 1. Messaging apps like Whatsapp, Facebook Messenger,Telegram, Signal, WeChat, Slack, Skype, Discord…77 2. Social DMs like Twitter, Instagram,Snapchat, LinkedIn…74 **Don’t miss out on potential customers who prefer to talk to your business via:** 75 76 1. Messaging apps like Telegram, Signal, WeChat, Slack, Skype, Discord… 77 2. Social DMs like Twitter, Snapchat, LinkedIn… 78 78 3. Chat integrations like Tawk, Jivochat, Drift, Intercom, Crisp… 79 79 80 81 80 Let your visitors choose … and collect many more leads every day. 82 81 83 84 85 82 **Click to chat: All the chat options in one button!** 86 83 87 Once you use Boei your visitors are always just one click away from talking to you. Show what channels you’re available on, and let them choose their favorite apps or channel. Provide a WhatsApp button, Telegram button, FB messenger button,click-to-call button, email button, SMS button, Viber button, or many more, so you never lose a lead again.84 Once you use Boei, your visitors are always just one click away from talking to you. Show what channels you’re available on, and let them choose their favorite apps or channels. Provide a click-to-call button, email button, SMS button, Viber button, or many more, so you never lose a lead again. 88 85 89 86 📈 **More Conversions: Get 30% more leads and calls.** 90 If you offer channels like[ WhatsApp & WhatsApp Business]( https://boei.help/chat/wordpress/whatsapp?utm_source=wordpress&utm_medium=pluginpage), Facebook Messenger, and Telegram, you can convert up to 30% more visitors into leads. 87 88 If you offer channels like Telegram and others, you can convert up to 30% more visitors into leads. 91 89 92 90 👋 **Zero friction**: **Meet your customers where they are.** 93 Let your customers chat with you in a way that feels easy and natural to them. Give them options to choose their favorite apps. Include Social Media DMs like Twitter and Instagram DMs, Snapchat, and many other chat channels. 91 92 Let your customers chat with you in a way that feels easy and natural to them. Give them options to choose their favorite apps. Include Social Media DMs like Twitter and Snapchat, and many other chat channels. 94 93 95 94 🙎🏼♂️ **Relationship**: **Build trust and personal connections** 95 96 96 Surveys prove that people experience direct messaging as much more personal and feel better about brands after messaging with them. Using Boei will immediately help you build trust and create better connections. 97 97 98 98 💬 **Natural selling: Keep the conversation going and close the sale.** 99 99 100 Keep in contact with visitors after they leave your website and increase conversions by building a relationship. Just continue to chat with them. Direct messaging has the highest conversion rates you will ever experience. 100 101 101 102 **🏆 Support 2.0: Improve your support and service** 103 102 104 Boei will add a floating chat assistant to any page of your website. If you like, you can configure a different widget for any page of your site. Add text and video to showcase products or answer important questions. Or include maps to direct customers to your store. 103 105 104 **Why Boei is better than live chat or WhatsApp alone.** 105 106 People often prefer messaging apps like WhatsApp over regular customer support chat. Regular live chats will leave your clients tethered to the computer to wait for your answer. When you let your visitors contact you through Facebook Messenger, WhatsApp, Viber, and Telegram, they are free to chat with you at any time, wherever they go. And you are too. By offering more options, your visitors are much more likely to contact you. 107 108 109 110 **Boei WhatsApp integration for WordPress** 111 112 WhatsApp is the most used messaging app worldwide. With Boei you can integrate WhatsApp or WhatsApp Business with WordPress in a matter of seconds. Just enter your WhatsApp number, and you’re ready to go. Clicking on the WhatsApp Button will take your visitor directly to the App, and they can type their message. You will then receive it on your own WhatsApp (or your WhatsApp Business account), and you can reply from wherever you are. 113 114 In the premium version, you can prefill the WhatsApp Chat with a first message to save your users the time of typing. Or display a QR Code for the WhatsApp Chat, so it's easy to move the conversation from Desktop to the mobile app. 106 **Why Boei is better than live chat alone.** 107 108 People often prefer messaging apps like Telegram over regular customer support chat. Regular live chats will leave your clients tethered to the computer to wait for your answer. When you let your visitors contact you through Viber, Telegram, etc., they are free to chat with you at any time, wherever they go. And you are too. By offering more options, your visitors are much more likely to contact you. 109 110 **Boei Telegram integration for WordPress** 111 112 Telegram is one of the most used messaging apps worldwide. With Boei you can integrate Telegram with WordPress in a matter of seconds. Just enter your Telegram username, and you’re ready to go. Clicking on the Telegram button will take your visitor directly to the app, and they can type their message. You will then receive it on your own Telegram account, and you can reply from wherever you are. 115 113 116 114 **Integrate Boei with Jivochat and Crisp** 117 Services like Jívochat and Crisp offer a shared inbox for many of your contact channels. Unfortunately, they miss several important ones. With Boei you can seamlessly integrate Jivochat and Crisp in your Supermenu and supplement it with those services they don’t natively support. Much better than cluttering your design with more buttons. 115 116 Services like Jivochat and Crisp offer a shared inbox for many of your contact channels. Unfortunately, they miss several important ones. With Boei, you can seamlessly integrate Jivochat and Crisp in your Supermenu and supplement it with those services they don’t natively support. Much better than cluttering your design with more buttons. 118 117 119 118 #### **Choose from 50+ Supported Chats & Widgets** … … 122 121 You can select as many options as you want. 123 122 124 💬 **Messengers & Social chat**123 **💬 Messengers & Social chat** 125 124 126 125 Click to chat – on all the leading messaging apps. 127 126 128 - [WhatsApp & WhatsApp Business]( https://boei.help/chat/wordpress/whatsapp)129 - [Facebook Messenger](https://boei.help/blog/add-facebook-messenger-chat-to-wordpress)130 127 - [Telegram](https://boei.help/chat/wordpress/telegram) 131 - [Twitter DM](https://boei.help/chat/wordpress/twitter_messenger) 132 - [Instagram DM](https://boei.help/chat/wordpress/instagram_dm) 133 - [WeChat](https://boei.help/chat/wordpress/wechat), 128 - [WeChat](https://boei.help/chat/wordpress/wechat) 134 129 - [Line](https://boei.help/chat/wordpress/line) 135 130 - [Skype Chat](https://boei.help/chat/wordpress/skype_chat) 136 131 - [SMS / Text message](https://boei.help/chat/wordpress/sms) 137 132 - [Snapchat](https://boei.help/chat/wordpress/snapchat) 138 - [Viber](https://boei.help/chat/wordpress/ signal)139 - [Signal](https://boei.help/chat/wordpress/signal) ,133 - [Viber](https://boei.help/chat/wordpress/viber) 134 - [Signal](https://boei.help/chat/wordpress/signal) 140 135 - [Discord](https://boei.help/chat/wordpress/discord) 141 136 142 🤩 **Forms**137 **🤩 Forms** 143 138 Capture leads, questions, or comments. Automatically send the data to Zapier, a webhook, or your email (Premium Feature). 144 139 … … 148 143 - [Feedback form](https://boei.help/chat/wordpress/feedback_form) 149 144 150 🎙️ **Live chat integrations**145 **🎙️ Live chat integrations** 151 146 Live chat & support on every single page. 152 147 153 148 - [Tawk.to](https://boei.help/docs/tawk) 154 - Crisp,[ ](https://boei.help/docs/jivochat)149 - [Crisp](https://boei.help/docs/crisp) 155 150 - [Jivochat](https://boei.help/docs/jivochat) 156 151 - [Drift](https://boei.help/docs/drift) 157 - Froged ,158 - Intercom,[ ](https://boei.help/docs/liveagent)159 - [Live Agent](https://boei.help/docs/liveagent) ,[ ](https://boei.help/docs/quriobot)152 - Froged 153 - [Intercom](https://boei.help/docs/intercom) 154 - [Live Agent](https://boei.help/docs/liveagent) 160 155 161 156 **🤖 Chatbot Integrations** … … 166 161 - [Quriobot](https://boei.help/docs/quriobot) 167 162 168 169 👩💻 **Social profiles** 163 **👩💻 Social profiles** 170 164 Show your social profiles to connect and get new followers and fans. 171 165 172 - Facebook page / Group173 - Instagram profile174 166 - Twitter profile 175 - Tik tok167 - TikTok 176 168 - LinkedIn page / Group 177 169 - YouTube Channel 178 170 - Zalo Profile 179 171 180 ☎️ **Call**172 **☎️ Call** 181 173 Click to call - just tap and chat. 182 174 … … 200 192 Make it personal and beautiful with our super-flexible design widgets. 201 193 202 - You tube video,203 - iFrame ,204 - HTML ,194 - YouTube video 195 - iFrame 196 - HTML 205 197 - Custom message 206 198 - Image … … 209 201 **Demo** 210 202 211 A live demo of the Boei is available on[ Boei’s website](https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage). Remember that you can customize your button to your taste, including the branding and contact options. 203 A live demo of Boei is available on [Boei’s website](https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage). Remember that you can customize your button to your taste, including the branding and contact options. 204 205 --- 212 206 213 207 ## You can use Boei for free … … 252 246 Boei doesn’t store any cookies or local data about your visitors. We just forward the visitor to the relevant platform. 253 247 248 --- 249 254 250 ## Testimonials 255 251 … … 264 260 **elgaw** 265 261 266 “**Very happy to give 5 Stars for this plugin.** Over 70% of my business inquiries are coming from Smartphone users based on my Google Analytics. Boei allows those users to contact me on their preferred social Channel with one click…”267 **Fran Tully**262 “**Very happy to give 5 Stars for this plugin.** Over 70% of my business inquiries are coming from smartphone users based on my Google Analytics. Boei allows those users to contact me on their preferred social channel with one click…” 263 **Fran Tully** 268 264 269 265 “It’s working very well! **I started to make sales right after I installed this.**” 270 **Ibrahim**266 **Ibrahim** 271 267 272 268 “**Boei is chatting with customers on steroids.** It resolves a huge problem – how to integrate all the channels people use to communicate in one place. In addition, there is an option for newsletter subscription integration. Even a contact form. Brilliant. The support is great and Ruben (the developer) is listening to his clients. Highly recommend.” 273 269 **Bobby K** 274 270 275 “How is this possible? I have been searching for a service like boei, without success for over a year. Boei just works. It works so well I was suspicious of it for nearly a whole week, sending endless texts and emails to myself in utter disbelief when it failed to keel over!276 277 Set up is straightforward, easy, and takes minutes.271 “How is this possible? I have been searching for a service like Boei, without success for over a year. Boei just works. It works so well I was suspicious of it for nearly a whole week, sending endless texts and emails to myself in utter disbelief when it failed to keel over! 272 273 Setup is straightforward, easy, and takes minutes. 278 274 279 275 **Seriously, I cannot recommend Boei enough.**” … … 282 278 #### **How does it work?** 283 279 284 Boei will add a floating chat button to your website. Clicking on it will open a beautifully styled chat menu where you can choose to display buttons for Facebook Messenger chat, WhatsApp chat, Viber calls, Skype calls, and Telegram chat (+many more)as contact options for your website.285 286 Customers can select their preferred channel to contact you. Don’t miss any more leads because the customer didn’t want to mail you. Instead, visitors can quickly contact you via Facebook Messenger, WhatsApp & WhatsApp Business, Telegram, social media DMs, or any other channel you offer.287 288 Boei can also integrate with several live chat solutions (Jivochat, Crisp, Tawk.to, and many more) and provide it as a channelto your customers.289 290 Boei comes with several built-in Forms: free contact form, newsletter signup form, feedback form, and callback form.291 292 On top , you can integrate videos, images, HTML code, and iframes to personalize your chat menu and give your visitors a warm welcome293 294 **WhatsApp, WhatsApp Business, Facebook Messenger and WhatsApp Logo are brand assets and trademark of Facebook, Inc. Boei.help is not in partnership, sponsored, or endorsed by Facebook, Inc.** 295 296 ## Our 10+ community favorites: WhatsApp and 9 othermust-have channels280 Boei will add a floating chat button to your website. Clicking on it will open a beautifully styled chat menu where you can choose to display buttons for Viber calls, Skype calls, Telegram chat, and many more as contact options for your website. 281 282 Customers can select their preferred channel to contact you. Don’t miss any more leads because the customer didn’t want to mail you. Instead, visitors can quickly contact you via Viber, Slack, Telegram, social media DMs, or any other channel you offer. 283 284 Boei can also integrate with several live chat solutions (Jivochat, Crisp, Tawk.to, and many more) and provide them as channels to your customers. 285 286 Boei comes with several built-in forms: free contact form, newsletter signup form, feedback form, and callback form. 287 288 On top of that, you can integrate videos, images, HTML code, and iframes to personalize your chat menu and give your visitors a warm welcome. 289 290 --- 291 292 ## Our 10+ community favorites: 10 must-have channels 297 293 298 294 See our 10+ most popular channels worldwide. … … 300 296 ### Direct Email, Click-to-call, and Contact Form - the mandatory evergreens 301 297 302 Almost every single widget ever built with Boei features at least one, if not all of these evergreen channels. They are the backbone of your customer support and lead generation.303 304 ### WhatsApp Chat - the single most importantmessaging channel305 306 WhatsApp is the most popular messaging app worldwide, with Billions of users across all continents. If there is one messaging app that is almost mandatory to include, it’s WhatsApp. Especially in combination with mail, phone, and live chat, WhatsApp will perfectly supplement your existing contact options.298 Almost every single widget ever built with Boei features at least one, if not all, of these evergreen channels. They are the backbone of your customer support and lead generation. 299 300 ### Telegram - a popular messaging channel 301 302 Telegram is one of the most popular messaging apps worldwide, with millions of users across all continents. Including Telegram in your contact options can significantly enhance your communication with visitors. 307 303 308 304 ### Tawk.to Chat - the 100% free live chat … … 312 308 ### Jivochat - the multichannel contact CRM 313 309 314 Jivochat is a contact CRM to bring your many contact channels into one location for centralized customer support or sales. With Boei you can seamlessly integrate Jivochat with many other services it does not natively support. 315 316 ### Facebook Messenger - a global giant 317 318 Facebook remains one of the world’s largest social networks. Its native Facebook Messenger has an active user base of roughly 1 billion people, accounting for 28% of all mobile phone messaging app users globally. So don’t sleep on Facebook Messenger as a valuable addition to your contact options. 319 320 ### Telegram - alternative direct messenger 321 322 Telegram comes in 4th place for most users globally. With a similar functionality to WhatsApp. 310 Jivochat is a contact CRM to bring your many contact channels into one location for centralized customer support or sales. With Boei, you can seamlessly integrate Jivochat with many other services it does not natively support. 323 311 324 312 ### Crisp Chat - an all-in-one business messaging platform 325 313 326 Crisp Chat is another centralized inbox for various contact channels. With Boei you can seamlessly integrate Crisp Chat with other channels it doesn’t natively support. 327 328 ### Snapchat, Twitter, and Instagram DMs - the mandatory social media channels 329 330 When younger people exchange contacts, it’s not emails anymore. It’s either Instagram, Snapchat, or Twitter handles. Meet your audience where they naturally connect by integrating Twitter, Instagram and Snapchat in your Boei widgets. 331 332 == Installation == 314 Crisp Chat is another centralized inbox for various contact channels. With Boei, you can seamlessly integrate Crisp Chat with other channels it doesn’t natively support. 315 316 ### Snapchat, Twitter, and LinkedIn DMs - the mandatory social media channels 317 318 When younger people exchange contacts, it’s not emails anymore. It’s either LinkedIn, Snapchat, or Twitter handles. Meet your audience where they naturally connect by integrating Twitter, LinkedIn, and Snapchat in your Boei widgets. 319 320 --- 321 322 ## Installation 333 323 334 324 Installing Boei can be done in two ways: 335 325 336 337 = Install via WordPress Plugins = 338 339 1. Search for 'Boei' plugin in you WordPress admin 340 1. Activate the plugin through the 'Plugins' menu in WordPress 341 1. Register your [free account and widget on Boei](https://www.boei.help/?utm_source=wordpress&utm_medium=plugin) 342 1. Enjoy your new leads on Facebook Messenger, WhatsApp & WhatsApp Business, Viber, Slack, Telegram. 343 344 = Download the ZIP via WordPress.org = 345 346 1. Download the plugin via WordPress.org 347 1. Upload the ZIP file through the 'Plugins > Add New > Upload' screen in your WordPress dashboard 348 1. Activate the plugin through the 'Plugins' menu in WordPress 349 1. Register your [free account and widget on Boei](https://www.boei.help/?utm_source=wordpress&utm_medium=plugin) 350 1. Enjoy your new leads on Facebook Messenger, WhatsApp & WhatsApp Business, Viber, Slack, Telegram. 351 352 == Frequently Asked Questions == 353 354 = Why do I need a Boei Account?= 355 In contrast to many bloated chat widgets that slow down your website and delay the page load, Boei is designed to be super lightweight. That is why all the heavy lifting is not done on Boei servers, and the WordPress Plugin just serves as a bridge. This way, only minimal queries and processes need to be done by WordPress itself and your website stays lightning-fast. A second benefit of this architecture is that Boei can easily be used across all platforms because all the configurations are done directly in your Boei account. This is better for you and us because it means we don’t have to reinvent the Boei admin area for every CMS on Earth. 356 357 = Do I need a paid subscription? = 358 No, you can use Boei for free. You only need a free account, and you can create one at [Boei.help](https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage). You can upgrade Boei to a premium version with additional features and websites, but that is not needed. With the free version, you can use all channels such as Facebook Messenger, WhatsApp & WhatsApp Business, Viber, Slack, and Telegram. 359 360 = Where can I find the documentation and features? = 326 ### Install via WordPress Plugins 327 328 1. Search for the 'Boei' plugin in your WordPress admin. 329 2. Activate the plugin through the 'Plugins' menu in WordPress. 330 3. Register your [free account and widget on Boei](https://www.boei.help/?utm_source=wordpress&utm_medium=plugin). 331 4. Enjoy your new leads on Telegram, Viber, Slack, and more. 332 333 ### Download the ZIP via WordPress.org 334 335 1. Download the plugin via WordPress.org. 336 2. Upload the ZIP file through the 'Plugins > Add New > Upload' screen in your WordPress dashboard. 337 3. Activate the plugin through the 'Plugins' menu in WordPress. 338 4. Register your [free account and widget on Boei](https://www.boei.help/?utm_source=wordpress&utm_medium=plugin). 339 5. Enjoy your new leads on Telegram, Viber, Slack, and more. 340 341 --- 342 343 ## Frequently Asked Questions 344 345 **Why do I need a Boei Account?** 346 347 In contrast to many bloated chat widgets that slow down your website and delay the page load, Boei is designed to be super lightweight. That is why all the heavy lifting is done on Boei servers, and the WordPress Plugin just serves as a bridge. This way, only minimal queries and processes need to be done by WordPress itself, and your website stays lightning-fast. A second benefit of this architecture is that Boei can easily be used across all platforms because all the configurations are done directly in your Boei account. This is better for you and us because it means we don’t have to reinvent the Boei admin area for every CMS on Earth. 348 349 **Do I need a paid subscription?** 350 351 No, you can use Boei for free. You only need a free account, and you can create one at [Boei.help](https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage). You can upgrade Boei to a premium version with additional features and websites, but that is not required. With the free version, you can use all channels such as Viber, Slack, Telegram, and more. 352 353 **Where can I find the documentation and features?** 354 361 355 See our [documentation here](https://boei.help/docs?utm_source=wordpress&utm_medium=pluginpage). 362 356 363 = What about privacy or GDPR? = 364 Boei is cookie-free and GDPR-proof. Boei does not set or use cookies, so you don’t need a cookie bar. Also, Boei only saves anonymous data for your statistics. 365 366 = Where can I leave feedback? = 357 **What about privacy or GDPR?** 358 359 Boei is cookie-free and GDPR-compliant. Boei does not set or use cookies, so you don’t need a cookie bar. Also, Boei only saves anonymous data for your statistics. 360 361 **Where can I leave feedback?** 362 367 363 Send a message [using the Boei widget on the website](https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage). 368 364 369 == Screenshots == 365 --- 366 367 ## Screenshots 370 368 371 369 1. Boei with a trigger message … … 373 371 3. Newsletter signup form inside Boei 374 372 375 == Upgrade Notice == 373 --- 374 375 ## Upgrade Notice 376 376 377 377 None 378 378 379 == Changelog == 380 381 = 1.5.2 = 382 * 2024-01-04 383 * Small bug fixes & wp 6.4 384 385 = 1.5.1 = 386 * 2023-04-24 387 * Small bug fixes & wp 6.2 388 389 = 1.5 = 390 * 2022-11-02 391 * Custom css field 392 * Ability to test your button 393 * Redesigned and improved edit button view 394 * Ability to turn off your button 395 * Ability to make changes before putting in production 396 * Improved working with optional fields 397 * Instagram DM channel 398 * WhatsApp Chat improvements. 399 400 = 1.4 = 401 * 2022-09-29 402 * Improvements for WhatsApp Chat. 403 * Upload images with Retina resolution 404 * Integration with Signal Messenger chat 405 * Several minor improvements. 406 407 = 1.3 = 408 * 2022-03-11 409 * Improved text and images. Improved admin panel. 410 411 = 1.2 = 412 * 2021-04-07 413 * Improved text and images. Removed protected trademarks. 414 415 = 1.1 = 416 * 2021-03-02 417 * Admin page for Boei added. Several minor improvements. 418 419 = 1.0 = 420 * 2019-05-09 421 * Initial release 379 --- 380 381 ## Changelog 382 383 **1.5.2** 384 385 - 2024-01-04 386 - Small bug fixes & wp 6.4 387 388 **1.5.1** 389 390 - 2023-04-24 391 - Small bug fixes & wp 6.2 392 393 **1.5** 394 395 - 2022-11-02 396 - Custom CSS field 397 - Ability to test your button 398 - Redesigned and improved edit button view 399 - Ability to turn off your button 400 - Ability to make changes before putting in production 401 - Improved working with optional fields 402 - General improvements 403 404 **1.4** 405 406 - 2022-09-29 407 - Improvements for chat integrations 408 - Upload images with Retina resolution 409 - Integration with Signal Messenger chat 410 - Several minor improvements 411 412 **1.3** 413 414 - 2022-03-11 415 - Improved text and images. Improved admin panel. 416 417 **1.2** 418 419 - 2021-04-07 420 - Improved text and images. Removed protected trademarks. 421 422 **1.1** 423 424 - 2021-03-02 425 - Admin page for Boei added. Several minor improvements. 426 427 **1.0** 428 429 - 2019-05-09 430 - Initial release
Note: See TracChangeset
for help on using the changeset viewer.