Plugin Directory

Changeset 3161522


Ignore:
Timestamp:
10/02/2024 01:05:46 PM (18 months ago)
Author:
boeihelp
Message:

Update header

Location:
boei-help/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boei-help/trunk/boei-help.php

    r3085128 r3161522  
    44 * Version: 1.5.2
    55 * 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.
    77 * Author: Boei
    88 * Author URI: https://www.boei.help/?utm_source=wordpress&utm_medium=wp_plugins
    9  * Tested up to: 6.5.3
     9 * Tested up to: 6.6.2
    1010 * Requires PHP: 7.0
    1111 * License: GPL v2 or later
     
    2727 *
    2828 * @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, etc
     29 * Not used anymore for loading the script for Telegram, Twitter DMs, etc
    3030 * Now use the advanced installation method.
    3131 */
     
    3333//     echo '<script>window.Boei_Test_Hostname = "example.com";</script>';
    3434// }
    35 //add_action( 'wp_head', 'boei_localhost_test' );
     35// add_action('wp_head', 'boei_localhost_test');
    3636
    3737/**
    3838 * Loading the Boei script on the frontend.
    3939 * wp_enqueue_script() function doesn’t support async.
    40  * This will load the script for WhatsApp,  WhatsApp Business, Telegram, Facebook Messenger, Twitter DMs, etc
     40 * This will load the script for Telegram, Twitter DMs, SMS, WeChat, etc
    4141 */
    4242function boei_load_script()
     
    4444    if (boei_get_key()) {
    4545        // 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);
    4747    } else {
    4848        // Regular installation
     
    5353add_action('wp_enqueue_scripts', 'boei_load_script');
    5454
    55 
    5655/**
    5756 * 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, etc
     57 * On the settings page, one can manage the buttons with Telegram, Twitter DMs, SMS, WeChat, etc
    5958 */
    6059function boei_admin_action_links($links)
    6160{
    6261    $links = array_merge(array(
    63         '<a href="'.esc_url(add_query_arg(
     62        '<a href="' . esc_url(add_query_arg(
    6463            'page',
    6564            '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>',
    6968    ), $links);
    7069
     
    7271}
    7372
    74 add_action('plugin_action_links_'.plugin_basename(__FILE__), 'boei_admin_action_links');
     73add_action('plugin_action_links_' . plugin_basename(__FILE__), 'boei_admin_action_links');
    7574
    7675/**
    7776 * 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, etc
     77 * Clicking on it will lead to the settings for Telegram, Twitter DMs, etc
    7978 */
    8079function boei_register_admin()
     
    9190/**
    9291 * Return value of the Boei key
    93  * The advanced installation key for the script for WhatsApp,  WhatsApp Business, Telegram, Facebook Messenger, Twitter DMs, etc
     92 * The advanced installation key for the script for Telegram, Twitter DMs, etc
    9493 */
    9594function boei_get_key()
     
    101100 * Display settings and installation page
    102101 * 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, etc
     102 * On the admin area, one can manage the buttons and helpers for Telegram, Twitter DMs, etc
    104103 */
    105104function boei_settings()
     
    110109    $safeInstallationURL = esc_url('https://boei.help/docs/installation-wordpress?utm_source=wordpress&utm_medium=wp_plugins');
    111110    $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
    117114    $current_user = wp_get_current_user();
    118115    $boei_register_email = $current_user->user_email;
     
    121118    $boei_register_domain = $urlparts['host'];
    122119
    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));
    124121
    125122    echo <<<EOTEXT
    126123
    127124    <div class="wrap">
    128    
    129125        <div id="icon-my-id" class="icon32">
    130126            <img src="{$safeLogoURL}" style="max-width: 32px; margin-top: 20px;" alt="logo">
     
    132128        <h2>Boei</h2>
    133129
    134        
    135130        <div style="display: flex; flex-direction: row; flex-wrap: wrap; width: 100%;">
    136131            <div style="padding-right: 60px; display: flex; flex-direction: column; flex-basis: 100%; flex: 2; min-width: 300px; font-size: 14px;">
     
    140135                    </div>
    141136                    <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
    146141                <div class="postbox">
    147142                    <div class="postbox-header">
     
    151146                        <p>1. Start here 👇</p>
    152147                        <a href="{$safeRegisterURL}" class="button button-secondary" target="_blank" style="background-color: #713eec; color: #ffffff; border: 0;">Create free widget</a>
    153                        
     148
    154149                        <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
    156151EOTEXT;
    157152
     
    159154    settings_fields('boei_key');
    160155    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" />';
    162157    submit_button('Save key');
    163158    echo '</form>';
    164159
    165160    echo <<<EOTEXT
    166                      
     161
    167162                        <p>You make changes in the Boei app. This ensures you have the latest version and features.</p>
    168163                        <a href="{$safeManageURL}" class="button button-secondary" target="_blank">Manage existing widgets</a>
    169164                    </div>
    170165                </div>
    171                
    172            
    173        
     166
    174167                <div class="postbox">
    175168                    <div class="inside">
     
    177170                    </div>
    178171                </div>
    179        
     172
    180173            </div>
    181174            <div style="padding-right: 30px; display: flex; flex-direction: column; flex-basis: 100%; flex: 1; min-width: 300px; font-size: 10px;">
    182    
     175
    183176                <div class="video-container" style="position:relative; padding-bottom:56.25%; padding-top:30px; height:0; overflow:hidden;">
    184177                    <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>
    185178                </div>
    186                
     179
    187180                <br />
    188                
     181
    189182                <h3 style="margin-bottom: 0;">Questions or support</h3>
    190183                <p>Go to the <a href="{$safeHomepageURL}" target="_blank">Boei site</a> and click our Boei widget 💪</p>
    191                
     184
    192185                <br />
    193                
     186
    194187                <h3 style="margin-bottom: 0;">Roadmap & feedback</h3>
    195188                <p>You can follow Boei developments on our <a href="{$safeRoadmapURL}" target="_blank">public roadmap</a>.</p>
    196                
     189
    197190            </div>
    198191        </div>
    199192    </div>
    200193EOTEXT;
    201 
    202 
    203 }
    204 
    205 /**
    206  * Return app management url
     194}
     195
     196/**
     197 * Return app management URL
    207198 */
    208199function boei_url_manage()
     
    212203
    213204/**
    214  * Return Boei hompage
     205 * Return Boei homepage
    215206 */
    216207function 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 ===
    22
    33Contributors: boeihelp
    44Donate link: https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage
    5 Tags: whatsapp contact, whatsapp, whatsapp plugin, facebook messenger, whatsapp widget
     5Tags: telegram, live chat, social dms, wechat, sms
    66Requires at least: 2.0
    77Requires PHP: 7.0
    8 Tested up to: 6.5.3
     8Tested up to: 6.6.2
    99Stable tag: 1.5.2
    1010License: 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 ==
     11License URI: http://www.gnu.org/licenses/gpl-2.0.html
     12
     13Free Chat Widget, Live Chat, Social DMs, WeChat, Email, SMS, Call Now & more. Connect with more leads on autopilot.
     14
     15---
     16
     17## Description
    1618
    1719[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])
     
    2628
    2729💬 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…)
    2931
    3032🔥 Remove friction and collect 30% more leads
    3133
    3234🛟 Supercharge your customer support with a floating support assistant.
    33 
    34 
    3535
    3636**Ultimate WordPress chat widget with 50+ supported channels**
    3737Boei 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.
     38Telegram, Social DMs (Twitter, Snapchat, WeChat, etc.), Live Chat, Jivochat, Crisp, Skype, Slack, Discord, Viber, Tawk, Call Now … and many more.
    3939
    4040**Boei has chat buttons. And more. Meet your Contact Supermenu.**
     
    4444Directly integrate videos, maps, messages, images, iframes, or custom HTML to enhance and personalize your Supermenu.
    4545
    46 
    47 
    4846**Super easy, zero code setup**
    4947
     
    5149
    5250**The most efficient WordPress chat plugin: Lightweight script keeps your site blazing fast.**
     51
    5352Boei’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.
    5453
    55 **Flawless 5-star rating on Wordpress.com**
     54**Flawless 5-star rating on WordPress.org**
     55
    5656Check out the stellar rating here on WordPress.
    5757Or 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]
    6161
    6262**Why you need Boei**
     
    6565Chat 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.
    6666
    67 70% of consumers prefer messaging apps like WhatsApp, Telegram, Instagram, and live chats over any other form of communication.
     6770% of consumers prefer messaging apps like Telegram and live chats over any other form of communication.
    6868
    6969Give them options with Boei.
     
    7272And engage with your clients using their preferred channel.
    7373
    74 **Don’t miss out on potential customers who prefer to talk to your businesses via:**
    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
     761. Messaging apps like Telegram, Signal, WeChat, Slack, Skype, Discord…
     772. Social DMs like Twitter, Snapchat, LinkedIn…
    78783. Chat integrations like Tawk, Jivochat, Drift, Intercom, Crisp…
    7979
    80 
    8180Let your visitors choose … and collect many more leads every day.
    8281
    83 
    84 
    8582**Click to chat: All the chat options in one button!**
    8683
    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.
     84Once 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.
    8885
    8986📈 **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
     88If you offer channels like Telegram and others, you can convert up to 30% more visitors into leads.
    9189
    9290👋 **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
     92Let 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.
    9493
    9594🙎🏼‍♂️ **Relationship**: **Build trust and personal connections**
     95
    9696Surveys 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.
    9797
    9898💬 **Natural selling: Keep the conversation going and close the sale.**
     99
    99100Keep 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.
    100101
    101102**🏆 Support 2.0: Improve your support and service**
     103
    102104Boei 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.
    103105
    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
     108People 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
     112Telegram 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.
    115113
    116114**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
     116Services 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.
    118117
    119118#### **Choose from 50+ Supported Chats & Widgets**
     
    122121You can select as many options as you want.
    123122
    124 💬 **Messengers & Social chat**
     123**💬 Messengers & Social chat**
    125124
    126125Click to chat – on all the leading messaging apps.
    127126
    128 - [WhatsApp & WhatsApp Business]( https://boei.help/chat/wordpress/whatsapp)
    129 - [Facebook Messenger](https://boei.help/blog/add-facebook-messenger-chat-to-wordpress)
    130127- [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)
    134129- [Line](https://boei.help/chat/wordpress/line)
    135130- [Skype Chat](https://boei.help/chat/wordpress/skype_chat)
    136131- [SMS / Text message](https://boei.help/chat/wordpress/sms)
    137132- [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)
    140135- [Discord](https://boei.help/chat/wordpress/discord)
    141136
    142 🤩 **Forms**
     137**🤩 Forms**
    143138Capture leads, questions, or comments. Automatically send the data to Zapier, a webhook, or your email (Premium Feature).
    144139
     
    148143- [Feedback form](https://boei.help/chat/wordpress/feedback_form)
    149144
    150 🎙️ **Live chat integrations**
     145**🎙️ Live chat integrations**
    151146Live chat & support on every single page.
    152147
    153148- [Tawk.to](https://boei.help/docs/tawk)
    154 - Crisp,[ ](https://boei.help/docs/jivochat)
     149- [Crisp](https://boei.help/docs/crisp)
    155150- [Jivochat](https://boei.help/docs/jivochat)
    156151- [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)
    160155
    161156**🤖 Chatbot Integrations**
     
    166161- [Quriobot](https://boei.help/docs/quriobot)
    167162
    168 
    169 👩‍💻 **Social profiles**
     163**👩‍💻 Social profiles**
    170164Show your social profiles to connect and get new followers and fans.
    171165
    172 - Facebook page / Group
    173 - Instagram profile
    174166- Twitter profile
    175 - Tiktok
     167- TikTok
    176168- LinkedIn page / Group
    177169- YouTube Channel
    178170- Zalo Profile
    179171
    180 ☎️ **Call**
     172**☎️ Call**
    181173Click to call - just tap and chat.
    182174
     
    200192Make it personal and beautiful with our super-flexible design widgets.
    201193
    202 - Youtube video,
    203 - iFrame,
    204 - HTML,
     194- YouTube video
     195- iFrame
     196- HTML
    205197- Custom message
    206198- Image
     
    209201**Demo**
    210202
    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.
     203A 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---
    212206
    213207## You can use Boei for free
     
    252246Boei doesn’t store any cookies or local data about your visitors. We just forward the visitor to the relevant platform.
    253247
     248---
     249
    254250## Testimonials
    255251
     
    264260**elgaw**
    265261
    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**
    268264
    269265“It’s working very well! **I started to make sales right after I installed this.**”
    270  **Ibrahim**
     266**Ibrahim**
    271267
    272268“**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.”
    273269**Bobby K**
    274270
    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
     273Setup is straightforward, easy, and takes minutes.
    278274
    279275**Seriously, I cannot recommend Boei enough.**”
     
    282278#### **How does it work?**
    283279
    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 channel to 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 welcome
    293 
    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 other must-have channels
     280Boei 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
     282Customers 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
     284Boei can also integrate with several live chat solutions (Jivochat, Crisp, Tawk.to, and many more) and provide them as channels to your customers.
     285
     286Boei comes with several built-in forms: free contact form, newsletter signup form, feedback form, and callback form.
     287
     288On 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
    297293
    298294See our 10+ most popular channels worldwide.
     
    300296### Direct Email, Click-to-call, and Contact Form - the mandatory evergreens
    301297
    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 important messaging channel
    305 
    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.
     298Almost 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
     302Telegram 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.
    307303
    308304### Tawk.to Chat - the 100% free live chat
     
    312308### Jivochat - the multichannel contact CRM
    313309
    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.
     310Jivochat 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.
    323311
    324312### Crisp Chat - an all-in-one business messaging platform
    325313
    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 ==
     314Crisp 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
     318When 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
    333323
    334324Installing Boei can be done in two ways:
    335325
    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
     3281. Search for the 'Boei' plugin in your WordPress admin.
     3292. Activate the plugin through the 'Plugins' menu in WordPress.
     3303. Register your [free account and widget on Boei](https://www.boei.help/?utm_source=wordpress&utm_medium=plugin).
     3314. Enjoy your new leads on Telegram, Viber, Slack, and more.
     332
     333### Download the ZIP via WordPress.org
     334
     3351. Download the plugin via WordPress.org.
     3362. Upload the ZIP file through the 'Plugins > Add New > Upload' screen in your WordPress dashboard.
     3373. Activate the plugin through the 'Plugins' menu in WordPress.
     3384. Register your [free account and widget on Boei](https://www.boei.help/?utm_source=wordpress&utm_medium=plugin).
     3395. 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
     347In 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
     351No, 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
    361355See our [documentation here](https://boei.help/docs?utm_source=wordpress&utm_medium=pluginpage).
    362356
    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
     359Boei 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
    367363Send a message [using the Boei widget on the website](https://www.boei.help/?utm_source=wordpress&utm_medium=pluginpage).
    368364
    369 == Screenshots ==
     365---
     366
     367## Screenshots
    370368
    3713691. Boei with a trigger message
     
    3733713. Newsletter signup form inside Boei
    374372
    375 == Upgrade Notice ==
     373---
     374
     375## Upgrade Notice
    376376
    377377None
    378378
    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.