<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[CometChat blog]]></title><description><![CDATA[Thoughts, stories and ideas.]]></description><link>https://www.cometchat.com/blog/</link><image><url>https://www.cometchat.com/blog/favicon.png</url><title>CometChat blog</title><link>https://www.cometchat.com/blog/</link></image><generator>Ghost 3.0</generator><lastBuildDate>Wed, 06 May 2020 15:47:14 GMT</lastBuildDate><atom:link href="https://www.cometchat.com/blog/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[What Happened to Chat Bubbles (chat heads) in Android?]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>The Chat Bubbles aka Chat Heads is an user interface element initially introduced by Facebook Messenger back in December 2012. This feature allowed Android and iOS users to chat with multiple persons while using other apps at the same time. The simplicity was the foundation on which the popularity and</p>]]></description><link>https://www.cometchat.com/blog/what-happened-to-chat-bubbles/</link><guid isPermaLink="false">5ea134273e9ed90a202c34bd</guid><category><![CDATA[CometChat Pro]]></category><dc:creator><![CDATA[Amit Thaker]]></dc:creator><pubDate>Thu, 23 Apr 2020 06:29:53 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>The Chat Bubbles aka Chat Heads is an user interface element initially introduced by Facebook Messenger back in December 2012. This feature allowed Android and iOS users to chat with multiple persons while using other apps at the same time. The simplicity was the foundation on which the popularity and likeliness of chat heads relied upon.</p>
<p><img src="https://paper-attachments.dropbox.com/s_6B36470F7C64FA8F017B2E6B87083121723108615FDDD22E7C3D3FD7F2586F52_1585250633765_Screenshot_20200324-201637-01.jpeg" alt="Chat Head when message is received in Facebook Messenger"></p>
<p>But this simplicity came with a price. The chat heads feature in Android apps required its users to grant the <code>SYSTEM_ALERT_WINDOW</code> permission. Introduced in the beginning since Android API Level 1, this permission is very powerful and at the same time dangerous to users.</p>
<p>The reason is the extensive capability this permission holds, by enabling an app to display over any other app without notifying the user. This entails a significant potential for several malicious techniques, such as displaying fraudulent ads, phishing scams, click-jacking, and overlay windows, which are common with banking Trojans. It has also been used by ransomware to create a persistent on-top screen that will prevent non-technical users from accessing their devices.</p>
<p>Facebook Messenger’s chat heads used the ability to overlay and draw bubbles over other apps and Android OS with the <code>SYSTEM_ALERT_WINDOW</code> permission. The popularity of chat heads encouraged other Android developers to use them in their apps for different purposes. Within no time, the <code>SYSTEM_ALERT_WINDOW</code> permission started getting abused by hackers and malware creators to corrupt Android users’ phones and manipulate them for their own selfish gains.</p>
<hr>
<p>Google was aware of this problem and it was busy improving the Android operating system and its security and user privacy until 2015, when Android Marshmallow (6.0) was launched. Among other features, there were runtime permissions, which asked users to allow/deny permissions during the app session to better understand the context of why the app was requesting that particular permission. The <code>SYSTEM_ALERT_WINDOW</code> was included in a list of very dangerous permissions which showed a full screen window to ask for the permission instead of the normal permission dialog.</p>
<p><img src="https://paper-attachments.dropbox.com/s_6B36470F7C64FA8F017B2E6B87083121723108615FDDD22E7C3D3FD7F2586F52_1585252246544_Android-app-permissions-5a.jpg" alt="The SYSTEM_ALERT_WINDOW permission screen"></p>
<p>This proved to be a good feature for both users and app developers. Almost after a year in May 2016, <a href="https://www.reddit.com/r/androiddev/comments/a69q0i/question_did_the_play_store_stop_auto_granting/">some</a> <a href="https://stackoverflow.com/questions/36016369/system-alert-window-how-to-get-this-permission-automatically-on-android-6-0-an">developers</a> started noticing that the <code>SYSTEM_ALERT_WINDOW</code> permission is auto granted in some apps like Facebook Messenger, Evernote, Pocket etc. while other apps were showing the permission screen to its users and asking them to grant it.</p>
<p>Partially this was because of the target API level set for their apps by developers. For example, if some app is targeting API Level 22 or lower, then all permissions including SYSTEM_ALERT_WINDOW are granted at the install time by Google Play. Meanwhile apps targeting API Level 23 or more will request the permissions during the app session. But according to Google Play policies, any new app cannot target two levels below the current stable API level. At the time of writing this article, Android 10 (API Level 29) is the current version, so all new apps must target at least API level 28 or later.  There’s no way developers can target lower API levels to grant all permissions at the install time.</p>
<p>So, how were these big apps such as Messenger or Evernote auto granting, not a simple but very dangerous permission, like <code>SYSTEM_ALERT_WINDOW</code> without users even knowing? Developers started asking <a href="https://issuetracker.google.com/issues/37125806">these kinds</a> of <a href="https://issuetracker.google.com/issues/37119304">questions</a> through Google’s Issue Tracker and Google finally answered, quoting from <a href="https://issuetracker.google.com/issues/37119304:">https://issuetracker.google.com/issues/37119304:</a></p>
<p><strong>This is an intended behavior to allow popular apps to keep working until we have an alternative APIs in the platform for these apps to migrate.</strong></p>
<p>But what did Google mean by “popular apps”? Does having 1 million downloads make an app “popular”? Or how about 50 million downloads? Turns out you need to ask Google to review your app in more detail, if you want it to have auto grant access to not only <code>SYSTEM_ALERT_WINDOW</code> but other things like SMS/Call logs access. You can submit your request using the form available at <a href="https://support.google.com/googleplay/android-developer/contact/adv_note">this link</a>.</p>
<p>If your request is approved, then your app will be granted the <code>SYSTEM_ALERT_WINDOW</code> permission automatically at the time of installing the app from Google Play and will become a “popular” app. Usually, there’s little chance you’ll be approved for this request, so you will have to stick to asking permission from users manually.</p>
<hr>
<p>But there’s also another thing Google said in that particular “popular apps” comment in the Issue Tracker. It’s “until we have an alternative APIs in the platform for these apps to migrate”. So, Google is already working on an alternative API.</p>
<p>So, after 3 years in April 2019, Google finally introduced <a href="https://android-developers.googleblog.com/2019/04/android-q-beta-2-update.html">Chat Bubbles in Android 10 Beta 2</a> as the alternative API for the <code>SYSTEM_ALERT_WINDOW</code> permission. With the Chat Bubbles API, the <code>SYSTEM_ALERT_WINDOW</code> permission is on the road to getting deprecated and may be removed from the Android platform. Developers were very excited and <a href="https://www.androidauthority.com/android-q-bubble-notifications-997510/">different articles</a> started popping up to experiment with the Bubbles feature.</p>
<p><img src="https://paper-attachments.dropbox.com/s_6B36470F7C64FA8F017B2E6B87083121723108615FDDD22E7C3D3FD7F2586F52_1585254629539_image2a.png" alt="Chat Bubbles in Android 10 Beta 2 - Image Credits: https://android-developers.googleblog.com/2019/04/android-q-beta-2-update.html"></p>
<p>But when Google announced the final APIs for Android 10 in Beta 4, developers realized that the <a href="https://9to5google.com/2019/06/05/android-q-beta-4-bubbles/">Chat Bubbles feature</a> <a href="https://9to5google.com/2019/06/05/android-q-beta-4-bubbles/">was</a> <a href="https://9to5google.com/2019/06/05/android-q-beta-4-bubbles/">not going to be launched in Android 10</a>. Rather, it’s now a developer-only feature. If users want to use the Chat Bubbles in their Android 10 phone, then they  will have to manually enable this feature from the Developer Options in the Android system, and <a href="https://9to5google.com/2019/05/10/android-q-bubble-developer-options/">it</a>’<a href="https://9to5google.com/2019/05/10/android-q-bubble-developer-options/">s not a simple process for the users</a>. The Chat Bubbles feature was intended for only developers to experiment and provide feedback to Google, so that they can improve its API and functionality.</p>
<hr>
<p>A few weeks ago, Android 11 Preview 2 was launched. It brings a whole lot of new and improved features but chat bubbles are still in developer only mode. There’s a very high possibility that chat bubbles will launch for users in Android 11. This was supposed to be announced and confirmed at Google’s annual conference IO 2020 but unfortunately due to the COVID-19 pandemic, <a href="https://www.theverge.com/2020/3/3/21163553/google-io-2020-cancelled-coronavirus-tech-developer-conference">Google IO 2020 has been completely cancelled</a>.</p>
<p><img src="https://paper-attachments.dropbox.com/s_6B36470F7C64FA8F017B2E6B87083121723108615FDDD22E7C3D3FD7F2586F52_1585255712026_Screenshot_2020-03-27+Google+I+O+2020.png" alt="Google IO 2020 Cancelled Announcement from their official website"></p>
<p>Usually, every new release of Android gets stable launches on partner devices during Q3 of the year. So, Android 11 is supposed to be launched in or after September 2020, initially for Pixel devices probably. Whether it includes Chat Bubbles or not will be confirmed with those stable devices. Until then, the use or maybe <em>abuse</em> of <code>SYSTEM_ALERT_WINDOW</code> will probably be happening for the chat heads or bubbles in Android apps. And that’s a wrap.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Pusher Chatkit is shutting down]]></title><description><![CDATA[Pusher announced that they are discontinuing Chatkit. We discuss how you can migrate quickly to CometChat.]]></description><link>https://www.cometchat.com/blog/pusher-chatkit-is-shutting-down/</link><guid isPermaLink="false">5e7959bd3e9ed90a202c33fe</guid><category><![CDATA[Announcements]]></category><dc:creator><![CDATA[Anant Garg]]></dc:creator><pubDate>Tue, 24 Mar 2020 01:24:20 GMT</pubDate><media:content url="https://www.cometchat.com/blog/content/images/2020/03/Migration--1-.png" medium="image"/><content:encoded><![CDATA[<img src="https://www.cometchat.com/blog/content/images/2020/03/Migration--1-.png" alt="Pusher Chatkit is shutting down"><p>Yesterday, Pusher announced that they are discontinuing Chatkit. And we are saddened to hear that. We believe Chatkit had all the potential to be a great product and it's unfortunate that Pusher has to narrow their focus to their more successful product- Channels. We've always been a big fan of Pusher and wish them the best moving forward.</p><p>If you are one of Chatkit's customers affected by this, firstly we want to say, we're sorry. It's a tough situation. You invested the time and money to integrate their service and, due to the current climate, they had to discontinue their product.</p><p>We understand that your trust in external services has taken a hit by this experience. That's why we'd like to take a moment to tell you about the ways in which CometChat differs from Chatkit in a business sense. In a few words- our core and only focus is chat.</p><p>This could also be an opportunity for your business to update and improve on your existing chat implementation. We've been doing a lot of exciting work and you could take this chance to start using some awesome features like HD voice and video calling.</p><h2 id="how-cometchat-can-speed-up-integration">How CometChat can speed up integration?</h2><p>Our recently launched UI Kits allow you to go from 0 to 100 in a matter of minutes. Integration is as easy as-</p><ol><li><a href="https://app.cometchat.com">Signup</a> for a free CometChat Pro account</li><li>Follow the quick start guide for your platform:<br>a. <a href="https://prodocs.cometchat.com/docs/android-quick-start">Android</a><br>b. <a href="https://prodocs.cometchat.com/docs/ios-quick-start">iOS</a><br>c. <a href="https://prodocs.cometchat.com/docs/js-quick-start">Javascript</a><br>d. <a href="https://prodocs.cometchat.com/docs/react-native-quick-start">React Native</a><br>e. <a href="https://prodocs.cometchat.com/docs/cordova-ionic-quick-start">Cordova/Ionic</a></li></ol><h2 id="how-cometchat-can-enhance-your-existing-in-app-solution">How CometChat can enhance your existing in-app solution?</h2><p>We have a number of features which are unique to our offering. If we were to highlight just a few, they would be Voice &amp; Video Calling and our <a href="https://www.cometchat.com/pro/extensions">Extensions Marketplace</a>. You can quickly features like email notifications, sentiment analysis, profanity filtering and more.</p><h2 id="how-cometchat-can-help-you-migrate">How CometChat can help you migrate?</h2><p>Three key ways that make it easier for you to migrate-<br><br><strong>Price Match</strong><br>In the current climate, we understand that it may be hard for you to get approvals for a different pricing structure. So we are offering a 1-year price match for all Pusher Chatkit customers.</p><p><strong>Historical Migration</strong><br>We are offering free data migration services to migrate all your existing Chatkit data to CometChat.</p><p><strong>Live Migration</strong><br>A common problem you may face is how quickly your customers can upgrade their mobile apps to a newer version (with CometChat). Our Live Migration technology allows users who are still using an older version of your app (with Chatkit) to be able to message users who are using your latest version (with CometChat) and vice versa. So there is minimal impact for your users.</p><h2 id="ready-to-begin">Ready to begin?</h2><p>Our team is happy to assist you with steps forward. Simply <a href="https://www.cometchat.com/contact">get in touch</a>.</p>]]></content:encoded></item><item><title><![CDATA[Keeping PHI Secure: A Guide to Choosing a HIPAA Compliant Chat API]]></title><description><![CDATA[If your business handles protected health information (PHI), your chat app has to be HIPAA-compliant. This guide can help you choose a HIPAA compliant chat API.]]></description><link>https://www.cometchat.com/blog/keeping-phi-secure-a-guide-to-choosing-a-hipaa-compliant-chat-api/</link><guid isPermaLink="false">5e715da43e9ed90a202c33e0</guid><category><![CDATA[Announcements]]></category><dc:creator><![CDATA[Team CometChat]]></dc:creator><pubDate>Wed, 18 Mar 2020 10:00:00 GMT</pubDate><media:content url="https://www.cometchat.com/blog/content/images/2020/03/hipaa-video-chat-sdk--1-.png" medium="image"/><content:encoded><![CDATA[<img src="https://www.cometchat.com/blog/content/images/2020/03/hipaa-video-chat-sdk--1-.png" alt="Keeping PHI Secure: A Guide to Choosing a HIPAA Compliant Chat API"><p>There's a hacker attack <a href="https://eng.umd.edu/news/story/study-hackers-attack-every-39-seconds">every 39 seconds</a>.</p><p>Hackers are continuously finding new ways to steal data. Most companies protect and encrypt their email channels. Many don't think of protecting areas like chat rooms or video calling.</p><p>IP addresses, file attachments, and images can <a href="https://www.forbes.com/sites/forbestechcouncil/2019/04/03/cybersecurity-chat-the-security-risks-of-popular-collaboration-apps/#6a0e8e773e1d">spread fast</a> through private chats. They can also spread through group chats and other collaboration channels. As a result, data gets stolen, companies lose money, and HIPAA laws get broken.</p><p>The only way to combat the issue is to use a HIPAA compliant chat API.</p><p>Do you want to learn more about HIPAA laws and how to ensure you're using a HIPAA compliant chat? This guide will break it down for you.</p><h2 id="what-is-hipaa"><strong>What Is HIPAA?</strong></h2><p>HIPAA stands for Health Insurance Portability and Accountability Act. <a href="https://digitalhealthbuzz.com/10-facts-about-hipaa-compliance-you-might-not-know-about/">Enacted in 1996</a>, HIPAA is a United States federal law that ensures your private health information stays secure.</p><p>HIPAA includes regulations for how healthcare providers and businesses should and can handle data and health information. Those regulations and standards are required to ensure PHI data is stored, managed, and accessed correctly at any time of the day.</p><p>HIPAA laws include specified penalties and fines for those organizations or individuals that opt not to comply with HIPAA standards.</p><h3 id="what-is-phi"><strong>What Is PHI?</strong></h3><p>PHI, or protected health information, includes information such as:</p><ul><li>Medical records, including everything from an MRI scan to blood test results</li><li>Billing records and payment methods at any medical office</li><li>Conversations between any parties, including you and your doctor, your doctor and their staff, your insurance company and your health provider, etc.</li><li>Any emails, notes, texts, video chats, and other correspondence</li></ul><h2 id="how-are-hipaa-laws-followed"><strong>How Are HIPAA Laws Followed?</strong></h2><p>HIPAA laws are clear and easy to follow. For a business associate or covered entity to be compliant with HIPAA law, they must do these 4 things:</p><ul><li>Have safeguards in place so that PHI data is protected always</li><li>Restrict access to PHI data to only those employees or people needed to accomplish the purpose at hand</li><li>Have BAAs (Business Associate Agreements) with service providers in place to ensure PHI data stays secure</li><li>Have policies and procedures to limit access to PHI data, and to have the training to teach users and employees about privacy and data security</li></ul><h3 id="what-technical-safeguards-do-saas-companies-use-to-ensure-hipaa-compliancy"><strong>What Technical Safeguards Do SaaS Companies Use to Ensure HIPAA Compliancy?</strong></h3><p>There are 4 HIPAA rules - security, privacy, enforcement, and breach notification. Developers and service providers must pay extra attention to the security rules as they set the tone for how PHI data must be handled and managed.</p><p>The security rule uses <strong><strong>4 Technical Safeguards</strong></strong> to make sure data is safe, access is controlled, and that only properly authenticated users are authorized.</p><p><strong><strong>Access Control</strong></strong> dictates that there must be procedures and policies in place to ensure that only authorized users are granted access to PHI data. These policies might include emergency access procedures, encryption procedures, and unique identifiers from user to user.</p><p><strong><strong>Audit Controls</strong></strong> mandate that certain mechanisms should be in effect to examine access by individuals and activity in the system.</p><p><strong><strong>Integrity Controls</strong></strong> say that PHI data must never be improperly destroyed or altered. In turn, there must be procedures in place so that if a breach does occur, auditors can figure out how and why it happened.</p><p><strong><strong>Transmission Security</strong></strong> dictates that security measures should be in place to ensure no unauthorized access to PHI data happens when it's transferred over a network.</p><h2 id="who-must-comply-with-hipaa"><strong>Who Must Comply With HIPAA?</strong></h2><p>When HIPAA was first enacted, the purpose was to provide a safe way for people to transfer employment and doctors using their same health insurance policies and information. Initially, it was only hospitals, doctors, and insurance companies that had to comply with HIPAA specifications.</p><p>The reason for this is because at first, these were the only people and places with access to PHI data. Under HIPAA law, these "covered entities" include any organization that provides treatment, payment, and health care operations, such as:</p><ul><li>Hospitals</li><li>Doctors and medical offices</li><li>Pharmacies</li><li>Insurance Companies</li><li>HMOs</li></ul><p>In 2013, HIPAA decided to take into account the fact that health care across the country was outsourcing and using cloud providers. Now, these services must all stay HIPAA compliant too. They're called "business associates," and they include any service that transmits, stores, or receives PHI data.</p><p>These business associates include:</p><ul><li>SaaS companies that provide cloud-based and electronic health information and records for medical professionals</li><li>Medical transcription services that provide services to doctors and other health professionals</li><li>Analytics companies that process medical data</li></ul><h3 id="what-are-the-benefits-of-staying-hipaa-compliant"><strong>What Are the Benefits of Staying HIPAA Compliant?</strong></h3><p>Aside from following the law, there are many other benefits of staying HIPAA compliant and only investing in services that are as well. Here are some of those benefits:</p><ul><li>You'll open your organization up to new customers</li><li>You'll save money by limiting your vulnerability to a breach</li><li>You'll gain trust from other businesses who can rest assured knowing your data is protected</li><li>Your employees will understand practices necessary to keep data safe, ensuring your "human firewall" is strong</li><li>It reduces your organizational and individual liability</li><li>You'll avoid additional and expensive add-on security</li><li>I'll reduce medical errors</li><li>You'll improve the quality of care and increase patient satisfaction</li></ul><h2 id="how-can-hipaa-compliant-chat-api-help"><strong>How Can HIPAA Compliant Chat API Help?</strong></h2><p>Think about cloud-based services for a moment. HIPAA laws changed only 7 years ago to account for this new means for communication and data storage. HIPAA laws continue to change as the need for advanced security and protection changes too.</p><p>Hackers are continuously finding new ways to breach data. Plus, many breaches occur simply because of inadequate employee training. It can be something as simple as an opened hyperlink in a group chat that provides an entryway for an attack on PHI data.</p><p>Medical chat rooms, healthcare messaging apps, and video conferencing provide new ways for hackers and individuals to breach sensitive information. Any chat app used in the medical community should be HIPAA compliant as HIPAA chat API connects patients and providers, avoiding any compliance issues.</p><h2 id="why-cometchat"><strong>Why CometChat?</strong></h2><p>CometChat is a cloud-hosted chat platform. CometChat's products are made specifically to help any company, individual, or organization build chat features into their business.</p><p>Do your teachers need a way to securely connect with their students? Does your delivery app need a way to ensure communication between drivers and customers is secure? Do you need to build trust between your buyers and sellers?</p><p>Whether it's a group chat, live chat, private chat you need, and whether it's text, voice, or video, CometChat can help build customized HIPAA compliant chat solutions for your needs.</p><h3 id="what-are-the-benefits-of-using-hipaa-compliant-chat-api"><strong>What Are the Benefits of Using HIPAA Compliant Chat API?</strong></h3><p>When you use HIPAA compliant instant messaging, your employees can <strong><strong>communicate in a more efficient</strong></strong>, streamlined manner, without having to worry about a breach in security. A truly HIPAA compliant service should enable users to send patient charts, prescribed medications, X-rays, and other sensitive information by simply attaching it to a message.</p><p>With HIPAA chat API services, you'll <strong><strong>never have to worry about compliance risks</strong></strong>. Healthcare organizations and hospitals that don't follow HIPAA's regulations can find themselves owing $50,000 for just a single infraction and up to $1.5 million for repeated ones. Following government sanctions by investing in HIPAA compliant chat services will save you from potential penalties and fines in the future.</p><p>Loudspeakers and pagers are a thing of the past. Plus, they take too long.</p><p>Everyone has a mobile phone with them, though, almost wherever they go. Sending a mobile message to a medical professional on the device they carry around at all times is much more efficient than waiting for a page to get returned. Plus, going mobile inevitably improves the quality of patient care.</p><p>With HIPAA compliant instant messaging, you can <a href="https://www.cometchat.com/blog/translate-messages-in-your-chat-app/">smash the language barrier</a>, too, with real-time message translation.</p><h2 id="hipaa-chat-api-is-a-small-price-to-pay"><strong>HIPAA Chat API Is a Small Price to Pay</strong></h2><p>CometChat exists to keep private information safe. Built into the cloud, CometChat services are always available, and there's always someone to help at any time of night or day.</p><p>Don't wait to protect your employees, your patients or customers, and yourself. With HIPAA compliant chat API, the hard part is done for you. You don't have to worry about HIPAA laws or the possibility of losing customer data and trust.</p><p>All you have to do is to educate your staff and ensure they have the proper tools and information to communicate efficiently and safely.</p><p>Do you have questions about how it works? <a href="https://www.cometchat.com/contact">Contact us</a> at any time! Ready to get started? You can get started <a href="https://www.cometchat.com/products/">here for free</a>!</p>]]></content:encoded></item><item><title><![CDATA[Response to COVID-19]]></title><description><![CDATA[How CometChat is ensuring the safety and well-being of their team members and customers. ]]></description><link>https://www.cometchat.com/blog/response-to-covid-19/</link><guid isPermaLink="false">5e711aa53e9ed90a202c334f</guid><category><![CDATA[Announcements]]></category><dc:creator><![CDATA[Anant Garg]]></dc:creator><pubDate>Tue, 17 Mar 2020 19:36:34 GMT</pubDate><media:content url="https://www.cometchat.com/blog/content/images/2020/03/covid-response--1-.png" medium="image"/><content:encoded><![CDATA[<img src="https://www.cometchat.com/blog/content/images/2020/03/covid-response--1-.png" alt="Response to COVID-19"><p>As the Coronavirus pandemic puts countries on lockdown, we would like to share the measures we are taking for the safety of our team members and our customers. </p><p>We would like to reassure our customers that our services will not be disrupted during this period.</p><p>We are taking measures to ensure the well being of our employees. As of Monday, all our 50+ team members spread across two continents are working from home until the risk has been reduced. </p><p>While our physical offices are closed, our products &amp; support/success teams are fully operational. We have intentionally delayed new feature rollouts during this period. But our support &amp; customer success teams continue to operate with the same efficiency and responsiveness that you've come to expect.</p><p>We are constantly monitoring this situation and we will update this blog post as this situation evolves.</p><p>Finally, we would like to extend our support for anyone affected directly or indirectly by COVID-19. Stay safe.</p>]]></content:encoded></item><item><title><![CDATA[Allow WordPress users to chat together with this plugin]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p><a href="https://cometchat.com/go">CometChat Go</a> is a beautiful white-label WordPress user chat plugin that's easy to install and configure. Your users will love it because it allows them to chat one-on-one or in a group, either through text, voice, or video chat.</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580135817480_CometChat+Go+example.gif" alt></p>
<h2 id="features">Features</h2>
<p>CometChat has been optimised not only for reliability but also</p>]]></description><link>https://www.cometchat.com/blog/wordpress-user-chat-with-cometchat/</link><guid isPermaLink="false">5e5cfbb43e9ed90a202c330c</guid><dc:creator><![CDATA[Nathan Sebastian]]></dc:creator><pubDate>Mon, 02 Mar 2020 12:47:26 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p><a href="https://cometchat.com/go">CometChat Go</a> is a beautiful white-label WordPress user chat plugin that's easy to install and configure. Your users will love it because it allows them to chat one-on-one or in a group, either through text, voice, or video chat.</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580135817480_CometChat+Go+example.gif" alt></p>
<h2 id="features">Features</h2>
<p>CometChat has been optimised not only for reliability but also to  provide an engaging experience for your users such that they stay on your website longer and keep coming back. Here's a quick overview:</p>
<ul>
<li>💬 <strong>One-on-one chat</strong> Your WordPress users can chat with each other in private &amp; one-on-one conversations.</li>
<li>👩‍👩‍👦‍👦 <strong>Group chat</strong> WordPress users can be gathered into a single place using group chats, Create password protected and invitation only group chats.</li>
<li>📞 <strong>Video calling</strong> High quality video conversations with peer to peer technology. No server bandwidth used and works on shared servers.</li>
<li>🈯️ <strong>Real-time translation</strong> Translate all incoming conversations into the language of your choice in real-time.</li>
<li>🚨 <strong>Moderation</strong> You can assign moderators with specific roles and powers to manage Groups, ban or kick user(s) from group. Users can report conversation and you can filter certain words from the conversation.</li>
<li>⌨︎ <strong>Typing indicators</strong> Your WordPress users receive a notification when someone is typing in a conversation.</li>
<li>✅ <strong>Read indicators</strong> Get informed when your message is sent, seen and read with read receipts.</li>
<li>⏱ <strong>Last seen indicators</strong> Get to know when a WordPress user was last active using the last seen notification feature.</li>
<li>✋ <strong>Stickers</strong> Have fun conversations with classic emojis or CometChat's unique and vibrant stickers.</li>
<li>📂 <strong>File sharing</strong> Share files within chats using a single click with the file sharing feature.</li>
<li>🤖 <strong>Bots</strong> You can use bots to show weather, stocks, accept paypal payments or conduct polls, surveys and more.</li>
<li>🖥 <strong>White-label web, mobile &amp; desktop apps</strong> Re-brand the web, mobile and desktop app to reflect your brand by customizing colors and using White-label Mobile &amp; Desktop App. CometChat Go fits the look and feel of virtually any website theme.</li>
</ul>
<h2 id="howtoimplementcometchatwithwordpress">How to implement CometChat with WordPress</h2>
<p>Before you continue, I assume you already have a working WordPress website and you know how to install plugins. Please keep in mind that the WordPress site I mentioned means a self hosted WordPress site, using wordpress.org. If you’re using the cloud hosted WordPress version, which is wordpress.com, you won’t be able to install custom plugins.</p>
<p>If you don’t have a wordpress.org website, then you can install one in less than 5 minutes by following this <a href="https://www.wpbeginner.com/how-to-install-wordpress/">tutorial</a>.</p>
<p>Once you have a running self hosted WordPress site, let’s sign up for a CometChat account to get the plugin.</p>
<p>First, You need to go to CometChat website and register for a free 7 day trial <a href="https://www.cometchat.com/go/pricing/">here</a>.</p>
<p>You can sign up for the Lite plan and enter your payment details. Don’t worry, you won’t be charged before the 7 days free trial is up. You’ll even receive an email notification one day before the end of the trial to make sure you don’t forget that it’s almost over.</p>
<p>After you’ve completed the registration, you will receive an email containing your username and password. Use them to login into your account <a href="https://secure.cometchat.com">here</a>.</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580130605981_comet-chat-go-purchase-info.png" alt="Don’t forget to change your password later"></p>
<p>Once you login, you need to insert your domain address and your website technology. Because we’re adding CometChat to WordPress, you can look for it from the dropdown menu.</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574942661607_select+wordpress+as+tech.png" alt="Selecting WordPress integration"></p>
<p>After the setup is finished, click on “Manage” and you’ll be taken into CometChat admin panel.</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580130702222_click+on+manage.png" alt="Click on Manage button"></p>
<p>From this page, go to <strong>Settings &gt; Install CometChat &gt; Install CometChat on your website</strong>. You’ll find WordPress plugin by scrolling down a bit:</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580130986947_image_preview.png" alt="CometChat on WordPress menu"></p>
<p>Click on the WordPress tab and download the plugin. By the way, don’t forget to take note of your License Key, API Key and Auth Key from the Api Key menu. You will be required to enter them into your CometChat plugin.</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580131202262_api-keys.png" alt="Get your keys from the Api Keys menu"></p>
<p>Once the download is finished, head into your WordPress website and login as admin. Upload the plugin through WordPress plugins menu:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574944573619_install+cometchat+to+wp.png" alt></p>
<p>Once installed, activate the plugin and go into its menu. It will ask you for your license key. Once verified, you’ll need to put your API Key and Auth Key:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574945227444_data_signature_wp-1.png" alt="CometChat keys here"></p>
<p>In order to make the chat room appear on your website, you have to make use of WordPress shortcode feature. A shortcode is a simple set of code written inside two square brackets <code>[]</code> that can be used to add features to your website that otherwise would require real computer code and technical knowledge.</p>
<p>For example, you can use the YouTube shortcode to insert a video from YouTube into your web page:</p>
<pre><code>[youtube https://www.youtube.com/watch?v=WVbQ-oro7FQ]
</code></pre>
<p>A WordPress plugin can take advantage of this feature and use it to create its own specific shortcodes. To see it in action, let’s use CometChat Go’s shortcode to insert a chat room into your page.</p>
<p>To create a new page in your website, click on the menu <strong>Pages &gt; Add New.</strong> For this tutorial, we’ll name it “Chat page”. You need to write a shortcode for the chat room into the page as follows:</p>
<pre><code>[cometchat layout='embedded' width='900' height='600']
</code></pre>
<p>The shortcode above will insert a CometChat chat room into your WordPress page using the embedded mode (we’ll discuss this later) in the size of <code>900px X 600px</code></p>
<p>You’re free to customize the width and height, but if you don’t specify them, the default chat room size will be <code>400px X 420px</code>.</p>
<p>Here is a screenshot of my page:</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580132512760_chat-page.png" alt="Creating a WordPress page with chat room feature"></p>
<p>Now you’re page is ready, so click on “Publish” button at the top right panel and go to view the page. You should have the chat room running on the Chat page.</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580131629490_CometChatGo.png" alt="An embedded CometChat interface"></p>
<p>You can test the chat functionalities by opening your website from another browser. With two users, you can try to chat, send files and even do a video call. You can test out a demo of CometChat <a href="https://www.cometchat.com/go/demo">here</a>.</p>
<h2 id="cometchatgomodeembeddedanddocked">CometChat Go Mode: embedded and docked</h2>
<p>CometChat Go can run in two different layouts: embedded and docked.</p>
<p>As you have seen through the example above, embedded mode will make the chat room appear tied into your web page. You can still customize its width and height, although it will look better if you leave it in full screen.</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580136029362_embed-mode.png" alt></p>
<p>By contrast, the chat interface in docked mode will appear as a small window docked into the left or right side of your website. You can customize its width and height, but in general it will appear on top of your website in every page. It can also be minimized to hide it from view.</p>
<p><img src="https://paper-attachments.dropbox.com/s_924AB4DAC1A6BC250D5EA8499BE83C5CD9FD9BE935E3D0A15DB34704EB048DCE_1580136154449_docked+mode.gif" alt></p>
<p>Now the question is, which one would you use? The answer is the one most suitable for your website.</p>
<p>For example, if you have an e-commerce website where users can chat with a customer representative, it might be better to use docked mode on all your web pages.</p>
<p>If you have a forum website, you might want to run both mode. You create a single embedded chat where users can chat with other users, and then run a docked chat window in the forums thread pages. This way, users can still receive notification of incoming message while browsing through the threads.</p>
<p>By the way, CometChat Go is compatible with user management plugins like BuddyPress and UltimateMembership, which you might need to install once you’re website reached a tipping point and needs to scale.  For integrating CometChat Go with BuddyPress flavored WordPress, you can read the tutorial here &lt; INTERNAL LINK</p>
<h2 id="makingchatapremiumfeature">Making chat a premium feature</h2>
<p>Congratulations! Now you know how to integrate CometChat Go into a WordPress website. You also know how to run a chat feature in two different modes: <em>embedded</em> and <em>docked</em>.</p>
<p>I’m not sure if it’s for you, but just in case you’re interested in making chat a premium feature of your site, you can visit my other tutorial <a href="https://www.cometchat.com/blog/make-money-with-wordpress-and-premium-chat/">here</a>. It will help you to create a paid membership only chat feature for your WordPress site.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[CometChat Pro December update]]></title><description><![CDATA[<p>At CometChat, we're on a mission to help you add chat to your website and mobile app through tools that are simple enough for anyone to use yet robust enough to power the world's most demanding apps. To realize this mission, we are constantly improving our product and resources. Here’</p>]]></description><link>https://www.cometchat.com/blog/cometchat-december-update/</link><guid isPermaLink="false">5df781ef3e9ed90a202c32d9</guid><dc:creator><![CDATA[Alex Booker]]></dc:creator><pubDate>Mon, 16 Dec 2019 13:11:49 GMT</pubDate><content:encoded><![CDATA[<p>At CometChat, we're on a mission to help you add chat to your website and mobile app through tools that are simple enough for anyone to use yet robust enough to power the world's most demanding apps. To realize this mission, we are constantly improving our product and resources. Here’s a summary of what changed in December.</p><h2 id="cometchat-pro">CometChat Pro</h2><p>This month we made a conscious effort to simplify our pricing, making it <strong>transparent</strong> and <strong>predictable</strong>: </p><figure class="kg-card kg-image-card"><img src="https://paper-attachments.dropbox.com/s_4C08DD1CEB5AFC1CD00598BF5120E719AA2B28D88A8CD62392ADECD835E606B2_1576501424523_image.png" class="kg-image"></figure><p><br>New users will enroll in an unlimited 30-day no-obligation free trial. At the end of their trial, they can decide to upgrade or get in touch with someone from our team who will be more than happy to help.</p><blockquote>💡 Already have an app and haven’t chose a plan?<br><br>Search your inbox for "CometChat Pro Pricing Plans” for more information about how to choose a plan. If you never received an email with this subject, don’t worry - that means no action is needed from you.</blockquote><p><br>In other good news, this month we released our comprehensive Sketch UI kit:</p><figure class="kg-card kg-image-card"><img src="https://paper-attachments.dropbox.com/s_4C08DD1CEB5AFC1CD00598BF5120E719AA2B28D88A8CD62392ADECD835E606B2_1576501481122_image.png" class="kg-image"></figure><figure class="kg-card kg-image-card"><img src="https://paper-attachments.dropbox.com/s_4C08DD1CEB5AFC1CD00598BF5120E719AA2B28D88A8CD62392ADECD835E606B2_1576501497431_image.png" class="kg-image"></figure><figure class="kg-card kg-image-card"><img src="https://paper-attachments.dropbox.com/s_4C08DD1CEB5AFC1CD00598BF5120E719AA2B28D88A8CD62392ADECD835E606B2_1576501515900_image.png" class="kg-image"></figure><p>And I am here to tell you <strong>this is the last chat UI kit you’ll ever need</strong>. It includes <strong>everything</strong> - that means over 1,000 screens and components (in light and dark variants) for Android, iOS, and the web. </p><p><br>For all components, you’ll easily find a <a href="https://cometchat.com/pro">CometChat Pro</a> function to bring them to life, exactly how you imagined. This free UI kit is just one step closer towards our mission to provide you with everything you need to build chat easily then launch with confidence.</p><p><br><strong><a href="https://docs.google.com/forms/d/e/1FAIpQLSdTQC2gZHevPtsYzvU3cP6M4udK0zPocjjSTiXWKUTwzpT3oA/viewform?usp=sf_link">Click here for more information about the CometChat chat UI kit.</a></strong></p><h2 id="from-the-blog">From the blog</h2><ul><li>HOT 🔥 <a href="https://www.cometchat.com/blog/chat-push-notification-deliverability/" rel="noreferrer nofollow noopener">Why your chat notifications might go undelivered, and what you can do about it</a></li><li>ON FIRE 🔥<a href="https://www.cometchat.com/blog/firebase-vs-cometchat/" rel="noreferrer nofollow noopener">How to choose between Firebase and CometChat Pro</a></li><li><a href="https://www.cometchat.com/blog/announcing-the-new-cometchat/" rel="noreferrer nofollow noopener">Announcing the new CometChat</a></li><li><a href="https://www.cometchat.com/blog/cometchat-go-vs-pro/" rel="noreferrer nofollow noopener">Which CometChat product is right for you?</a></li><li><a href="https://www.cometchat.com/blog/customer-story-soona/" rel="noreferrer nofollow noopener">"We delivered way more functionality if we tried to build from scratch"</a>, a customer testimonial</li></ul><h2 id="tutorials">Tutorials</h2><ul><li>VIDEO 📹: <a href="https://www.youtube.com/watch?v=cNY8nnzRcw0&amp;feature=youtu.be" rel="noreferrer nofollow noopener">Code an Android chat app in 30 minutes</a></li><li><a href="https://www.cometchat.com/tutorials/make-cometchat-work-with-wolox-chat-widget/" rel="noreferrer nofollow noopener">Make CometChat work with Wolox react-chat-widget</a></li><li><a href="https://www.cometchat.com/tutorials/build-a-jquery-chat-app/" rel="noreferrer nofollow noopener">Coding a ridiculously good-looking jQuey chat room</a></li><li><a href="https://scotch.io/build-a-chat-app-with-laravel-and-vue" rel="noreferrer nofollow noopener">Build a chat app with Laravel and Vue</a> (published on scotch.io)</li></ul>]]></content:encoded></item><item><title><![CDATA[How to choose between Firebase and CometChat Pro]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>Building rich messaging for your app might seem simple at first, but things can quickly escalate when you start to think about advanced features, edge-cases, and how to manage your chat infrastructure at scale. To overcome these challenges, you have several solutions available, but how do they compare?</p>
<p>In this</p>]]></description><link>https://www.cometchat.com/blog/firebase-vs-cometchat/</link><guid isPermaLink="false">5defbbf93e9ed90a202c32c3</guid><dc:creator><![CDATA[Wajahat Karim]]></dc:creator><pubDate>Tue, 10 Dec 2019 15:39:09 GMT</pubDate><media:content url="https://www.cometchat.com/blog/content/images/2019/12/firebase.png" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://www.cometchat.com/blog/content/images/2019/12/firebase.png" alt="How to choose between Firebase and CometChat Pro"><p>Building rich messaging for your app might seem simple at first, but things can quickly escalate when you start to think about advanced features, edge-cases, and how to manage your chat infrastructure at scale. To overcome these challenges, you have several solutions available, but how do they compare?</p>
<p>In this article, I will compare <a href="https://firebase.google.com/">Firebase</a>, a general-purpose app development platform, to <a href="https://cometchat.com/pro">CometChat Pro</a>, which is built specifically to help you build chat.</p>
<h2 id="firebase">Firebase</h2>
<p>Firebase evolved from a tool named &quot;Envolve,&quot; which, interestingly enough, was built specifically to help developers code chat. Since then, Firebase has pivoted from a chat-specific tool to become a general-purpose development platform, comprised of numerous products, including a real-time database called <a href="https://firebase.google.com/docs/firestore">Cloud FireStore</a>. These generic Firebase products are &quot;good at everything&quot; but not great.</p>
<p>In short, to build chat with Firebase, you need to define a FireStore database structure. When someone sends a message, you then create a database record and, being a real-time database, FireStore broadcasts an event to all subscribers in real-time. Here is an example message structure:</p>
<p><img src="https://miro.medium.com/max/1126/1*AHL1ZE8Kt1ctIL2LfZ0z1w.png" alt="How to choose between Firebase and CometChat Pro"></p>
<p>An example of a subscriber would be your app, which can then render these new chat messages.</p>
<p>This works pretty well because, typically, you <em>do</em> actually want to keep a record of most messages for message history, search, etc. However, what about ephemeral events? For instance, if you wanted to show a typing indicator - that would involve creating an <code>isTyping</code> structure (or similar) in your database and cleaning it up periodically. Similarly, you'll need to think about how to handle delivered indicators, read indicators, online presence, media messages, and other such features yourself.</p>
<p>In our view, the greater the dependency you take on Firebase, the more the benefits compound. For example, you could use <a href="https://firebase.google.com/docs/auth">Firebase Authentication</a> to authenticate and manage users, FireStore for your data (including chat data), and <a href="https://firebase.google.com/docs/cloud-messaging">Firebase Cloud Messaging</a> to send push notifications. Because it's all the same platform, Firebase makes it natural for these products to communicate together with reasonable (not unlimited) flexibility.</p>
<h1 id="cometchatpro">CometChat Pro</h1>
<p>Whereas Firebase is good at everything, CometChat Pro is an excellent developer tool for enabling chat.</p>
<p><img src="https://paper-attachments.dropbox.com/s_CA2B82170B8E3C41A70A81E22E065174951476E108DA0958C973AB1026564DDF_1575991816955_image.png" alt="How to choose between Firebase and CometChat Pro"></p>
<p>In contrast with Firebase, CometChat Pro offers a chat SDK featuring numerous chat-specific functions and events. For example, you would send a message with <code>sendMessage</code> and subscribe with <code>onMessageReceived</code>.</p>
<p>As another example, when a user starts to type, you would call <code>startTyping</code> and subscribe by creating a <code>typingListener</code>. You don’t necessarily need to convey that someone “stopped” typing because CometChat Pro can figure that out heuristically. You see, being focused on chat allows CometChat Pro to do one thing, and do it very well.</p>
<p>With Firebase, you need to do much work to build a basic chat, including managing the database structure, transactions, encryption, access rules, and more. With CometChat Pro, most of the work has been done for you.</p>
<p>Another benefit of CometChat Pro is <a href="https://cometchat.com/pro/extensions">extensions</a>. To date, CometChat Pro has nine available extensions and more on the way:</p>
<ul>
<li>Push notification</li>
<li>SMS notification</li>
<li>Email notification</li>
<li>Message translation</li>
<li>Thumbnail generation</li>
<li>Sentiment analysis</li>
<li>Human moderation</li>
<li>Profanity filter</li>
<li>Smart replies</li>
<li>Link preview</li>
<li>Image moderation</li>
</ul>
<p>With extensions, we have anticipated the most common and natural &quot;next steps&quot; for your chat app. You know you need the basics - like messaging and “who’s online” presence. Advanced features that would generally require a lot of time and energy can now be added in no time with simple &quot;turnkey&quot; extensions.</p>
<p>CometChat Pro has a concept of a &quot;CometChat user,&quot; by which you can store frequently-needed data like the user's name, username, avatar URL, and so on. That being said, CometChat Pro does not concern itself with authentication - to authenticate users, you will need to perform that logic on your own server (or using a third-party tool like <a href="http://auth0.com/">Auth0</a>) and generate a token for CometChat Pro to use. We wrote a tutorial about <a href="https://www.cometchat.com/tutorials/express-authentication-server-for-cometchat/">how to build a chat authentication server</a> that makes it easy.</p>
<p><img src="https://paper-attachments.dropbox.com/s_436D6C3BCB8B50DD87F2048C2E9F90FEA012CAA88A24F390E93F868BCEAA9CF3_1575038988095_custom++1.png" alt="How to choose between Firebase and CometChat Pro"></p>
<h2 id="onreliabilityandsecurity">On reliability and security</h2>
<p>When you base your app on a platform, you expect it to be completely reliable, secure, and compliant.</p>
<p>Firebase has been around for almost a decade, and being a development platform, many serious applications like <a href="https://www.nytimes.com/">The New York Times</a> and <a href="http://todoist.com/">todoist</a> are built on Firebase. That being said, <a href="https://medium.com/@scosta/why-firebase-sucks-ce5d2302eb20">many customers have experienced frustration and disappointment with Firebase</a> due to sporadic outages and reported security vulnerabilities. These issues likely didn't affect all applications, but it would be reasonable to assume these issues are going to be most prevalent in any real-time system like a chat.</p>
<p>CometChat was founded a couple years earlier in 2009, and since then, we have powered billions of conversations. While no platform is immune to downtime, staying in one lane and focusing only on chat affords us a more predictable environment in which to plan our failovers should anything go awry. CometChat Pro is completely GDPR compliant and secure.</p>
<h2 id="onprice">On price</h2>
<p>Firebase offers three plans creatively named Spark, Flame, and Blaze:</p>
<p><img src="https://paper-attachments.dropbox.com/s_CA2B82170B8E3C41A70A81E22E065174951476E108DA0958C973AB1026564DDF_1575991565321_image.png" alt="How to choose between Firebase and CometChat Pro"></p>
<p>Anticipating your monthly bill is tricky and <a href="https://pamartinezandres.com/lessons-learnt-the-hard-way-using-firebase-realtime-database-c609b52b9afb">may surprise you</a>. That being said, you can reason that using the Flame plan, 100,000 daily document writes, and 10GB monthly bandwidth for $25 is reasonable. Of course, you will need to do much work yourself, which must be factored into your total cost.</p>
<p>CometChat Pro offers two plans named Metroid and Asteroid, plus you an also enroll on a custom plan:</p>
<p><img src="https://paper-attachments.dropbox.com/s_CA2B82170B8E3C41A70A81E22E065174951476E108DA0958C973AB1026564DDF_1575991612122_image.png" alt="How to choose between Firebase and CometChat Pro"></p>
<p>Here is a <a href="http://cometchat.com/pro/pricing">quick link to the CometChat Pro pricing page</a> so you can experiment with the slider.</p>
<p>Whether you are a solo-entrepreneur, growing start-up, or enterprise, CometChat Pro offers transparent pricing, so you'll always know what you'll pay.</p>
<h1 id="conclusion">Conclusion</h1>
<p>I hope this comparison has helped highlight the key differences between CometChat Pro and Firebase. At the end of the day, there will be no better comparison than the one you and your team carry out independently. Of course, if you have questions or need help building your prototype/MVP with CometChat Pro, you can <a href="https://slack.cometchat.com">join our Slack group</a> or <a href="https://cometchat.com/contact">get in touch</a> - you may be surprised at how quick you receive response.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[5 ways to make money on WordPress you've never thought of (do these before they become saturated)]]></title><description><![CDATA[<p>Monetizing a website is a challenge. There are dozens of online platforms competing for your users’ attention, trying to keep them engaged and away from the competition. The competition also includes you. <br></p><p>How do you beat them? <br></p><p>How do you keep your users engaged better? <br></p><p>And how can you monetize</p>]]></description><link>https://www.cometchat.com/blog/make-money-online-with-wordpress/</link><guid isPermaLink="false">5def99733e9ed90a202c3279</guid><dc:creator><![CDATA[Salman Ravoof]]></dc:creator><pubDate>Tue, 10 Dec 2019 13:24:32 GMT</pubDate><content:encoded><![CDATA[<p>Monetizing a website is a challenge. There are dozens of online platforms competing for your users’ attention, trying to keep them engaged and away from the competition. The competition also includes you. <br></p><p>How do you beat them? <br></p><p>How do you keep your users engaged better? <br></p><p>And how can you monetize your online community?<br></p><p>In this post, I’ll teach you exactly how to do that with CometChat Go, a plug-and-play solution to get your website chat ready in no time!<br></p><p><strong>Some Hard Truths First</strong><br></p><p>Building, managing, and growing an online community takes time and hard work. It’s a reward unto itself. But eventually, the bills arrive. And they will not pay themselves. <br></p><p>It’s more rewarding to see your hard work turn into cash than frustration and desperation. And when that effort pays off, there’s nothing like it.<br></p><p>Sure, you can use ads to get the revenue ball rolling. But unless you’re happy with just covering your hosting costs, ads are <a href="https://www.ryrob.com/make-money-blogging/#3">one of the worst revenue models for small to medium online communities</a>. <br></p><p>And, <a href="https://www.emarketer.com/content/demanding-a-better-ad-experience">many users don’t like to see ads</a> anyway.</p><p>So, what’s the best way to monetize then? <br></p><p>There are quite a few, but all of them have one thing in common: they engage with your users directly. <br></p><p>And how do you engage with users directly online these days? <br></p><p>With chat, of course!<br></p><figure class="kg-card kg-image-card"><img src="https://lh5.googleusercontent.com/gMpjAArf-1PEFNsQLBcWDVzIy4NnxvB_uBcjXLqnPqxDJpTo64G1dyezxW6fICfLxJU3Po4HkfhIECUnAjT-EOQDPzHkReC9mrQSOyVqwimAFjovYuRJvDPKkYK_WHRZhKD58qNJ" class="kg-image"></figure><p><em>Hey, wassup?</em><br></p><p><strong>Why Use Chat (&amp; Bots) to Monetize</strong><br></p><p>As per <a href="https://www.mobilemarketer.com/ex/mobilemarketer/cms/opinion/columns/17420.html">Mobile Marketer</a>, “<em>...the most successful apps today are those with a strong social engagement component.</em>”<br></p><p>Having a chat feature on your online community creates an innate way for your users to communicate with not just you, but also with each other. This allows them to express themselves, share their ideas and opinions, and communicate with like-minded people who share common interests.<br></p><p>This leads to more user engagement, which leads to better monetization opportunities for you. <br></p><p>You should note that you’re not monetizing your user base directly. You’re monetizing user engagement for the value you provide to them.  <br></p><p><em>“Companies that employ technology effectively to identify, understand, and provide highly personalized experiences to their customers with engaging content will succeed, while those that hesitate to fully embrace personalization will be left behind.”</em> — <a href="https://theblog.adobe.com/personalization-key-monetizing-content/">Advanced Advertising by Adobe</a><br></p><p>Chat (and Chatbots) are the hottest <a href="https://murraynewlands.com/ai-chatbot-marketing/">go-to tool to deliver personalized marketing</a> to users. Big brands such as Facebook, Google, and Telegram have already disrupted this area by creating their own chatbots and chat platforms.<br></p><p>Whether you’re a startup, an edutech site, or an online community of like-minded people, adding chat functionality to your website and app can enhance the experience of your users significantly. <br></p><p><strong>How to Monetize Your Site Using CometChat Go</strong><br></p><p>Chat is great, and bots are cool. All that is fine and dandy! <br></p><p>Now, the billion-dollar question is: <em>How can you monetize your online community with chat?</em> <br></p><p>That’s where <a href="https://www.cometchat.com/go/pricing">CometChat Go</a> comes in. Here are five amazing ways you can use it to monetize your online community:<br></p><p><strong>1. Restricted Content &amp; Features</strong><br></p><p>Everyone likes free stuff! An intuitive chatbot is a great way to get users hooked to your community. And if your users like the value you provide them, they’re more likely to sign up for your paid plans. <br></p><p><a href="https://mailchimp.com">MailChimp</a> is a perfect example of a freemium business model done right. You can use almost all its features for free for sending emails to your first 2000 subscribers (with a limit of up to 12,000 emails per month). <br></p><p>If you want to use advanced email marketing features such as automation, or you’ve outgrown your free subscribers limit, then you have to shift to one of their paid plans. <br></p><p><a href="https://www.dropbox.com/">Dropbox</a>, <a href="https://zapier.com/">Zapier</a>, and <a href="https://hootsuite.com/">HootSuite</a> are other great examples. <br></p><figure class="kg-card kg-image-card"><img src="https://lh4.googleusercontent.com/vYAaWMvEsK6fDNwnLDtjhhpfeguCCTCNURzruvQUD44pjTOfoTtbogEpbUulkSbMjmGSvvVNE0xfNmJkehvSEVTTibQocvFEWLJ2Y6k8cuYZBWpAMwC9FWwI16n1ubDVr0LhsLxA" class="kg-image"></figure><p>Setting <em>Role Based Permissions</em> in CometChat Go.<br></p><p>CometChat Go lets you set <em>Role Based Access Control</em> for your users through its settings. You can use this to your advantage and restrict premium content and features to only users with certain roles.</p><p>Almost all popular CMS platforms let you <a href="https://wordpress.org/support/article/roles-and-capabilities/">define as many user roles as you want</a>. This opens up a lot of monetization opportunities for you.<br></p><p><strong>2. Native Ads &amp; Sponsored Content</strong><br></p><p>Native Ads and Sponsored Content are one of the most effective content marketing techniques, and perhaps the most divisive one too. Naturally, brands want to cash in on it. <br></p><p>The secret sauce behind native advertising is to make it appear as organic as possible. Sponsored content on the other hand is pretty straightforward. <br></p><p>Chat story apps like <a href="https://taptaptap.co/">Tap</a> and <a href="https://www.hooked.co/">Hooked</a> have become hugely popular with Millennials and Generation Z. This allows lifestyle brands to earn more exposure with the next generation of consumers.<br></p><p><em>“Chat. . . platforms offer a path that could potentially reach audiences without too much intrusive branding.”</em> — <a href="https://contently.com/2018/08/01/chat-stories-native-advertising/">Contently</a><br></p><p>You should ensure that the ads you’re putting up on your platform aligns with the interests of your core user base. For instance, if you’re an online tutor, the ads could be related to the educational tools and resources your students can use, such as ebooks, video lectures, tablets, etc.<br></p><figure class="kg-card kg-image-card"><img src="https://lh6.googleusercontent.com/S_v1UF82olXxf_1inBOBF-YnVu7VJwq5rXXi5zMLurWDczB11sPVcEWoM7II4J_qQ02E8OGrA32mAIlSHVOFUpA7KDKsSv5VHM2lCYwrUxmX0qRAkYdk-9Bq9FMW09x2DgLtR4iI" class="kg-image"></figure><p>An example of ads inside CometChat Go’s chat module.<br></p><p>CometChat Go is highly customizable. You can insert ads in your chat module with ease through its dashboard. <br></p><p><strong>3. Microtransactions</strong><br></p><p>Microtransactions allow users to pay for add-0ns or additional features or add-ons. They’re a norm in most mobile games and apps. <br></p><p>CometChat Go’s <em>Credits Deduction</em> feature allows you to deduct credits from users for using premium features such as audio, video, etc. <br></p><figure class="kg-card kg-image-card"><img src="https://lh4.googleusercontent.com/bfQQno-jq4GV8oTgZukC2nAHL3up-YZG4ZMW3HkT-Y72OIYAhYgCRS9v5yOdTn_RrFcAMBjVAhJCTltXF3qcffx97K5d10j-7QsyFvKZr9FPnF6HuSS3Vi8UwGRBZM1V8XoITRgF" class="kg-image"></figure><p>Charge your users for using various chat features.<br></p><p>Find out which features can bring additional value to your users. And then charge them for providing that value. <br></p><figure class="kg-card kg-image-card"><img src="https://lh4.googleusercontent.com/EeKRc1y3FJQ9D2r3peV_QjZW8AGXc48g_ag69BiX6fQcOQXoHlMBdcI_8DMC4nCftL4f-9XjQ_dWr-DGGYzmRkHKcCVUjaCgVPO2OJ5AK2C-LEootsLAqm2SHGXrHUaYErx2xQ8D" class="kg-image"></figure><p>Video chat is a premium feature. Monetize it.<br></p><p>For example, Tinder charges its users to see whether the messages they’ve sent to their matches are <em>Seen</em> by them. Similarly, <a href="https://www.mygreatdating.com/">MyGreatDating.com</a>, a French dating platform, uses CometChat Go to monetize their online community.<br></p><p>The best way to find out which features to charge your users for is to listen to them. Check with them if it’s something they’re willing to pay for. If even a fraction of your user base is on board, then you’re good to go.<br></p><p><strong>4. Affiliate Marketing</strong><br></p><p>Affiliate marketing is nothing new and is almost as old as the internet itself. It has grown rapidly in the last decade and <a href="https://mthink.com/affiliate-marketing-industry-grow-6-8-billion-next-five-years/">is now a multibillion dollar industry</a>.<br></p><p>At its core, affiliate marketing is a revenue-sharing marketing program. You promote the products of a company. And if successful, the company shares a small commission with you. <a href="https://affiliate-program.amazon.com/">Amazon’s Affiliate Program</a> is the most popular program of its kind.<br></p><p>Now, how can you use chat to leverage this to your benefit?<br></p><p>Say you’re the owner of an adventure blog and you have a highly engaged audience. Your users will always be on the lookout for quality adventure gear. You can use your experience and knowledge in this industry to suggest them products that they’ll love. <br></p><p>If you can figure out a way to automate this with chatbots, even better. It’s a win-win scenario for both you and your users.<br></p><figure class="kg-card kg-image-card"><img src="https://lh3.googleusercontent.com/x8MfPA2OP1aUT-daT9xIQ0Imkd31ERIXW5qH7Qll9YsyK_AinANZV10Fz_Vp4_Jgk9td0pGZsI4er-ADFxLAiI4_quCM82v1RXFsWCX32exFk8baDnQhxkHVZA9jGHFSqiW6vrtT" class="kg-image"></figure><p>Add value to your community members and get paid for it.<br></p><p>CometChat Go also supports sending push notifications to your users. If there’s a sale on a product that you think your community will be interested in, you can share its affiliate link with them. Don’t forget to include how it can add value to them. Otherwise, it’ll seem like an intrusive ad. <br></p><p><strong>5. Lead Generation</strong><br></p><p>Chatbots can be used as an alternative to landing pages to generate leads. <br></p><p>How? You create a simple questionnaire in your chatbot and entice readers to fill it. It’s best practice to offer new users something valuable in return for providing information such as their name, email, phone, etc. A freebie like an ebook or webinar is a great example to get started.<br></p><p>The chatbot records the user’s information, validates it, and then stores it in your backend as usual. You can also set it up to send emails to you every time you generate a lead, just like a contact form on your website would. <br></p><p>CometChat Go integrates effortlessly with dozens of web platforms. And if you think it’s missing something, you can <a href="https://help.cometchat.com/feature-requests/">suggest us new features</a> that you’d like to see. We’re always listening to what our community wants!<br></p><p><strong>What Next? </strong><br></p><p>As per <a href="https://www.internetworldstats.com/stats.htm">Internet World Stats</a>, almost 90% of adults in North America and Europe are regular internet users. Even my friend’s grandma is online. She mostly shares content about cats and cooking. Curiously, it’s the same as what I usually do.<br></p><p><a href="https://www.superoffice.com/blog/live-chat-statistics/">Consumer preferences</a> have shifted over the past decade. More than 45% users prefer contacting businesses through messaging than email. Over 49% of users prefer to chat rather than dial a number, even with their friends and family.<br></p><p>Converting web traffic into a profitable, recurring revenue separates successful online businesses from the rest. And as we’ve seen, the future of revenue generation is conversational. CometChat Go is here to help you in this journey. <br></p><p>Experience a <a href="https://www.cometchat.com/go/demo">live demo of CometChat Go</a> and see for yourself how it can <em>add value</em> to your online community.</p><p><br></p><p><br></p><p> </p>]]></content:encoded></item><item><title><![CDATA[Make money on WordPress with premium-only chat]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>Real-time chat room is a great feature to enable collaboration and increase engagement on a website.</p>
<p>In this tutorial, you’re going to learn how to add a chat room feature into your WordPress site by using CometChat, a robust and fully-featured chat plugin for WordPress that makes your website</p>]]></description><link>https://www.cometchat.com/blog/make-money-with-wordpress-and-premium-chat/</link><guid isPermaLink="false">5de115b93e9ed90a202c325a</guid><dc:creator><![CDATA[Nathan Sebastian]]></dc:creator><pubDate>Fri, 29 Nov 2019 13:05:20 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>Real-time chat room is a great feature to enable collaboration and increase engagement on a website.</p>
<p>In this tutorial, you’re going to learn how to add a chat room feature into your WordPress site by using CometChat, a robust and fully-featured chat plugin for WordPress that makes your website chat ready in minutes.</p>
<p>CometChat is a ready to use chat application that integrates seamlessly with over 50 CMS platforms. And yes, WordPress is one of them! By adding CometChat plugin into your WordPress website, you’ll have the power of a real-time chat app to enable your community to interact and engage each other.</p>
<p>Top features of CometChat for WordPress include:</p>
<ul>
<li>Real-time text messaging</li>
<li>One-on-one and group chat</li>
<li>Audio and video call</li>
<li>Voice notes</li>
<li>File sharing</li>
</ul>
<p>And best of all, CometChat is very easy to implement in WordPress! Let me show you how.</p>
<h1 id="settingupcometchat">Setting up CometChat</h1>
<p>In this tutorial, we’ll pretend that we’re creating a programming tutorial website that has a premium membership feature. We’ll make real-time chat a premium feature that connect mentee with mentors that are online on the site.</p>
<p>First, you need to go to CometChat website and register for a free 7 day trial <a href="https://www.cometchat.com/go/pricing/">here</a>.</p>
<p>You can sign up for the Lite plan and enter your payment details. Don’t worry, you won’t be charged before the 7 days free trial is up. You’ll even receive an email notification one day before the end of the trial to make sure you don’t forget that it’s almost over.</p>
<p>After you’ve completed the registration, you will receive an email containing your username and password. Use them to login into your account <a href="https://secure.cometchat.com">here</a>.</p>
<p>Once inside, you need to insert your domain address and your website technology. Because we’re adding CometChat to WordPress, you can look for it from the dropdown menu.</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574942661607_select+wordpress+as+tech.png" alt="Selecting WordPress integration"></p>
<p>After the setup is finished, click on “Manage” and you’ll be taken into CometChat admin panel. From this page, go to <strong>Settings &gt; Install CometChat &gt; Install CometChat on your website</strong>. You’ll find WordPress plugin by scrolling down a bit:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574943525790_install+cometchat.png" alt="CometChat on WordPress menu"></p>
<p>Click on the WordPress tab and download the plugin. By the way, don’t forget to take note of your License Key, API Key and Auth Key from the Api Key menu. You will be required to enter them into your CometChat plugin.</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574945099063_keys.png" alt="Get your keys from the Api Keys menu"></p>
<p>Once the download is finished, head into your WordPress website and login as admin. Upload the plugin through WordPress plugins menu:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574944573619_install+cometchat+to+wp.png" alt></p>
<p>Once installed, activate the plugin and go into its menu. It will ask you for your license key. Once verified, you’ll need to put your API Key and Auth Key:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574945227444_data_signature_wp-1.png" alt="CometChat keys here"></p>
<p>Now you’re ready to use CometChat on WordPress. Create a new site page and name it chat page. You’ll include the shortcode for the chat room into the page:</p>
<pre><code>[cometchat layout='embedded' width='990' height='600']
</code></pre>
<p>Here is a screenshot of my page:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574945391446_2019-11-28+19_49_37-Window.png" alt></p>
<p>Now click on Publish and go to view the page. You should have the chat room ready.</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574947646901_2019-11-28+20_27_09-Window.png" alt></p>
<p>You can test the chat functionalities by opening your website from another browser. With two users, you can try to chat, send files and even do a video call. Easy!</p>
<p>Now that you have the chat page online, you can start making it accessible only by registered members. The rest of this tutorial will help you to disable the chat for guest users and create a paid membership site with WordPress.</p>
<p>This way, only registered users can use the chat page, and in order to register, they need to purchase the site membership. Let’s do it!</p>
<h1 id="makingcometchatapaidfeature">Making CometChat a paid feature</h1>
<p>Since CometChat is a public chat room by default, both registered users and guests are able to access the chat room you have created. You can make the chat room only accessible by registered members.</p>
<p>Go back to CometChat control panel, and click on <strong>Settings &gt; Authentication</strong>. Click on No for the option “Would you like guests to login as well”</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574942675779_disable+cometchat+for+guest.png" alt="Disable CometChat for guests"></p>
<p>Now when you go back to your WordPress site, you’ll see the chat room disabled for guests, but still available for your logged in user:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574952014000_2019-11-28+21_40_06-Window.png" alt="CometChat is disabled for guests"></p>
<p>Now we need to add paid membership system to WordPress. Fortunately, there are lots of free membership plugins that we can use to do just that! I’m going to use <a href="https://simple-membership-plugin.com/">Simple Membership Plugin</a> for this tutorial, and you can try to use another plugin once you understand the concept.</p>
<p>For now, download the plugin or install it directly from your site’s plugin menu.</p>
<p>Once installed, we need to disable registration from WordPress website itself in the <strong>Settings &gt; General</strong> menu. Uncheck the “Membership” option like in the picture below:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574950508920_2019-11-28+21_13_41-Window.png" alt></p>
<p>Now let’s replace it with Simple Membership. To do so, go into the WP Membership settings from your WordPress sidebar and click on <strong>Membership Levels &gt; Add level</strong>.</p>
<p>You need to enter membership level name and the default WordPress role assigned to this member. The default Subscriber role is fine for this example, but feel free to change it to fit your requirement:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574950922006_2019-11-28+21_21_19-Window.png" alt></p>
<p>Now that we have a membership level ready, we need to take care of the payment system. To do so, go to WP Membership &gt; Payments &gt; Create New Button.</p>
<p>You can select between PayPal, Stripe and Braintree payment options.</p>
<p>I will show you how to make a Stripe payment button here. Select <strong>Stripe Buy Now</strong> option and click on <strong>Next</strong>.</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574951536510_2019-11-28+21_31_30-Window.png" alt></p>
<p>All payment options will need you to fill in the Button Title, Membership Level, Payment Amount and Payment Currency. The rest of the options might vary depending on what payment you select, but these four will be the same.</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574951675270_2019-11-28+21_34_04-Window.png" alt></p>
<p>Once finished, you will be taken into the <strong>Manage Payment Buttons</strong> tab, where you can get the shortcode needed to display the payment button in WordPress pages:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574951908915_2019-11-28+21_38_03-Window.png" alt></p>
<p>Grab the button shortcode and go into the Pages tab. Here you’ll see several pages that have been automatically created by Simple Membership. These pages are useful for you to edit as you see fit:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574952448804_2019-11-28+21_46_44-Window.png" alt></p>
<p>For now, we will add the payment button into the Join Us page, so go ahead and edit the page. Inside this page, you can list the benefits of registering on your website and place the payment button below:</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574952647022_2019-11-28+21_50_35-Window.png" alt></p>
<p>To change the text of the payment button, you can use the <code>button_text</code> parameter. I’ve changed mine to <em>“Pay With Stripe $39”</em> but you’re free to not include the parameter at all.</p>
<p>Your WordPress site is now ready to accept payments using the payment button. If you want to test the payment, you can go into <strong>WP Membership &gt; Settings &gt; General Settings</strong> menu and scroll down to the bottom to check the Enable Sandbox Testing option.</p>
<p><img src="https://paper-attachments.dropbox.com/s_DBC6EFCE4B7E6E2FBFE936DCA61F2440F97F7BFA071E6996CA857697116C1BDC_1574952107457_2019-11-28+21_41_20-Window.png" alt></p>
<p>Please keep in mind to turn off the sandbox testing later, because you won’t get any payment if you forget!</p>
<p>You now have a complete WordPress premium chat feature with a paid membership system integrated. Well done!</p>
<h1 id="conclusion">Conclusion</h1>
<p>You’ve just learned how to add CometChat as a premium feature to WordPress site members without any code at all. With this, you’ve saved time and money that you could’ve spent on creating a fully-featured chat plugin from scratch. Your welcome!</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Top 30+ world-famous excellent websites that use WordPress]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>Today WordPress continues to be the most popular tool for building websites and perhaps the most simple and trusted content management system in the world. <a href="https://w3techs.com/technologies/details/cm-wordpress">According to W3Techs Web Technology Surveys</a>, at the moment 35% of sites on the internet use WordPress involving those that don’t use CMS at</p>]]></description><link>https://www.cometchat.com/blog/30-world-famous-excellent-websites-that-use-wordpress/</link><guid isPermaLink="false">5de112cb3e9ed90a202c3249</guid><dc:creator><![CDATA[Diana Maltseva]]></dc:creator><pubDate>Fri, 29 Nov 2019 12:46:35 GMT</pubDate><media:content url="https://www.cometchat.com/blog/content/images/2019/12/50.png" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://www.cometchat.com/blog/content/images/2019/12/50.png" alt="Top 30+ world-famous excellent websites that use WordPress"><p>Today WordPress continues to be the most popular tool for building websites and perhaps the most simple and trusted content management system in the world. <a href="https://w3techs.com/technologies/details/cm-wordpress">According to W3Techs Web Technology Surveys</a>, at the moment 35% of sites on the internet use WordPress involving those that don’t use CMS at all and those that are powered by a custom-built CMS.</p>
<p>A variety of engaging themes, plugins, and elements make WordPress a great solution for website development. E-commerce stores, cross-sectional blogs, news portals, educational institutions, dating services, music platforms, online businesses, and celebrities choose this CMS for its intuitiveness and convenience.</p>
<p>By the way, WP is used by a huge percentage of top-ranked sites. TechJury reports that as of 2019, <a href="https://techjury.net/blog/percentage-of-wordpress-websites/#gref">14.7% of the world’s leading 100 websites are made with WordPress</a>. Well, this unveils myth that WP is may not be good enough for big brands.</p>
<p>Instead, numerous world-famous websites once chose WordPress as the core of their services and managed to design truly excellent products. And some of the names may even surprise you. For this article, we’ve created a list of famous websites using WordPress. See them below and draw inspiration!</p>
<h2 id="30popularwebsitesusingwordpress">30+ Popular websites using WordPress</h2>
<p><strong>1.</strong> <a href="http://www.techcrunch.com/"><strong>TechCrunch</strong></a></p>
<p><img src="https://lh6.googleusercontent.com/aFGT4vVQol06ickmm87IxsfT6iDC7gGjkC9UCd9wA6YJGiS1JBA15Vi70rfqCAixf1qEIkmQv5BAmEmuLxdaRl-Ha3RxDJBFzBFCVr0K-JZqbvl0PMxwWCipci9g10aXjv6I4Dq_" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Founded in 2005, TechCrunch is the world-known US online publishing portal that covers tech topics like technology news, trends, startups, innovative products, funding, and others. The website also presents audio and video sections to engage the audience that prefers these types of content.</p>
<p>As you can see, the menu is pretty simple which scrolls as the user scrolls the page up or down to ensure a high level of convenience. All the elements are built around the content and nothing draws attention away from titles and images. Due to a timeline system, all of the posts are displayed according to their publish time while a grid-like format allows putting an accent to the new ones.</p>
<p>For today, TechCrunch has an Alexa rank of #1,649 which makes it one of the most popular WordPress websites on the internet.</p>
<p><strong>2.</strong> <a href="http://www.newyorker.com/"><strong>The New Yorker</strong></a></p>
<p><img src="https://lh6.googleusercontent.com/-DFC_x4yalU_l04ZhXi8kaaVtLwZJVCvX5Ln_ZPR5dR2gfXQTDPIYkfbaLFG3Lt7FnATTPdS-hnk6vvT6N8qT56Tl3uBFwRGN9dkrIwcKQgRM_-reoz-V82obRLXtcfB8P-QWaSc" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The New Yorker has been one of the most famous magazines in the world for decades. Well, nothing has changed over time. Providing in-depth quality content on a wide range of topics—culture, politics, arts, business, science, poetry, humour, etc.—The New Yorker website is also powered by WordPress.</p>
<p>It is safe to assume that while the New Yorker WordPress admin dashboard will look similar to yours or mine, a lot of changes have been made to the theme to security precautions—for example, you cannot simply sign in by <a href="https://www.newyorker.com/wp-admin.">going to the login page</a>.</p>
<p>Also, this online service employs beautiful fonts for titles and quality images of different sizes to add creativity. High usability and user-friendly interface are those things that make this online magazine one of the top-ranked websites in the world. Currently, The New Yorker has an Alexa rank of #2,605.</p>
<p><strong>3.</strong> <a href="http://www.bbcamerica.com/"><strong>BBC America</strong></a></p>
<p><img src="https://lh3.googleusercontent.com/rJMxu_zJxVROQwuCNz95FPxAPj1FO96Vv4TTTZHhrnJ0JpRVs3psHUIC_CmWrnNKaOTlhXOCnTAZBfGuydhtgFIp2RYjdhzU6AP2SBsBIu05WWMcMNAySudTUXWCBfhvoYK7vJuv" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Having been founded in 1998, BBC America is a large US pay television network that operates as a commercial-supported channel. As of September 2018, the service was available to approximately 80.9 million television households in the United States.</p>
<p>Providing the best of entertainment, BBC America comprises TV shows of various genres like natural history, movies, awards, science, and drama.</p>
<p>Intuitive navigation, simple menu, plenty of quality images, well-designed structure, and in-depth theme are the key elements of this amazing platform. The portal is truly multifaceted and offers a wide range of content types so that everyone can choose what he or she likes while the schedule enables to easily find the desired information.</p>
<p>As of November 2019, BBC America is ranked #18,578 by Alexa which makes it one of the 20,000 most popular WordPress websites on the internet.</p>
<p><strong>4.</strong> <a href="https://www.rackspace.com/"><strong>Rackspace</strong></a></p>
<p><img src="https://lh3.googleusercontent.com/q6WM7veN86JiktAhfsNsNUKDwsD0q1ofmE5h2x4q5mDZpOeDhlOKapYHpKjwJN-ZaV-o2J2_Q8DJ2TXFjHvs9authBClJIQBcfmPg_2n0ZxjcrDHKrgqffnHM1Hyk2r2K5JWIzRz" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Established in 1998, Rackspace is the US managed cloud computing company that has offices in the UK, Germany, Australia, Switzerland, Hong Kong, and Mexico. As of 2014, the organization’s revenue is $1.794 billion.</p>
<p>The company’s website was created using WordPress among other technologies. Having a great UI and UX design, it provides an intuitive user interface. With a simple structure and convenient navigation, the user can easily find the necessary information.</p>
<p>Being our customer and the user of <a href="https://www.cometchat.com/">CometChat</a>, Rackspace has one of the most popular WordPress websites on the internet. Today, it has an Alexa rank of #2,384.</p>
<p><strong>5.</strong> <a href="http://variety.com/"><strong>Variety</strong></a> ****</p>
<p><img src="https://lh3.googleusercontent.com/BvuQJOa0butVlMqtIZiaad3JcV4Fu4VxchWbo3P8x4dFH0t3USEIhno3On36ZgEDJqulUePeKXROG9r008wNat-jncQzWhAIw2zwWONRkDdgglwh_kdASNrAvys9gDAotRA-fwMa" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Variety is an American media company and perhaps one of the most trusted sources of entertainment business news. It was founded in 1908 as a weekly newspaper. On the official website, now Variety also provides text, audio, and video content on numerous topics (tech, film, music, lifestyle, etc.) on the internet.</p>
<p>With an Alexa rank #2,163, the organization has one of the most famous WordPress websites globally.</p>
<p><strong>6.</strong> <a href="http://www.starwars.com/news"><strong>The Official Star Wars Blog</strong></a></p>
<p><img src="https://lh3.googleusercontent.com/jRmCt0PcB2pN1EqcbkYTWZ-ud5h_0JQbdzZWJOKUQuvSO6fX3NHO_nTQhUQnLP8ThdpoyvXbYs_rfHY1H3U8NAZwJMIIrN-SjS18JZtlcyl4k4bHqY1ACOTpCVX_NLXtS85zl6-P" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The official War Stars blog is an amazing website for movie fans. Having a branded theme and engaging design, it offers various content types such as news, series, films, information about apps and games, and more. This web portal has an Alexa rank of #19,225 which automatically includes it in the list of 20,000 leading sites worldwide.</p>
<p><strong>7.</strong> <a href="http://www.sonymusic.com/"><strong>Sony Music</strong></a> ****</p>
<p><img src="https://lh5.googleusercontent.com/PZ8BeypzzmSxnVDr3-ltvzmznR73suqWX4VDhfohE3OeUjpGHoohRZJWSf4wJq_cW1b1SNHPKx9nDG3N1XNRQI6erWczQX5ghD-ub2yKZ8oSdpUwEkiCd5agW3vk99ZbxXQEaHnJ" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Owned by Sony Corporation of America, Sony Music Entertainment (SME), or simply Sony Music, is a world-famous American music conglomerate. Built with WordPress, the company’s website is a news aggregator covering the music industry: singers, album releases, announcements, and a lot more. Each post is dated with the latest publications on top of the page. The portal also provides a page of featured artists with links back to their official sites.</p>
<p>As of November 2019, Sony Music website has an Alexa rank #148,037 which proves that it’s an engaging news service.</p>
<p><strong>8.</strong> <a href="https://news.microsoft.com/"><strong>Microsoft News Center</strong></a></p>
<p><img src="https://lh3.googleusercontent.com/UV7HQG_keri7WFX-ynsKaMN7NUKzCGZFkuH01TFTGCi5JWEu9WCAocqGV-z5Xwtz0jew1za2FShaFCIG-MyL25yc9IO_NNhli-6HNWzIf4NWdKXK4tZu420fzJysLFP18jbOi8KY" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Microsoft News (formerly known as MSN News and Bing News) is an online news portal featuring news articles about tech, money, politics, sports, entertainment, and many other topics. Providing search filters, notifications about news, and a wide range of topics, it enables users to instantly find the desired information.</p>
<p>A clear structure and convenient navigation help this great WordPress website to be ranked #31 by Alexa.</p>
<p><strong>9.</strong> <a href="http://blog.us.playstation.com/"><strong>PlayStation.Blog</strong></a> ****</p>
<p><img src="https://lh4.googleusercontent.com/SAMPLtscPqc_7SJPQJpWoY90fkmnPGcfv_C8TbS7N6wu8Y-MXBRVu5izyIC_lnkY8mlchVOmaV2ltcb0Jft0mKdUteKi_mS0V4ABg4sbd7yVECI7J9xBnnJtQFwkxHG5p15dxzbi" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>PlayStation Blog is an entertainment and media entertainment center that provides awesome user experience using text, image, and video content. Packed with a variety of videos and news articles, the portal is one of the most famous websites using WordPress. In global internet engagement, it ranks #575.</p>
<p><a href="https://www.wired.com/"><strong>10. Wired</strong></a></p>
<p><img src="https://lh5.googleusercontent.com/YEttN--F3pjC9CMiuCqbVObGK7iHwMxTr3D5Hmt4gMwC_V3bACustbmaDqkPv0ZQtMUnZvJmb6XTgCyM7wvWhRYz6vs-DFT8eDDE9JYMveabPipG5pC_lMz-OC8mi8c7YbRwgyG1" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Being a monthly American magazine, Wired reports about emerging technologies and their impact on our world. It also covers topics such as culture, science, security, business, transportation, etc. The Wired.com site was created in 1994 and uses WP among other technologies.</p>
<p>For today, it has an Alexa rank of #1,548 which automatically includes it in the most popular websites that use WordPress.</p>
<p><strong>11.</strong> <a href="http://snoopdogg.com/"><strong>Snoop Dogg</strong></a></p>
<p><img src="https://lh5.googleusercontent.com/z6kaWwQZno8ZacNYrFMkQYgXWl-Zca5-bI0AVWdMp-BJGPY86PF4hZJ_Olf_AXBtKSC3b1EP432R_kw1ISWBAFWQXGxuTU8j65STI_deAgA7uHO5Ba6mdWYCq5CypPsnQqnbfZPu" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Websites that are centered around celebrities are often based on WordPress. The site dedicated to Snoop Dogg is not an exception. It showcases video and audio content, information about tours, announcements, and photos dedicated to this music star.</p>
<p>What’s more, a large photo of Snoop Dogg is placed on the landing page with multiple links on celebrity’s social media pages. The website is ranked #501,010 by Alexa.</p>
<p><strong>12.</strong> <a href="https://www.gsu.edu/"><strong>Georgia State University</strong></a></p>
<p><img src="https://lh6.googleusercontent.com/ezDKjhZ2qKuIHtGENw09LtwgAVv2joCFaHDbZE9zANUK9X-E2P2milTB6yJ2UHndCMQCX-0agc7eOakV89noAPLnR4i8yS-IoeeP9mHJDjWM1wN_LJlqx4aS97L9aoEvLXlCkQ2N" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Georgia State is one of the largest and most prestigious universities in America. According to the WordPress showcase, gsu.edu is a single multi-site hosting over 150 sites. The website has a well-organized structure which allows its users to quickly and easily find the necessary information. Being one of the most popular WP websites, it ranks #5,725 in global internet engagement.</p>
<p><strong>13.</strong> <a href="http://qz.com/"><strong>Quartz</strong></a></p>
<p><img src="https://lh5.googleusercontent.com/r3EuWoJgnr0_DIc0c3gezpb0mv1SoZPdnEej08YVkBqIPaD4P9-QfZZlsUqD1yNVie56MdJivRGd8S0fB0gXNDkcorN7JZkUPUNJg9qtzwzD8YYdg56asefJjK6s3OHhbHRnSZv_" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Launched in 2012, Quartz is a business organization and online news portal that reports business news and covers every aspect of the new global economy. 60% of the site visitors access it via their smartphones and 45% of the users are outside the United States. As the site is fully adaptive, it naturally looks of different types of devices.</p>
<p>Focusing on digital storytelling, it makes engaging content which is complemented by beautiful custom images, high-resolution photos, readable fonts, nice typography, and clear structure. Thanks to this, the website meets the needs and preferences of the modern audience.</p>
<p>The Quartz.com WP-based website ranks #2,643 In global internet traffic and engagement and #978 in the USA.</p>
<p><strong>14.</strong> <a href="https://blog.ted.com/"><strong>TED Blog</strong></a> ****</p>
<p><img src="https://lh4.googleusercontent.com/fs6R2QGjEPYzNog-dAG34p_GW9sVbAZ45VDivFNowIqgP-OeGo6nKgSmgIYOSEWBpVBURSAqOuPJ1c17DtjTJ500LZKfe5fddwEq-jvGC_bGd3LI-szwTdTgw7gFzHoYjD1rs9rd" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Launched in 1984, TED Conferences LLC is an American media company that publishes talks on a variety of inspiring talks under the slogan &quot;ideas worth spreading&quot;. Speakers share their experiences, thoughts, and ideas regarding culture, politics, tech, science, self-development, and other topics that are available online.</p>
<p>TED.com is another world-famous website that is based on WordPress CMS. Multiple filters, columns with the most popular and the most shared posts, extensive footer, a full-screen image on the top of the main page, archives, and other elements compose this service. What’s important, nothing draws attention from the content while modern design and high usability force users to stay on the website.</p>
<p>With an Alexa rank #999, TED.com is one of the most popular websites that use WordPress.</p>
<p><strong>15.</strong> <a href="https://sweden.se/"><strong>Sweden’s Official Website</strong></a></p>
<p><img src="https://lh4.googleusercontent.com/ytA98H7JV8xPw-0ID2oeCx02in2UNC8JqJ3BGKiwLAEkL_U_RXMOFLxd4wm15-Vv0Asqla2fHKlC4AWa-fOtq-8TNmiU9-Wfgy8TdA_1G7ROwgdeVLX1mxCcyUVSOqQVii46pyKb" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Sweden.se is an official website dedicated to Sweden. Providing different a variety of facts about the country, it is created and managed by the Swedish Institute, the company that distributes information about Sweden and promotes its interests around the globe.</p>
<p>The site publishes articles about business, innovation, politics, culture, nature, famous people, lifestyle, work, migration, and more. With several bright colors associated with the country’s flag, the organization created a great branding theme.</p>
<p>Powered by WordPress, this website has an Alexa rank of #83,718.</p>
<p><strong>16.</strong> <a href="https://www.boingo.com/"><strong>Boingo</strong></a></p>
<p><img src="https://lh3.googleusercontent.com/526sYvcGNrxfXBu8-gX-burnIMH61_l-rCq9lz2wDhw0bXd7SakuAKuAez9sEnu7bPpAhUkhqZ03FI6KS0sHguGYP8qR2thAizfE6cdXEsSRP3uTI4JUaDh-x6bh45pCYx1IFNzW" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Boingo is an American provider of Wi-Fi services, Wi-Fi products, and high-speed internet. According to the company’s reports, Wi-Fi access enabled by is consumed by over 1 billion users annually.</p>
<p>Having received awards like “The Best Wi-Fi Service, “Best Wi-Fi Network Operator”, and “Most Innovative Wireless Service”, Boingo enables wireless connections in large venues that include airports, stadiums, buildings, educational institutions, and even military bases.</p>
<p>With an Alexa rank #86,285, boingo.com is among the 100,000 most popular WordPress websites.</p>
<p><strong>17.</strong> <a href="http://blogs.reuters.com/us/"><strong>Reuters Blogs</strong></a> ****</p>
<p><img src="https://lh3.googleusercontent.com/Sc5-zBRV20mn0JRTySqVZpTBDMxLyyXGBuw6We_M8yIy2bsabCo_50rhtp8IBoF2Oz5-DK7VaLJsieFg2M86UKLvs6cYc4V39YemzmxhU9NRh9z_UIeSFCI96f79DtV0Tv_gcWca" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Reuters is the largest global provider of multimedia news that reaches over 1 billion users every day that is owned by Thomson Reuters. Founded in 1851, this service reports news on a wide range of life spheres and topics that involve tech, market, wealth, business, politics, sports, entertainment, innovations, etc.</p>
<p>Having 17 editions, the service provides a business design theme, convenient content structure, search, video and image content, and simple navigation. It also displays the time of each publication. According to Alexa, Reuters.com ranks #488 which makes it one of the most engaging and popular WordPress websites on the internet.</p>
<p><strong>18.</strong> <a href="https://fortune.com/"><strong>Fortune Magazine</strong></a></p>
<p><img src="https://lh5.googleusercontent.com/sywNXHTkZIqMjhl2EFojYOq5UOxXhcReAtyn3d-oeMnXO_F2b3JMsE-X7kXDsEcmvRVHKFGwn62qTtPcD3lBrHO3UbX5yQx0njN0AhZCmpbPr_PRgSBT5s8uBYErEfubQhKYkAlj" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Fortune an international media organization and a world-famous business magazine that was founded in 1929 by Henry Luce. This news portal constantly publishes ranked lists like “Businessperson of the Year”, “100 Best Companies to Work For”, “100 Fastest Growing Companies”, “Fortune 500”, “Fortune 1000”, and many others.</p>
<p>The platform is full of rich content—news, insights, ratings—covering tech, economics, politics, entertainment, future and past conferences, and so on. A high emphasis is made on large and quality images and user-friendly design.</p>
<p>Powered by WordPress, Fortune.com has an Alexa rank of #6,534.</p>
<p><strong>19.</strong> <a href="https://thenextweb.com/"><strong>The Next Web</strong></a> ****</p>
<p><img src="https://lh3.googleusercontent.com/gGDENtubJlHz5htrd0IEVfmwYR00VNvyMxccHWqSsofTOTLrrOLDvFSjQphlvKwrqenHPWYk0tikuoGiucfPQUaXHLB8a2xHGvsHvfxlik2OI1nn0Y32SH0I_uMyduPwNF3M6fiB" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The Next Web, or simply TNW, is a popular website and annual series of conferences powered by WordPress. TNW includes news and insights into the tech world, the impact of technologies on our lives, and tech predictions.</p>
<p>Being a user-friendly website with cool design, it fully meets the needs of the modern web. There are plenty of images of different sizes, posts displayed in a grid, bright colours, convenient menu, and other elements that ensure great user experience.</p>
<p>According to Alexa, this WP-based website ranks #5,761.</p>
<p><strong>20.</strong> <a href="http://blog.mozilla.org/"><strong>The Mozilla Blog</strong></a></p>
<p><img src="https://lh5.googleusercontent.com/YgARACn5YrvzPEKUJLcLA71hz3ApiAZNGMXKI2L6ozpkrnZObI9TwAIRL1dJgiVZVEoSqj-xtK87D7lltF--UQajSRJ9niPBJ7Jm3fSBkCn-U3C3U0jG1LniXz80Hrc21zgqR5z1" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The Mozilla Blog is one of the most famous blogs on the internet. Dedicated to Mozilla, it includes news, press releases, articles about Firefox, general information, etc. The content is displayed with the help of the grid, images, publishing dates, and pagination. Besides text, content creators and publishers use GIFs, branded images, diagrams, videos, and more.</p>
<p>As of November 2019, the blog has an Alexa rank of #260.</p>
<p><strong>21.</strong> <a href="https://maraphones.com/"><strong>Mara Group</strong></a></p>
<p><img src="https://lh6.googleusercontent.com/t5vUZSOutMrEn5Fs-kAa3bu9FAW53u9PsWvmqUE8Yu7zFAEQz0hq77zMYqCW_u4MMtkCGBXjXAXafMixc_W9v8J850CGielI9RAmcfHYpVL8QUULUozKlL6TWC9dPzxGVPheoolU" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Mara is a Pan-African company that operates in technology, financial services, real estate, and manufacturing industries. Founded in 1996, now it employs over 11,000 workers. The organization is active in 24 countries with 22 in Africa.</p>
<p>Being one of <a href="https://www.cometchat.com/customers">our most famous clients</a>, Mara Group is an e-commerce website. A great modern website with multiple interactive elements and large high-resolution images help ensure seamless user experience. Product gallery, comparison tables, live chat, cart—everything customers need to search, choose, and buy.</p>
<p>Having an Alexa rank of #273,163, maraphones.com is one of the most popular websites using WordPress.</p>
<p><strong>22.</strong> <a href="https://startupweekend.org/"><strong>Startup Weekend</strong></a> ****</p>
<p><img src="https://lh3.googleusercontent.com/kx8lXwDF8HJuKd_cXhuhQbte2r6jQ68EacV_PeyPBoJslX_MRC1XieLzKN93TdkSy_Cs9W6E1uQsTznu9SER03n89QAvDU5cKsf_2jvXqtEv-kLXXUKfmnURN73bMIKKFv7do2Ue" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Established in 2006, Startup Weekend is a part of the Techstars Community Programs. Helping entrepreneurs and aspiring businessmen find startup ideas and start a company, the service provides educational and networking opportunities. By now, it has already held over 5,000 events in more than 1,475 cities.</p>
<p>The website has a user-friendly sophisticated design and includes a lot of information about events. With a search field and filters by location, map, and edition/theme, it allows users to instantly find all the events in the required city/country including all the necessary details.</p>
<p>Being ranked #246,930 by Alexa in global internet engagement, Startupweekend.org is one of the 250,000 most popular WordPress websites.</p>
<p><strong>23.</strong> <a href="https://thewaltdisneycompany.com/"><strong>The Walt Disney Company</strong></a> ****</p>
<p><img src="https://lh5.googleusercontent.com/X2-RS_TyQ1tP4eQrhnkwN5bhdQdQLViJ_bfgcnWRasjLFbCxEFkoKzePrlkntpa-XiA1zwHnxaaQLHpHnfCpXvz6c2CO6ZOEK67XPi3n44IAXqqnw1W8nzDednn5ahs9JGJ_NDNb" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The Walt Disney Company is an American mass media and entertainment conglomerate that was founded in 1923. Being a global leader in the industry, the organization has revenue of about $70 billion.</p>
<p>Like many other popular sites, the Disney’s is also powered by WP. Providing simple navigation, beautiful user interface, and numerous great photos and images with many of them taken from cartoons and movies, it offers an amazing user experience.</p>
<p>With a global Alexa rank of #45,964, it is one of the most famous WordPress websites.</p>
<p><strong>24.</strong> <a href="http://www.rollingstones.com/"><strong>The Rolling Stones</strong></a></p>
<p><img src="https://lh6.googleusercontent.com/2QARIqQPgp77iP6QTush_oTkqaolhboMtUNYVIJ7YsSmVcOvSype9o2EuRjTwHnLkfOBqcXH9CfbxvZFmMvbNQY57863L2yG-OHRDHB-6wIOm3dcNiZaiepNP7AzfAiznsl0O8Jb" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The website is fully dedicated to The Rolling Stones, a cult English rock band. With colorful flashy design and glaring images, it provides users with video, audio, and text content. Furthermore, due to the online store, fans can buy a wide range of products associated with The Rolling Stones: music (CD, vinyl, digital, etc.), clothes, accessories, books, and other things.</p>
<p>At the moment, the website has an Alexa rank #245,227 in global internet engagement.</p>
<p><strong>25.</strong> <a href="https://problogger.com/"><strong>ProBlogger</strong></a></p>
<p><img src="https://lh3.googleusercontent.com/UmiIn8gJ52wwNnawGldj55_H5EkpyJlGb573qYGpLFNj6eKUMUHeFsdmgTJ_8tBDjkNtd8m3XbZupthCJ0gPdthS6_Xe_Rs1Zw_4G8YXluTJNz60BjK_kU0pj9LMAIAd3dPp9ofk" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The ProBlogger.net blog was created by Darren Rowse, a popular blogger, speaker, consultant, and owner of several blogs and blog networks. Founded in 2004, the website offers thousands of articles and other educational content such as tips, tutorials, podcasts, eBooks, and case studies.</p>
<p>Being centered around content and providing an intuitive interface, it enables users to subscribe, comment, and even find the work through the platform.</p>
<p>ProBlogger.net is ranked #23,336 by Alexa which proves that the website is very popular on the internet.</p>
<p><strong>26.</strong> <a href="http://news.harvard.edu/gazette/"><strong>Harvard Gazette Online</strong></a></p>
<p><img src="https://lh3.googleusercontent.com/L1RAxP-Q-1iASfw35A-hBnuVDTJuyIQmidZUG8m055dHNBcqN0-bumvuITxaTWLvZq5jhp6crbbBy0w5vsPrrz_zJjpmT8Gc5jUX5epkyZVdZT574VZc0UJXiXHM28pTvzZyTUU0" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The Harvard Gazette is the official news portal of Harvard University that covers university policies, important announcements, national and world affairs, science and technology innovations, educational issues, and national concerns as well.</p>
<p>With a branded design theme, simple menu and navigation, quality images, and fonts, the website provides a high level of convenience and readability. The Harvard Gazette has an Alexa rank of #783 in global Internet engagement and of#304 in the USA.</p>
<p><strong>27.</strong> <a href="https://www.007.com/"><strong>The Official James Bond 007 Website</strong></a></p>
<p><img src="https://lh6.googleusercontent.com/TeX7MwmrL8zhQrWuRb_ci4CxI8OXaCRI79fQHdiUGQbUdOFK5TCevMK820hWz5--xtW_eSFmxJDZ2cSnwUEFxKDFlEaPlQ4yz8IoWHuOfNY17JNj7Abh9tDK1SjbAL-n2lLsdoFw" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The Official James Bond 007 Website is fully dedicated to the famous character. It has a stylish sophisticated design with a lot of white space, images, and elegant theme. Like many brands and celebrities, the website provides an online store with numerous products that can be purchased. All the stories are displayed using a grid with the indication of the publishing date.</p>
<p>Being one of the most famous websites that use WordPress, it has an Alexa rank of #300,250.</p>
<p><strong>28.</strong> <a href="http://www.vogue.in/"><strong>Vogue India</strong></a> ****</p>
<p><img src="https://lh5.googleusercontent.com/Jznw2UXrBw0TL0s_dCgVFNXpjiheAPzFBoAUexbPgQbiyfWml1UvC7mzNUeHnwHiKpcJA_5MkpKLXMgiL2_YzKmleWezsvsZskebe6DxdZRzbNuXDpIGJ53KzWmrGpC2j0lSK3zp" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Vogue India is the Indian edition of Vogue, a world-famous fashion and lifestyle magazine that was created in 1892. Launched in 2007, Vogue India is perhaps the most trusted fashion source in the country covering news on fashion, beauty, trends, Bollywood, wellness, culture, etc.</p>
<p>A lot of white space, numerous beautiful photos and images of different sizes, white background, simple navigation, and other elements make up the website design. Nice fonts and well-structured content increase its readability.</p>
<p>For today, this WordPress website has a global Alexa rank of #29,411.</p>
<p><strong>29.</strong> <a href="https://pulse.target.com/"><strong>Pulse by Target</strong></a> ****</p>
<p><img src="https://lh4.googleusercontent.com/XXTOJjt-qHLVznKxgSsfXbCC5IrEAD8UD_4jOg-We1T2o2UZTWxIIhd64ZKS5RhMBUC3N1ShX2PxMegQsnL_M6R3uoovjVhxa3AcOL-TF105a1XTGY6gswpbTEwlnVLkYeOBlHNG" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Pulse by Target is one of the most popular companies and one of the leading retailers in the USA. The Pulse Blog was established to allow the company’s candidates to find out more information about working at Target.</p>
<p>The website includes content about culture, human resources, stores, technology, events, and much more. The blog has a sophisticated design and includes features like commenting mode, social media sharing, search by keywords and categories, etc.</p>
<p>With an Alexa rank of #361 in global internet engagement and #84 in the USA, Pulse by Target has one of the most famous WordPress websites worldwide.</p>
<p><strong>30.</strong> <a href="http://www.news-sap.com/"><strong>SAP News Center</strong></a> ****</p>
<p><img src="https://lh6.googleusercontent.com/8naELgNu5_Q-SlV_LUrHEdQp0VIfP7-Vl2ghwhNe0j8543yVsuR9IM78ebXjb5AJ9M7XTrb92LixLNqSq2WZV6OLCvYXfTxGBrSJD4T2ghtZ-XWqoBLN25u1I35dGBtEO9TAxot4" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>SAP is a German multinational corporation that specializes in developing and integrating software for business process automation and customer relations’ improvements. The company’s blog, called SAP News Center, publishes press releases, videos, information about events, articles about technologies and innovations, and other content.</p>
<p>According to Alexa, the website ranks #1,292 in global internet engagement.</p>
<p><strong>31.</strong> <a href="https://blog.cpanel.com/"><strong>cPanel Blog</strong></a> ****</p>
<p><img src="https://lh5.googleusercontent.com/G7L5mrG2f1f2Acw4MaoN6Au6fm_Uz3YAShrxKHrWIX_rGzXj76GAWyJaTE-jkAlKdH3euApshddE7Fw3ert_kz1Pu6w7H2cgKd3yybRNjGyQTNwEGimnihb-zokmsFK8E6WtcnDu" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>Established in 1997, cPanel is a privately owned company building cPanel &amp; WHM. Being based on WordPress, the cPanel Blog contains information about employees, events, tips, and products. With an intuitive user interface and high usability, the website provides the ability to easily find the desired content and enjoy reading.</p>
<p>As of November 2019, the website has a global Alexa rank of #52,268.</p>
<p><strong>32.</strong> <a href="http://www.amctv.com/shows/the-walking-dead"><strong>The Walking Dead – AMC</strong></a></p>
<p><img src="https://lh6.googleusercontent.com/f5qe_mCOmBfy1GvpL4ijP5NhQI_5KZIRJhK0bmEEDAgLqPKjSA77z9-RqME3ow5RPmHFnytS9Fiwyab6OVOVwplGwaG5bc0ZCCMgALJTyrgYpTBEtgMEM_XNX-qN4Uhc4_usCBD6" alt="Top 30+ world-famous excellent websites that use WordPress"></p>
<p>The Walking Dead – AMC is a website mainly dedicated to the world-famous TV series. This WordPress-based website offers a lot of entertaining content, from news to episodes that users can watch.</p>
<p>What’s more, it contains a TV schedule, a number of movies, and an online shop. Large-screen images, black-color background, white-color fonts, simple menu, and great user interface make up this beautiful design. Being one of the most popular websites using WordPress, it ranks #18,501 by Alexa.</p>
<h2 id="closingthoughts">Closing thoughts</h2>
<p>There are plenty of advantages of using WordPress for website development. Providing a wide selection of themes, elements, and plugins, it allows businesses to create beautiful responsive designs that ensure seamless user experience and look great on all devices.</p>
<p>No wonder, that WordPress powers 35% of sites on the internet. Today many brands, celebrities, online stores, blogs, popular news portals, fashion and lifestyle magazines, educational institutions, and large-scale companies choose it.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Hand-picked Black Friday / Cyber Monday deals that will save you money]]></title><description><![CDATA[<p>Everyone makes Black Friday deals list, and we thought we would make the same old list this year too. But then someone in the office said: "everyone and their uncle has a BF deals list - you better go big or go home!". So, we decided to GO (CometChat Go,</p>]]></description><link>https://www.cometchat.com/blog/black-friday-and-cyber-monday-deals-2019/</link><guid isPermaLink="false">5de104103e9ed90a202c3222</guid><dc:creator><![CDATA[Amit Thaker]]></dc:creator><pubDate>Fri, 29 Nov 2019 11:47:08 GMT</pubDate><content:encoded><![CDATA[<p>Everyone makes Black Friday deals list, and we thought we would make the same old list this year too. But then someone in the office said: "everyone and their uncle has a BF deals list - you better go big or go home!". So, we decided to GO (CometChat Go, get it? 😉) BIG with this list of lists for Black Friday and Cyber Monday deals.</p><p>But first, let's start with a few quick links to deals for the online entrepreneur in you.</p><ol><li><strong>CometChat Go:</strong> CometChat Go is a social chat tool that gets your users chirpy over chat and face-face on voice/video call on your website. Users can choose to slide into each other's DMs or play in groups with CometChat Go.<br><br>Deal: In 2019, CometChat Go is offering a whopping 50% off for 3 months on all monthly plans and, wait for it, six months free on all annual plans.<br><br>How to get the deal: Use code TGIBF when you sign up to any monthly plan, the annual plan is auto-applied.Deal Page: <a href="https://www.cometchat.com/go/pricing/">https://www.cometchat.com/go/pricing/</a><br>Dates: November 28 - December 3 2019<br><br></li><li><strong>Elegant Themes: </strong>Elegant Themes is a leading theme and plugin company for WordPress enthusiasts.<br><br>Deal: Elegant Themes will be giving out a total of $1,000,000(!) in prizes this Black Friday 2019. Included is the new Mac Pro, free bonus gifts, another cool tech, and software.<br><br>How to get the deal: The deal will be revealed on Black Friday<br><br>Deal Page: <a href="https://www.elegantthemes.com/black-friday-2019/">https://www.elegantthemes.com/black-friday-2019</a><br><br>Dates: November 29 2019<br><br></li><li><strong>OptinMonster:</strong> OptinMonster is a Lead Generation and Conversion Optimization Software That's Both Easy AND Powerful! <br><br>Deal: 35% off on all plans<br><br>How to get the deal: The deal is auto-applied on all purchases.Deal Page: <a href="https://optinmonster.com/pricing/">https://optinmonster.com/pricing/</a><br><br>Dates: November 25 to November 6 December 2019<br></li><li><strong>EngageBay: </strong>EngageBay is a simple, affordable, integrated, all-in-one marketing, sales &amp; service CRM for growing businesses.<br><br>Deal: 40% Recurring Lifetime Discount On All Plans.<br><br>How to get the deal: The deal will be auto-applied on all sign-ups.Deal Page: <a href="https://app.engagebay.com/signup?coupon=40OFF">https://app.engagebay.com/signup?coupon=40OFF</a><br><br>Dates: Deal is live till December 3 2019<br></li><li><strong>Visual Composer:</strong> Visual composer is one of the easiest and largest selling WordPress page builder plugin. You can create web pages as well as complete websites with the help of visual composer. Many people are searching for Visual Composer<br><br>Deal: 40% off on all plans<br><br>How to get the deal: The deal is auto-applied on all purchases.Deal Page: <a href="https://visualcomposer.com/black-friday/">https://visualcomposer.com/black-friday/</a><br><br>Dates: The deal is on till CyberMonday - December 2 2019<br></li></ol><p>These deals were specially curated for you to rock your website and run your business with swag!</p><p>Now let's move on to other lists where there are a ton of deals waiting for you:</p><ul><li><a href="https://wpleaders.com/blackfriday-cybermonday-wordpress-deals/">80 Black Friday Deals on WPLeaders</a></li><li><a href="https://www.codeinwp.com/blog/wordpress-black-friday-cyber-monday-deals/">15+ of the Best WordPress Black Friday Deals in 2019 on codeinwp</a></li><li><a href="https://wpbuilds.com/black-friday-cyber-monday-2019/">Black Friday and Cyber Monday deals on WPBuilds</a></li><li><a href="https://smartslider3.com/blog/black-friday-wordpress-deals/">SmartSlider's Black Friday and Cyber Monday deals' list</a></li><li><a href="https://wpastra.com/blackfriday-cybermonday-wordpress-deals/">WP Astra's Black Friday and Cyber Monday deals list</a></li><li><a href="https://www.wpcrafter.com/black-friday/">WPCrafter's well put together Black Friday and Cyber Monday deal bundles</a></li><li><a href="https://athemes.com/news/black-friday-and-cyber-monday-wordpress-deals-2019/">athemes has Black Friday deals specially focussed on WordPress Themes</a></li><li><a href="https://envato.com/cybermonday/themes/">Envato's Cyber Monday deals</a></li><li><a href="https://www.joomlabeginner.com/blog/opinion/187-joomla-black-friday-deals">JoomlaBeginner has Black Friday deals on Joomla Templates &amp; Extensions</a></li><li><a href="https://www.joomdev.com/blog/entry/joomla-cyber-monday-black-friday-deals">Joomdev's list has Black Friday &amp; Cyber Monday deals that offer upto 90% off</a></li><li><a href="https://blackfridaydealstobuy.com/category/webmastersbloggers-deals/">blackfridaydealstobuy has some interesting Black Friday deals for website owners</a></li></ul><p>Phew, going through each of these deals is going to be like binge-watching your favorite show, but this will save you bucks and help you grow your business.</p><p>Now sit back and let these deals do the work for your online business, and I will see you again next year.</p>]]></content:encoded></item><item><title><![CDATA[Announcing the new CometChat]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p><img src="https://paper-attachments.dropbox.com/s_F261DD55C9D690F3E1E091BF38910735CD948FF8BFC41801B5B7BC6E359CEDD7_1574959191832_image.png" alt="The new CometChat homepage"></p>
<p>We are <a href="https://www.cometchat.com/">CometChat ☄️</a>, a TechStars Boulder 2019 alumni on a mission to make adding any chat experience you can imagine to your new or existing app as simple as possible, but not simpler. We power around 10 million conversations a month and so while you may not have heard of</p>]]></description><link>https://www.cometchat.com/blog/announcing-the-new-cometchat/</link><guid isPermaLink="false">5ddffb2e3e9ed90a202c3204</guid><dc:creator><![CDATA[Alex Booker]]></dc:creator><pubDate>Thu, 28 Nov 2019 16:54:25 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p><img src="https://paper-attachments.dropbox.com/s_F261DD55C9D690F3E1E091BF38910735CD948FF8BFC41801B5B7BC6E359CEDD7_1574959191832_image.png" alt="The new CometChat homepage"></p>
<p>We are <a href="https://www.cometchat.com/">CometChat ☄️</a>, a TechStars Boulder 2019 alumni on a mission to make adding any chat experience you can imagine to your new or existing app as simple as possible, but not simpler. We power around 10 million conversations a month and so while you may not have heard of us, there is a good chance you have sent a message through our platform.</p>
<p>This year, we decided to invest the time and energy to completely rebuild our brand. We had several demands of our new branding. We wanted it to reflect our updated goals and ambitions, showing in its style and writing the progression we’ve made over the past years. And at the same time, it had to be ready for the years to come, in which we're still looking to expand and accomplish so much more. Oh, and because our CometChat Pro product is a developer tool, it had to have a lovely dark theme.</p>
<h2 id="pro">Pro</h2>
<p><img src="https://paper-attachments.dropbox.com/s_F261DD55C9D690F3E1E091BF38910735CD948FF8BFC41801B5B7BC6E359CEDD7_1574959208380_image.png" alt></p>
<p>CometChat Pro is an innovative developer platform. We provide intuitive chat SDKs for iOS, Android, and JavaScript (which can all talk together, making cross-platform chat a breeze). What makes us special is our <a href="https://cometchat.com/tutorials">best-in-class tutorials</a>, open source examples, support, and our clever extensions platform which I’ll touch on in a moment.</p>
<p>You can think about Pro a bit like a lego set. You need to exercise your creativity and developer skills to build an exceptional chat experience, but we give you all the fundamental blocks. Bringing the analogy back to code, these blocks look like functions and events like <code>sendMessage</code> and <code>onNewMessage</code>.</p>
<p>What makes CometChat unique is extensions. When coding a chat app with CometChat, you start by connecting to our cloud-hosted platform before coding out the basics which might include group chat, user presence, read indicators, maybe even some moderation features! You’ll likely then realise your chat can benefit from other features like push notifications, email notifications (<a href="https://www.cometchat.com/blog/chat-push-notification-deliverability/">in case the user hasn’t opted-in to push notifications</a>), link previews, thumbnails, automatic image moderation, and more. We have innovative, exceptionally simple extensions for all of those use-cases and more and there are more coming:</p>
<p><img src="https://paper-attachments.dropbox.com/s_F261DD55C9D690F3E1E091BF38910735CD948FF8BFC41801B5B7BC6E359CEDD7_1574959534839_image.png" alt></p>
<p>As developers ourselves, we know what it feels like to get frustrated with difficult-to-navigate documentation, example code that doesn’t even run and painfully verbose YouTube videos. Hence, we founded a subteam of tutorial writers with the sole aim of showing you how to be as productive as possible with CometChat Pro. Because our SDKs are cross-platform, we code our open-source examples (which all have tutorials) to work together across platforms too:</p>
<!--kg-card-end: markdown--><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/Vue.png" width="2388" height="1626"></div><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/iOS.png" width="989" height="585"></div></div></div><figcaption>Cross-platform chat is a breeze. Vue one-on-one chat application (left) allowing usrs to chat with an iOS user on the right.</figcaption></figure><!--kg-card-begin: markdown--><h2 id="go">Go</h2>
<p><img src="https://paper-attachments.dropbox.com/s_F261DD55C9D690F3E1E091BF38910735CD948FF8BFC41801B5B7BC6E359CEDD7_1574959220754_image.png" alt></p>
<p>Turns out, writing code is not the only way to build a product or business. Also, just because you can write code, doesn’t necessarily mean you should. It may be quicker to prove your concept without code.</p>
<p>Our CometChat Go product is a chat plugin which enables you to add a chat room to any website without code. Moreover, you can connect this chat room with your current user management system to enable users to chat together on a one-on-one basis.</p>
<p>If CometChat Pro is a set of small lego, CometChat Go is a big fat block. You can change the colour, put your brand on it, even connect it with your current user management system allowing only logged-in or premium users to chat, but what you gain in speed, you substitute in flexibility. The good news? It is fast to implement and suitable for many applications. Once you have more demanding requirements, you can look at coding (or hiring a coder to build) the ultimate chat experience with CometChat Pro. Due to our evolution, these products run independently but in the near future we will be offering one, unified platform which is something for any Go user to look forward to as it means CometChat Go can benefit from the work we’ve been doing on extensions, and more.</p>
<h2 id="thenewcometchat">The new CometChat</h2>
<p>CometChat was founded over ten years ago in bustling Mumbai where, at the time, there was no start-up community to speak of. Fast forward to today and despite the odds, CometChat is now based in Boulder, Colorado and trusted by 50,000+ customers around the world. If you are building a chat feature now or in the future, I hope you consider one of our products.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Why your chat notifications might go undelivered, and what you can do about it]]></title><description><![CDATA[The average deliver rate for push notifications is between 14% and 48%. Read why notifications go undelivered and what you can do.]]></description><link>https://www.cometchat.com/blog/chat-push-notification-deliverability/</link><guid isPermaLink="false">5dd7db3a3e9ed90a202c316b</guid><dc:creator><![CDATA[Alex Booker]]></dc:creator><pubDate>Fri, 22 Nov 2019 13:31:55 GMT</pubDate><media:content url="https://www.cometchat.com/blog/content/images/2019/11/cometchat_banner_grey.png" medium="image"/><content:encoded><![CDATA[<img src="https://www.cometchat.com/blog/content/images/2019/11/cometchat_banner_grey.png" alt="Why your chat notifications might go undelivered, and what you can do about it"><p>In the early two-thousands when 3G was on the rise and mobile devices like the Motorola A830 and the Nokia 3310 reigned supreme, a lesser-known Canadian parent company called Research in Motion was working on a communication interface for their famous phone line - the BlackBerry. It was there that engineers developed Blackberry Push Email, which in effect, was the first-ever push notifications system.</p><p>Fast forward to 2020, and push notifications are everywhere! Since their conception in 2003, they’ve gone through several phases of evolution in terms of content format, trigger points, and scale. No matter their format though, they’re a necessity for your chat application, but as straight-forward as that may seem, many variables can influence their successful delivery. </p><p><br>In a recent 2019 report by <a href="https://www.moengage.com/blog/the-push-notifications-delivery-rate-report-is-here/">MoEngage</a> it was revealed that overall the delivery rate for push notifications was in the range of 14 to 48%. </p><p>Chat notifications will often struggle with competition for inbox space and their delivery rates probably fall somewhere in the middle. We've written this short piece to tell you all about the way push notifications work behind the scenes and the elements that influence their delivery. Of course, we've got some great tips to help you increase your success with push notifications for your chat app, as well.</p><h2 id="what-exactly-are-chat-push-notifications">What exactly are chat push notifications?</h2><p>Push notifications are the short pop-up messages that notify you of things in a web browser or an app. Companies mainly use them in campaigns to get the attention back to their product.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.cometchat.com/blog/content/images/2019/11/hii.gif" class="kg-image" alt="Why your chat notifications might go undelivered, and what you can do about it"><figcaption>Imagine if someone misses a business inquiry. It could be a costly missed opportunity if the push notification goes undelivered</figcaption></figure><p>But not all push notifications you send simply reach their destination. In analysing overall delivery rates, MoEngage reported delivery rates between 14% and 48% depending on segmentation like industry and user activity.</p><p>For  companies with engaged users who run  modern devices the delivery rate will likely be higher but MoEngage note that even in good circumstance, sending notifications to active users running iOS 10 or later, the average delivery rate was observed to be only 85% meaning that if you successfully send notifications to 100 users, only around 85 users end up receiving the notification. This number is may even be a little skewed as it would include the millions of WhatsApp, Telegram, and Messenger notifications that are delivered successfully. We have seen results for corporate push notification delivery to be substantially lower.</p><h2 id="how-do-push-notifications-differ-on-android-and-ios">How do push notifications differ on Android and iOS?</h2><p>Android and iOS, together good for 97% of the mobile market, differ substantially on how they allow push notifications. Most importantly, iOS uses an opt-in system while Android uses opt-out.</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/cometchat_screenshot_3.png" width="1200" height="2100" alt="Why your chat notifications might go undelivered, and what you can do about it"></div><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/cometchat_screenshot_4.png" width="1200" height="2100" alt="Why your chat notifications might go undelivered, and what you can do about it"></div></div></div><figcaption>iOS asking you to opt-in (left) and Android opting-you in by default then asking you to opt-out (right)</figcaption></figure><p>The opt-in model which iOS employs doesn't allow brands and apps to send notifications until express permission has given by users to receive them. Android does it the other way around. Their users automatically receive notifications from brands and apps they install, but they can choose to opt-out at any time. An option to opt-out is given as early as on installation though.</p><p>These different approaches give Android apps an advantage in the size of the push-enabled audience they can reach. But it also comes with a risk. Sending too many push notifications, or notifications that are irrelevant or unnecessary will get users to seek out the uninstall button as easily as they'll look for the opt-out option.</p><h2 id="why-push-notifications-are-sometimes-not-delivered">Why push notifications are sometimes not delivered</h2><p>MoEngage analyzed the most important reasons for push notifications not being delivered. For instance, even after your cloud messaging platform (like Google's FCM) has accepted the notification, it will fail to send it to devices that are turned off or not connected to the internet. And there's a couple more surprising factors that influence deliverability.</p><blockquote><em><strong>What is the difference between GCM and FCM?</strong></em><br>You might be wondering about the difference between GCM and FCM as these acronyms often surface together. In short, <em>Google Cloud Messaging (GCM)</em> was a mobile notification service developed by Google that enables third-party application developers to send notification data or information from developer-run servers to applications. It has since been deprecated in favour of Firebase Cloud Messaging (FCM),  which is is the new version of GCM under the Firebase brand. It inherits FCM’s core infrastructure to deliver messages reliably on Android, iOS, and Chrome. The more you know!</blockquote><h3 id="the-user-isn-t-opted-in">The user isn’t opted-in</h3><p>According to<a href="https://clevertap.com/blog/why-push-notifications-go-undelivered-and-what-to-do-about-it/" rel="noreferrer nofollow noopener"> <u>Clevertap</u></a>, the most important reason notifications can't be delivered is users opting out of receiving them on an OS level. Apps and brands on iOS can't send push notifications to users without getting express permission and resulting opt-out rates are very high at 55%.But even on Android, more and more control is given to the user and opt-out rates are around 40%. And these numbers are averages across different kinds of apps and industries. Messaging apps and on-demand apps, for instance, see a higher opt-in rate than average. One of the challenges you'll face is to find a way to get your users to opt-in and then stay opted in.</p><h3 id="manufacturer-related-reasons">Manufacturer-related reasons</h3><p>Clevertap also notes that the phone's manufacturer makes a difference in deliverability. Manufacturers like Oppo and Vivo build their own custom OS on top of Android. These flavours of Android often restrict an app's background network access as part of aggressive battery saving software. Apps that aren't able to connect to the internet are very difficult to deliver notifications to. Other devices like Samsung, Xiaomi, and Motorola have better delivery rates from<a href="https://cdn2.hubspot.net/hubfs/2369873/Push%20Notification%20Delivery%20Report%202019%20-%20MoEngage.pdf?__hstc=&amp;__hssc=&amp;hsCtaTracking=54733f3e-7849-4caa-a292-64e8723469f6%7Cd8c8ffad-e2f3-47a9-b067-42c298e45e7e" rel="noreferrer nofollow noopener"><u> 51% to 55%</u></a>. The same issues arise with third-party battery saving apps which also force stop apps to increase battery life. This poses serious challenges to the delivery of notifications for most apps, especially the ones not frequently used. This is part of the reason why apps that are used more often have higher delivery rates.</p><h3 id="connectivity-issues-with-fcm"><br>Connectivity Issues with FCM</h3><p>Android uses Google's Firebase Cloud Messaging (FCM) to deliver push notifications. To realize this, FCM maintains an idle socket connection from the Android device to Google servers. It is this connection that allows push notifications to be shown on the device. But this socket link can get interrupted. FCM can be unable to deliver a push notification when a user is not connected to the internet. Push notifications come with an expiration date though, known as the Time to Live (TTL). If the device doesn't connect back to internet in time, the notification will expire and remain undelivered. Another known issue happens when an app is uninstalled. Because it takes some time for the registration token to be removed completely from FCM, a notification sent while the removal is being processed can be flagged as valid even though it will not get delivered to the app anymore.</p><h3 id="the-user-s-last-activity"><br>The user’s last activity</h3><p>A user's last activity severely impacts delivery rates. This probably relates to background access being restricted for apps that have not been used recently. MoEngage recorded the highest delivery rates for users who were active in the last 24 hours. More than 80% of notifications were successfully delivered to these users. They also analyzed the user's app behavior prior to successful delivery and found that of the people who received notifications, 73% were active in the past 2 weeks.</p><h3 id="older-android-os-versions"><br>Older Android OS versions</h3><p>The different Android versions have also been seen to impact delivery rates, with the older versions like Lollipop, KitKat, and Jellybean showing lower delivery rates than new versions like Android Nougat and Oreo. Nougat has the highest delivery rate. These differences in delivery rates are the result of battery optimization and a change in the way Android shows notifications after they introduced notification channels.</p><h2 id="what-you-can-do-to-improve-your-delivery-rate">What you can do to improve your delivery rate</h2><p>Now the most important part: what can you do to improve your delivery rate? There are some issues you won't be able to influence, or you'll only be able to nudge your user in the right direction. If they're using a phone with very aggressive battery saving software, you won't be able to get them to buy a new phone that easily. Still, workarounds are available. If your app is used more often, the rate of delivery success of a notification improves noticeably.</p><h3 id="make-sure-your-users-opt-in">Make sure your users opt-in</h3><p>The impact of this one should be pretty clear. If users don't opt-in or eventually opt-out you won't be able to send them any push notifications. It is a good idea to use your design during the app set up to guide your users to opt-in. You'll also want to clearly state why it's advantageous for your user to receive notifications. Marketplaces will want to explain that missing a notification might mean missing a sale. Medical business will want to point out the urgency of the notifications they send. In any case, your users should feel that the notifications they are opting-in for are in their best interest. Check out how Slack and <a href="https://monzo.com/" rel="noreferrer nofollow noopener">Monzo</a> tells their users about what to expect from their notifications.</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/slack.png" width="1200" height="2100" alt="Why your chat notifications might go undelivered, and what you can do about it"></div><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/monzo.png" width="1200" height="2100" alt="Why your chat notifications might go undelivered, and what you can do about it"></div></div></div><figcaption>How Slack (left) and Monzo (right) encourage users to opt-into to push notifications on iOS</figcaption></figure><p>Slack even make it a little less natural to opt-out by putting the exit button in the top-left. Sneaky. </p><p><br>It is even possible to detect when a user hasn't opted-in initially. Facebook Messenger detects when notifications are disabled and shows a little banner at the top. Snapchat does something similar by showing a notification badge next to your Bitmoji:</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/cometchat_screenshot_6.png" width="1200" height="2100" alt="Why your chat notifications might go undelivered, and what you can do about it"></div><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/cometchat_screenshot_5.png" width="1200" height="2100" alt="Why your chat notifications might go undelivered, and what you can do about it"></div></div></div><figcaption>Messenger reminding you to "don't miss messages from your friends. Turn on notification" (left) and Snapchat reminding you "Don't miss any Snaps! Tap to enable notifications" (right)</figcaption></figure><p><br>Another page you can borrow from Messenger is only asking for permission <em>after</em> the user has created an account or logged in. It makes sense that more people will opt in after taking a positive action in your app rather than if you surprise them with notification requests the moment they open your app.</p><h3 id="allow-users-to-configure-which-notifications-they-receive">Allow users to configure which notifications they receive </h3><p>Push notifications can be incredibly useful, but sending the wrong notifications, or annoying users by sending too many of them will result in users opting-out of receiving them entirely. A solution to this is to give your users more control over which notifications they receive, which can help you send only relevant notifications. Doing this will allow them to choose to only receive a certain specific type of alert, rather than opt-out entirely. Dating apps nowadays often give a lot of options concerning push notifications. They let their users choose whether they want to be notified of profile visits, of matches, of received messages, and in addition to those, also allow them to decide whether they want to receive offers for paid plans. We show you how to give your users control over their notifications when coding an Android chat app in<a href="https://www.cometchat.com/tutorials/android-chat-push-notifications/" rel="noreferrer nofollow noopener"> <u>this tutorial</u></a>.</p><h3 id="send-email-notifications"><br>Send email notifications</h3><p>For some businesses, engagement is just an important metric, but for others it's a critical part of their product. Think of marketplaces like Airbnb for example. If one of their hosts misses a message, it directly results in a lost business opportunity. But there is increasing competition for home screen space and many users just outright opt-out of receiving notifications in an attempt to reduce noise. That’s where email chat notifications can help. Sending an email notification about recent chat activity can be incredibly powerful in increasing retention and making sure your users never miss their most important messages. </p><p>We recently partnered with SendGrid to make it easier and more reliable for you to upgrade your product with email notifications. You can learn more about our email notification extension <a href="https://prodocs.cometchat.com/docs/extensions-email-notification">here</a>.</p><h3 id="send-sms-notifications"><br>Send SMS notifications</h3><p>Just like email notifications, SMS notifications are another way to notify your user of missed activity. When building a chat application with CometChat, SMS notifications can be enabled through the <a href="https://prodocs.cometchat.com/docs/extensions-sms-notification">SMS notification extension</a>.</p><h3 id="use-an-app-inbox-as-a-fallback-channel">Use an app inbox as a fallback channel</h3><p>There are even ways to reach the users who have not yet opted in or who have opted out. To reach these users you should use fallback channels like a dedicated app inbox which ensure a 100% delivery rate of push notifications inside of your app. An app inbox is also a great tool for brands when they send messages that need to stay with their users for a longer period of time. They are best suited for cases where you want to encourage users to do something. Think of giving out a discount code that doesn't expire for a gym membership, or information about personalizing screens without too much manual coding, compared to native.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.cometchat.com/blog/content/images/2019/11/image-2.png" class="kg-image" alt="Why your chat notifications might go undelivered, and what you can do about it"><figcaption>A quick search for "app inbox" on Dribbble will yield lots of inspiration</figcaption></figure><h2 id="conclusion">Conclusion</h2><p>Nowadays, you won't find a chat application without push notifications, but only using push notifications doesn't guarantee 100% delivery rates. If you are serious about using notifications to increase retention and engagement, which we highly advise you are, you should also be looking at fallback delivery options like an app inbox, <a href="https://prodocs.cometchat.com/docs/extensions-email-notification">email notifications</a>, or <a href="https://prodocs.cometchat.com/docs/extensions-sms-notification">SMS notifications</a>. Spending some time on designing a compelling user experience can educate and guide your users about push notifications and will increase opt-in rates. Once you've got your deliverability sorted, you can expand the process by considering how many people interact and engage with your push notifications. For more insights on that, follow us on Twitter <a href="https://twitter.com/cometchat">@CometChat</a>.</p>]]></content:encoded></item><item><title><![CDATA["We delivered way more functionality than if we tried to build something from scratch" - Callum from Soona]]></title><description><![CDATA[<p>Building real time chat from scratch is hard. And the team at Soona recognized this from the get go. So it was no surprise when they were able to quickly ship a full-fledged in-app chat solution using CometChat. </p><p>Here is what their team members had to say about us-</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/james_chat_testimonial-3.png" width="525" height="171"></div><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/callum_chat_testimonial-3.png" width="526" height="169"></div></div></div></figure><p>And</p>]]></description><link>https://www.cometchat.com/blog/customer-story-soona/</link><guid isPermaLink="false">5dd332233e9ed90a202c30bb</guid><category><![CDATA[Customer Stories]]></category><category><![CDATA[Founder is typing...]]></category><dc:creator><![CDATA[Anant Garg]]></dc:creator><pubDate>Wed, 20 Nov 2019 00:50:00 GMT</pubDate><content:encoded><![CDATA[<p>Building real time chat from scratch is hard. And the team at Soona recognized this from the get go. So it was no surprise when they were able to quickly ship a full-fledged in-app chat solution using CometChat. </p><p>Here is what their team members had to say about us-</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/james_chat_testimonial-3.png" width="525" height="171"></div><div class="kg-gallery-image"><img src="https://www.cometchat.com/blog/content/images/2019/11/callum_chat_testimonial-3.png" width="526" height="169"></div></div></div></figure><p>And if you're wondering what the final product looks like, without further ado- </p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.cometchat.com/blog/content/images/2019/11/soona_chat.gif" class="kg-image"><figcaption>soona Anytime</figcaption></figure><p>Using CometChat, Soona was able to instantly collect feedback and respond in real-time to their customers' needs. </p><p>Here is what their founder Elizabeth Giorgi had to say about their new chat feature-</p><blockquote>With <a href="https://soona.co/anytime">soona anytime</a>, customers can send us their product and get photos and video clips for less than the price of stock and everything is always delivered in 24 hours. But now, it’s totally powered with real-time chat. So you, as our customer, can chat with our crew in real time while you shop your content.<br><br>Real time chat allows you to chat with one crew member or multiple. One of the best parts of real time chat is being able to give feedback on each and every shot. Here’s how it works:<br><br>When a shot comes in - you can chat with your crew and say: “LOVE THAT. But let’s add more blue props!”<br><br>Or if you just want to give general feedback, you can chat about anything at all. “I know I said let’s shoot in the kitchen, but let’s do green screen instead!”<br><br>Perhaps your shoot is going awesome and you just want to send them a 💖 emoji. You can do that too! 💖💖💖</blockquote><p>Read the full post at: <a href="https://soona.co/blog/2019/11/5/soona-anytime-now-features-real-time-chat">https://soona.co/blog/2019/11/5/soona-anytime-now-features-real-time-chat</a></p>]]></content:encoded></item><item><title><![CDATA[Which CometChat product is right for you?]]></title><description><![CDATA[Choosing between CometChat Go & Pro can be difficult at times. Here is a single question you can ask yourself to help decide which product to use.]]></description><link>https://www.cometchat.com/blog/cometchat-go-vs-pro/</link><guid isPermaLink="false">5dd32da23e9ed90a202c3070</guid><category><![CDATA[Getting Started]]></category><category><![CDATA[Founder is typing...]]></category><dc:creator><![CDATA[Anant Garg]]></dc:creator><pubDate>Tue, 19 Nov 2019 00:01:14 GMT</pubDate><content:encoded><![CDATA[<p>If you're deciding between CometChat Go and Pro, I agree, it can be confusing at first. But all you need to do is ask yourself this simple question-</p><blockquote>What platform am I looking to add CometChat on?</blockquote><h3 id="thinking-of-a-software">Thinking of a software?</h3><p>If the first thing that comes to your mind is WordPress, BuddyPress, SocialEngine, Ning or any other software platform, then you should use <a href="https://www.cometchat.com/go">CometChat Go</a>.</p><h3 id="thinking-of-a-programming-language-or-framework">Thinking of a programming language or framework?</h3><p>If the first thing that comes to your mind is a <strong>frontend</strong> <strong>framework</strong> like Angular, Vue, React, React Native, Ionic, Cordova or a <strong>client-side</strong> <strong>programming</strong> <strong>language</strong> like Javascript, Swift, Objective C, Java, Kotlin, then you should use <a href="https://www.cometchat.com/pro">CometChat Pro</a>.</p><h3 id="thinking-of-a-backend-technology">Thinking of a backend technology?</h3><p>If the first thing that comes to your mind is a backend framework like Laravel, Codeigniter or technology like PHP, Ruby on Rails, Python, then you should ask yourself which frontend technology are you using? As CometChat runs on your users' frontend (i.e. client-side), it's agnostic to your backend technology. In other words, CometChat supports ALL backend technologies. In almost all cases, your frontend language will be Javascript, and that takes you back to the second option i.e. <a href="https://www.cometchat.com/pro">CometChat Pro</a>.</p><p>Still confused? <a href="https://www.cometchat.com/contact">Get in touch</a> and our team will be happy to help you out.</p>]]></content:encoded></item></channel></rss>