Home Forums WoodMart support forum Issues with WoodMart Elements in Visual Composer

Issues with WoodMart Elements in Visual Composer

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #127280

    rgbadmin
    Participant

    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.
    #127288

    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

    #128584

    rgbadmin
    Participant

    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

    #128585

    rgbadmin
    Participant

    I just saw your screenshot. I’ll put the code there and we’ll test.

    #128593

    Hello,

    We have already released the update. Just update the theme this issue has been fixed already.

    Best Regards

Viewing 5 posts - 1 through 5 (of 5 total)