seramo
Forum Replies Created
-
Forum: Reviews
In reply to: [Simple Chat Button] html in descriptionHi @eghasimi
This item will be checked and if there is no security problem, it will be changed in the next version
Forum: Plugins
In reply to: [Simple Chat Button] Similar click to call plugin?Hi @ricaneaga
This item may be added in the future or a separate plugin may be written for itForum: Plugins
In reply to: [Simple Chat Button] reduse the size of buttonHi @xabdu
You can use CSS to change the style
#simple-chat-button--button { transform: scale(0.8); }This item may be added in future versions
Thanks for your supportForum: Plugins
In reply to: [Simple Chat Button] Link to whatsapp app on desktop instead of web?Hi @ricaneaga
Added option to choose whatsapp web, api or desktop app version for desktop mode
Download the latest version (Version 1.5.0) and check again
Forum: Plugins
In reply to: [Simple Chat Button] Links do not have a discernible nameHi @ricaneaga
Download the latest version (Version 1.5.0) and check again
Forum: Plugins
In reply to: [Simple Chat Button] Link to whatsapp app on desktop instead of web?Hello @ricaneaga
I am currently working on various projects
This along with other features will be added soonThank you for your patience
Forum: Plugins
In reply to: [Simple Chat Button] Link to whatsapp app on desktop instead of web?Thanks for your kindness
Forum: Plugins
In reply to: [Simple Chat Button] Links do not have a discernible nameHi @ricaneaga
I will check the issue and if a solution is found, it will be fixed in the new versions
Forum: Plugins
In reply to: [Simple Chat Button] Link to whatsapp app on desktop instead of web?Hi @ricaneaga
This item was changed to the web version due to a problem in some countries
and it created a problem for users who didn’t have the WhatsApp application, that’s why it was changedIn the new version, you will have the ability to change this item to the WhatsApp web version or WhatsApp api link
Thanks for your support
Forum: Plugins
In reply to: [Simple Chat Button] Button text (optional)Just add this css code to your website styles ( you can replace 13 pixel font size with any number )
#simple-chat-button--container #simple-chat-button--text { font-size: 13px; }Thanks for your support
- This reply was modified 3 years, 10 months ago by seramo.
Forum: Plugins
In reply to: [Simple Chat Button] Not on homepageThanks for your kindness
Forum: Plugins
In reply to: [Simple Chat Button] Not on homepageDownload the latest version (Version 1.4.0) and check this option
Added meta box in post and page post type
Forum: Plugins
In reply to: [Simple Chat Button] Not on homepagecheck this code and replace in line 10
replace
if ($button_status === 1 && !is_admin()){
with
if ($button_status === 1 && !is_admin() && (!is_home() || !is_front_page())){This error may be due to not using “{” in your code
Forum: Plugins
In reply to: [Simple Chat Button] Not on homepage( !is_front_page() && !is_home() )
// Default homepage!is_front_page()
// Static homepage!is_home()
// Blog pageForum: Plugins
In reply to: [Simple Chat Button] Not on homepageHi @pubdirltd
change
if ($button_status === 1 && !is_admin()
with
if ($button_status === 1 && !is_admin() && (!is_home() || !is_front_page()))
in file
simple-chat-button/includes/frontend.php line 10This feature will be added in the new version
Thanks for your support