Nicolas Landgraf
Forum Replies Created
-
For the theme I use a custom one usually, but it doesn’t have anything to be honest, in functions.php I mostly enqueue a few libraries to be used:
function nlmd_styles_scripts() { wp_enqueue_script('jquery'); wp_enqueue_style( 'bootstrap', 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css', array(), '1.1', 'all'); wp_enqueue_script( 'bootstrap', 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js', array ( 'jquery' ), 1.1, true); wp_enqueue_style( 'slick', 'https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.css', array(), '1.1', 'all'); wp_enqueue_script( 'slick', 'https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js', array ( 'jquery' ), 1.1, true); wp_enqueue_script( 'smoothstate', 'https://cdn.jsdelivr.net/npm/[email protected]/src/jquery.smoothState.min.js', array ( 'jquery' ), 1.1, true); wp_enqueue_style( 'GoogleFonts', 'https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap', array(), '1.1', 'all'); wp_enqueue_script( 'smoothstatejs-scripts', get_stylesheet_directory_uri() . '/js/smoothstatescripts.js', array ( 'jquery' ), 1.1, true); wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } add_action( 'wp_enqueue_scripts', 'nlmd_styles_scripts' );
And then I work on the header.php , footer.php , etc. but not much code is involved.
Plugins:
Advanced Custom Fields PRO
Advanced Custom Fields: ACF Code Field
Contact Form 7
Custom Post Type UI
Editor Full Width Gutenberg
LuckyWP ACF Menu Field
SG Optimizer
SVG Support
TinyMCE AdvancedI tried disabling all of them except CF7 but the issue remained.
For the AJAX transition I use “smoothState.js”.
I mark as resolved!
There is my friend! Worked perfectly, you were super quick and super right.
Thanks a lot!
Ohh genius, thanks a lot!!
Forum: Plugins
In reply to: [WP Image Zoom] Using filtering with AJAXWorks! Thank you very much Diana!
Forum: Plugins
In reply to: [WP Image Zoom] Using filtering with AJAXHi Diana, thanks for the help!
I bought the plugin but I’m having two issues, in one hand It stopped zooming in the shop page (where all products are displayed) here: https://mayorista.hogh.com.ar/
I could resolve that by adding the class .wp-post-image in “Apply zoom on this particular image(s)”.The second is that it’s not zooming after I use a filter, any idea on how to solve that?
@mebugarin genio, era eso exactamente, muchisimas gracias por la respuesta y la velocidad!