Issues with WoodMart Elements in Visual Composer
-
Hello. We have been noticing several glitches within the Visual Composer using the Woodmart Elements. For example: https://savinggrace.developwithrgb.com/about-us
On this page, the testimonials seen under the page title should be auto-rotating and have pagination options. This element is not functioning at all.
Please advise.
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add the following PHP code snippet to the child theme functions.php file to fix this http://prntscr.com/nr8vh5
wp_enqueue_script( 'woodmart-waypoint', 'https://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.2/waypoints.min.js', array( 'jquery' ), woodmart_get_theme_info( 'Version' ), true );
We shall fix this issue in our nearest update.
Regards
Could you let us know where in the functions.php we should place it?
<?php
/**
* Enqueue script and styles for child theme
*/
function woodmart_child_enqueue_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'woodmart-style' ), woodmart_get_theme_info( 'Version' ) );
}
add_action( 'wp_enqueue_scripts', 'woodmart_child_enqueue_styles', 1000 );
Here is what we have currently
I just saw your screenshot. I’ll put the code there and we’ll test.
Hello,
We have already released the update. Just update the theme this issue has been fixed already.
Best Regards