cjrnne
Forum Replies Created
-
Thanks very much for looking into this and for the thorough reply!
His explanation makes sense. I’ll try to find out if Divi (or potentially another plugin) is loading a different version of jQuery UI and not declaring it.
For now I think i’m just going to comment out lines 710 – 714 in /includes/utils.php and hope that it doesn’t cause any other issues.
Thank you again!
Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & Messaging] Auto pop up for modern designThank you! Someone replied to me through your pro support form. Triggers were exactly what we were looking for.
I also found another reply from you a while back on another thread that had a useful bit of JS to replace the Chat Icon.
In case anyone else might find it useful, here’s what we ended up adding to our WP theme to change the bubble to just display text (please excuse the inline <style> tags, I know that’s bad form):
var wplc_replacement_text = "Questions?<br/>Chat Now! "; jQuery(function(){ jQuery(document).ready(function(){ }); jQuery(document).on("wplc_animation_done", function(e) { console.log("WPLC: Replacing Content..."); jQuery('#wp-live-chat-header').html(wplc_replacement_text); jQuery('#wp-live-chat-header').prepend('<style>#wp-live-chat-header {font-size: 13px;width: 100px;text-align: center;padding-top: 3px;}</style>'); }); })
Forum: Plugins
In reply to: [3CX Free Live Chat, Calls & Messaging] Auto pop up for modern designHi Jarryd,
I’m looking to do something similar, can you walk me through the changes I need to make in the plugin’s code?
You do almost exactly what I had in mind on your own website:
