Today we will see how we can add a WhatsApp chat button to the website If you have a WordPress website, you can add a WhatsApp chat by adding a plugin Even if your website is not built-in in WordPress, you may be tempted to add a WhatsApp button, so let’s learn how to put a WordPress chat button in this blog today. I think let me teach you to step by step. You will see this blog and add a WhatsApp chat button to your website
How To Add WhatsApp Chat Button To WordPress Website?
How to add the WhatsApp chat button to the WordPress website is shown step by step.
Step1:- Install Chaty Plugin on your Website.
Step2:- Select the WhatsApp icon and Enter Your WhatsApp Number then scroll this page and click the Save Changes button.
Step3:- Done
How to do WhatsApp chat button on the Custom website?
Below is a tutorial on how to add a button to a custom website. First of all, you have to href you add your WhatsApp number by adding https://wa.me/ in its hope to have target = “_ blank” so you may have come up with the idea after seeing this blog
<a href="https://wa.me/+911234567890" target="_blank">
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
Whatsapp chat Button
</title>
<style type="text/css">
.classwp{
position: fixed;
bottom: 100px;
right: 20px;
z-index: 100000000;
}
</style>
</head>
<body>
<div class="classwp">
<a href="https://wa.me/+911234567890" target="_blank"> <img src="http://www.myprograming.com/wp-content/uploads/2021/07/wp.png" width="50px"></a>
</div>
</body>
</html>