WhatsHelp Chat Support is an existing WhatsApp Chat plugin in WordPress.
But there doesn’t seem to be a setting to Hide it on certain pages.
For those of you who want to Hide it on some of your web pages, see the following method:
I used the following code to hide WhatsHelp Chat Support.
.page-id-5322 .wHelp-bubble {
display: none;
}
In the code above, .page-id-5322
refers to the page with ID 5322, and .wHelp-bubble
is the class of the WhatsHelp Chat Support button that we want to hide. display: none;
is the CSS property used to hide the element.
You can add this code to your theme’s style.css file or in the WordPress Customizer menu (Appearance > Customize > Additional CSS).
Good luck! 😊