mjh1
Forum Replies Created
-
Helpful, thanks. But things just got weirder. If I use the Version Control plugin, the dot navigation doesn’t work even if I load jQuery 3.7.1 (the version that ships with WordPress 6.9.4), but if I use the generic wp_enqueue_script(‘jquery’) in the functions.php file, the dot navigation does work (but other things on the page break). Ugh.
I’m considering ditching the dots and just using arrows (though I’m not crazy about the arrow graphics in the theme I’m using).
Thanks for the quick reply. Not feasible unfortunately. There’s no way to find out the minimum version of jQuery that MetaSlider 3.106.0 supports?
Other people besides me are experiencing this issue but ok.
What information do you need?
Forum: Plugins
In reply to: [Contact Form 7] Every form submission now flagged as spamWhen I looked more deeply into the reCAPTCHA issue, it turned out to be outdated keys. Removing the keys in CF7 solved the issue. Thanks, Takayuki.
Forum: Plugins
In reply to: [Contact Form 7] CF7 scripts and styles not loadingAnd I’m enabling the scripts and styles again on just the Contact page here:
if(is_page( 15 )) { wp_enqueue_style( 'loui-lord-nelson-form-styles', get_template_directory_uri() . '/css/forms.css', array(), null ); if ( function_exists( 'wpcf7_enqueue_scripts' ) ) { wpcf7_enqueue_scripts(); } if ( function_exists( 'wpcf7_enqueue_styles' ) ) { wpcf7_enqueue_styles(); } }This was working until recently, as I mentioned in my first post. Did something change with regard to enqueueing?
Forum: Plugins
In reply to: [Contact Form 7] CF7 scripts and styles not loadingWe developed the theme, which is very simple. The theme has been tested with Theme Check.
Plugins:
Classic Editor
Honeypot for Contact Form 7
Podbean Shortcode
Toggle wpautop
Wordfence
Yoast SEOThe relevant part of the functions.php file looks like this:
add_filter( 'wpcf7_load_js', '__return_false' ); add_filter( 'wpcf7_load_css', '__return_false' ); function loui_lord_nelson_scripts() { wp_enqueue_style( 'loui-lord-nelson-google-fonts', 'https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i', false ); wp_enqueue_style( 'loui-lord-nelson-main-styles', get_template_directory_uri() . '/css/main.css', array(), null ); if(is_page( 15 )) { wp_enqueue_style( 'loui-lord-nelson-form-styles', get_template_directory_uri() . '/css/forms.css', array(), null ); if ( function_exists( 'wpcf7_enqueue_scripts' ) ) { wpcf7_enqueue_scripts(); } if ( function_exists( 'wpcf7_enqueue_styles' ) ) { wpcf7_enqueue_styles(); } } } add_action( 'wp_enqueue_scripts', 'loui_lord_nelson_scripts', 1 );- This reply was modified 4 years, 10 months ago by mjh1.
Forum: Plugins
In reply to: [Contact Form 7] CF7 scripts and styles not loadingHere’s an example:
https://theudlapproach.com/contact/
- This reply was modified 4 years, 10 months ago by mjh1.