Add Whatsapp Click to Chat button on WordPress without Plugin
35% of the Web Uses WordPress. According to information compiled by W3techs, WordPress enjoys 61.8% market share. The second most popular CMS is Joomla, with 4.7% it is far far behind.
WhatsApp is a fast, simple, secure messaging and calling app available on phones all over the world. In 2014, WhatsApp was acquired by Facebook for $19 billion and is one of the most popular apps in the world today. There are currently more than 2 billion WhatsApp users around the globe and rising (WhatsApp, 2020).
What are the benefits of online chat?
- Optimize conversions
- Reduce service costs and boost efficiency
- Prevent cart abandonment
- Increase customer satisfaction
- Collect customer data
- Gain a competitive advantage
- Makes your business approachable
In this tutorial, I am going to show you How to add Whatsapp Click to Chat button on WordPress Website without a Plugin. Take this easily, Because I have included easy video guidelines and shared code below of this video. So you don’t have to write any code or hire any developer.
Add this code in footer.php
HTML
<div class="whatsapp">
<a href="https://wa.me/01991505652">
<img src="https://cdn-icons-png.flaticon.com/128/6422/6422213.png" alt="Click to Chat">
</a>
</div>
Change image url with your Whatsapp iamge.
Style
<style>
.whatsapp {
position: fixed;
bottom: 0;
right: 0;
width: 100px;
height: 100px;
margin: 15px;
}
</style>


