Creame
Forum Replies Created
-
Forum: Plugins
In reply to: [Joinchat] Use custom fields on an option page and configure JoinchatYou can use PHP filters
"joinchat_get_settings"
or"joinchat_get_settings_site"
to override Joinchat settings.You can also create links like this and Joinchat will launch WhatsApp:
<a href="#whatsapp" data-phone="<?php echo get_option('my_phone_option'); ?>" data-message="<?php echo get_option('my_message_option'); ?>">Contact</a>
Forum: Plugins
In reply to: [Joinchat] Cannot serve Directory issueHi,
This is not a plugin bug.Someone or a bot is crawling your website and if they try to access a folder directly they do not have access (which is a good security practice). You only get one log entry for this attempt.
This may be the sign of an attack. The downtime is probably because that bot is making too many requests on your website.
Forum: Plugins
In reply to: [Joinchat] Change background color when hoveringHi, you need to add style for hover state of the button:
.joinchat__button:hover { background-color: #cbac5c; }
Forum: Plugins
In reply to: [Joinchat] The whtasapp button does not work when the user rejects cookiesHi, if you are using Cookiebot WordPress plugin, you can ignore some scripts. Try to add “wp-content/plugins/creame-whatsapp-me” in Cookiebot > Settings > Additional configurations at “Ignore scripts in queue from Cookiebot CMP scan:”
Forum: Plugins
In reply to: [Joinchat] The whtasapp button does not work when the user rejects cookiesEffectively, Cookiebot is blocking Joinchat’s script if statistics cookies are not accepted. We believe that this sharing is not correct and we will try to solve it with them.
For your part, you can also open a ticket in Cookiebot to try to resolve it more quickly.
Forum: Plugins
In reply to: [Joinchat] Bluerried Text and TittlePlease, update to the latest version 5.0.17.
Forum: Plugins
In reply to: [Joinchat] DIfferent message for every numberI’m not sure what you need.
Among the translations you can also “translate” the phone number so you can define another different number for each language
Forum: Plugins
In reply to: [Joinchat] DIfferent message for every numberIf your site is multi-language. You can manage the translations of that message for each language. From Joinchat’s settins page follow link to manage translations and set your messages.
- This reply was modified 1 year, 2 months ago by Creame.
The last version v 5.0.16 should work fine with Bricks editor ??
Forum: Plugins
In reply to: [Joinchat] Disable in Custom Post Types not workHi, Joinchat by default detects custom post types that has archive. You can modify your CPT and enable archive feature or you can add this code snippet to add your CPT in Joinchat settings:
add_filter( 'joinchat_custom_post_types', function( $cpts ) { return array_merge( $cpts, array( 'your_cpt_name' ) ); } );
Hi!
We will add support to detect Bricks Builder on the next version ??By now, you can disable it by adding this code to your theme functions.php:
add_filter( 'joinchat_show', function( $show ) { if ( ! function_exists( 'bricks_is_builder' ) ) return $show; else return $show && ! bricks_is_builder(); } );
Forum: Plugins
In reply to: [Joinchat] Disable on Learndash pages (custom post type)Hi, You can use
"joinchat_custom_post_types"
filter to add extra CPTs undetected by default by Joinchat.Try adding this to your theme functions.php (note: not sure about Learndash CPT name)
add_filter( 'joinchat_custom_post_types', function( $cpts ) { return array_merge( $cpts, array( 'courses' ) ); } );
Forum: Plugins
In reply to: [Joinchat] Modifications to settings are not savedThis seems solved. I’m going to close this topic.
Forum: Plugins
In reply to: [Joinchat] CSS Mobile JoinchatThis seems solved. I’m going to close this topic.
Forum: Plugins
In reply to: [Joinchat] No aparece ícono WhatsAppEl problema parece que está resulto. Voy a cerrar esta incidencia.