Home Forums WoodMart support forum STICKY SIDEBAR FOR BLOG / THRIVE LEADS COMPATIBILITY

STICKY SIDEBAR FOR BLOG / THRIVE LEADS COMPATIBILITY

Viewing 22 posts - 1 through 22 (of 22 total)
  • Author
    Posts
  • #120011

    RGEDT
    Participant

    Hello,

    I take contact for differents question and problem.

    1 – On my blog/post I would like to have the sidebar in sticky mode. How can I do this ?
    2 – On blog also, can we have color code for different category ? Like Blue for categorie A and green for B?
    3 – And the most important. I have the suite of Thrive. Leads, Architect, etc. I can’t use this plugin. Their customer support says that this come from you and the theme. https://prnt.sc/neha61

    Regards

    #120029

    Hello,

    1. There is no option to make a sticky sidebar, there is the option to make Off sticky sidebar on mobile.

    2. It is not possible to set different colors for different categories.

    3. Please provide more details about the problems with the plugin. Please provide the screenshots and step by step instruction to reproduce the problem

    Best Regards

    #120044

    RGEDT
    Participant

    1 – So sticky bar for post not possible ? Wow ok.

    2 – Ok

    3 – Just look that : https://thrivethemes.com/forums/topic/landing-page-template-wont-load-infinite-loading/

    They says that this bug come from your theme

    #120060

    RGEDT
    Participant

    Tell me.
    Because of your theme I can’t use a plugin that I have bought..

    #120070

    Artem Temos
    Keymaster

    We can’t access that topic. Please, provide us short explanations and steps to reproduce this problem on your website. Thank you.

    #120072

    RGEDT
    Participant

    Just have their plugin. But when I want to use it. The page is in infinite login.
    And the support say this come from the theme

    #120149

    RGEDT
    Participant

    ??????????

    #120164

    Artem Temos
    Keymaster

    What do you mean by infinite login? Please, provide us short explanations and steps to reproduce this problem on your website with some screenshots.

    #120180

    RGEDT
    Participant

    It’s simple. The support says that it comes from your theme. When i want to use thrive leads. The page loads to infinity and never opens …

    #120233

    Artem Temos
    Keymaster

    Hi,

    We see that this plugin is turned on now and your website is working correctly.

    Regards

    #120471

    RGEDT
    Participant

    My website working perfectly but not the plugin.
    INFINITE LOADING !!!

    #120472

    Artem Temos
    Keymaster

    We asked you a few times how to see the problem but you didn’t provide us any workable instruction. So we repeat our question, how to reproduce the problem?

    #120479

    RGEDT
    Participant

    I don’t know the support this come from your theme but I don’t know how to fix that.
    It’s the reason that I write here. https://prnt.sc/nfpllw

    Infinite loading!

    https://wearemotivated.fr/wp-admin/post.php?post=5091&action=architect&tve=true&_key=1&r=5cbeee8dee21d

    #120488

    Artem Temos
    Keymaster

    Please, send us your FTP access so we can investigate what is wrong.

    #120674

    RGEDT
    Participant

    Can fix that problem today. It’s a big problem that prevents me from using a plugin I bought.

    #120705

    Artem Temos
    Keymaster

    The ftp seems to be wrong because when we edit https://wearemotivated.fr/wp-content/themes/woodmart/inc/admin/assets/js/colorpicker.min.js?ver=3.6.1 file we don’t see any changes applied.

    #120725

    RGEDT
    Participant

    Yes it’s the good one…
    But not the child and www folder

    #120748

    Artem Temos
    Keymaster

    Please, send us a direct path to this file on the server.

    #120868

    RGEDT
    Participant

    /public_html/wp-content/themes

    This problem needs to be fixed today

    #120895

    Artem Temos
    Keymaster

    Try to add the following PHP code snippet to the child theme functions.php file to do this

    
    function woodmart_admin_scripts() {
        $version = woodmart_get_theme_info( 'Version' );
    
        wp_enqueue_script( 'woodmart-admin-scripts', WOODMART_ASSETS . '/js/admin.js', array(), $version, true );
    
        if( apply_filters( 'woodmart_gradients_enabled', true ) && $_GET['action'] != 'architect' ) {
            wp_enqueue_script( 'woodmart-colorpicker-scripts', WOODMART_ASSETS . '/js/colorpicker.min.js', array(), $version, true );
            wp_enqueue_script( 'woodmart-gradient-scripts', WOODMART_ASSETS . '/js/gradX.min.js', array(), $version, true );
        }
        
        if ( woodmart_get_opt( 'size_guides' ) ) {
            wp_enqueue_script( 'woodmart-edittable-scripts', WOODMART_ASSETS . '/js/jquery.edittable.min.js', array(), $version, true );
        }
    
        //Slider
        wp_enqueue_script( 'jquery-ui-slider' );
    
        //Datepicker
        wp_enqueue_script('jquery-ui-datepicker');
    
        //VC Fields
        wp_enqueue_script( 'woodmart-image-hotspot', WOODMART_ASSETS . '/js/vc-fields/image-hotspot.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-title-divider', WOODMART_ASSETS . '/js/vc-fields/title-divider.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-slider', WOODMART_ASSETS . '/js/vc-fields/slider.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-responsive-size', WOODMART_ASSETS . '/js/vc-fields/responsive-size.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-vc-image-select', WOODMART_ASSETS . '/js/vc-fields/image-select.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-vc-colorpicker', WOODMART_ASSETS . '/js/vc-fields/colorpicker.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-vc-datepicker', WOODMART_ASSETS . '/js/vc-fields/datepicker.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-vc-switch', WOODMART_ASSETS . '/js/vc-fields/switch.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-vc-button-set', WOODMART_ASSETS . '/js/vc-fields/button-set.js', array(), $version, true );
        wp_enqueue_script( 'woodmart-vc-functions', WOODMART_ASSETS . '/js/vc-fields/vc-functions.js', array(), $version, true );
    
        woodmart_admin_scripts_localize();
    }
    
    add_action('admin_init','woodmart_admin_scripts', 100);
    #121055

    RGEDT
    Participant

    For the moment I don’t use the child theme.
    Can you make it ?

    I lost time… This plugin is important to work for me

    #121056

    Artem Temos
    Keymaster

    You can download the child theme from the ThemeForest. We are not able to do this because any changes we do via FTP are not applied on the frontend.

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