manuel_84
Forum Replies Created
-
i would try doing the same thing, add this class to the products container
if you are using post card archives then add the class “wcapf-before-products” to it and it will work
Forum: Plugins
In reply to: [Contact Form 7] wpcf7.initForm is not a functionTo fix the error I had to make the change suggested here https://ww.wp.xz.cn/support/topic/uncaught-typeerror-wpcf7-initform-is-not-a-function/
(moving the jQuery “on ready” function in scripts.js that calls wpcf7.initForm to after the initForm function is defined)Please @takayukister consider to add this fix, this way who is using ajax loaders (I’m using swup) with CF7 doesn’t have issues, thanks
- This reply was modified 6 years, 9 months ago by manuel_84.
Forum: Plugins
In reply to: [Contact Form 7] Uncaught ReferenceError: grecaptcha is not definedSame problem, but only if I’m logged
Forum: Plugins
In reply to: [Smart Cookie Kit] Added code for Divi builderWe found that the problem was related to output buffering and the above code for Divi was not necessary, so the only thing needed was adding this line to sources_to_block:
array( 'service_name' => 'Google Maps', 'unlock_with' => 'profiling', 'pattern' => 'www.google.com/maps/d/embed' ),If someone else like me is using Gantry Framework may find useful to change this to avoid problems with output/buffers:
add_action( 'after_setup_theme', array( $this, 'buffer_set' ), -99998 ); // wp_head > after_setup_theme add_action( 'shutdown', array( $this, 'buffer_unset' ), 99999 ); // wp_footer > shutdown- This reply was modified 7 years ago by manuel_84.
Forum: Plugins
In reply to: [Smart Cookie Kit] Added code for Divi builderNicola funziona perché gli fa filtrare contenuti di Divi che prima escludevi (cioè l’output di altri 2 shortcodes), lo sto usando in un sito live.
Ho scelto gli shortcode di testo e codice perché dentro questi uno può inserire qualsiasi cosa (tipo nel mio caso un iframe di google maps)Ciao 🙂
Thanks Daniel, I’m waiting too. Awesome plugin!