Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #631444

    Hi,
    We are having problems with thrive leads plugin. After activating the plugin the front page layout breaks:
    The right sidebar appears underneath of the main page content and couldn’t figure out what CSS changes should solve this issue.
    Could you please help me out? The client strictly wants to use thrive leads, cannot replace with anything else.

    Thank you!

    #631493

    Hey zedsolutions,

    We noticed the issue and to resolve this we need to take a closer look please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • the URL to the login screen
    • a valid username (with full administration capabilities)
    • as well as a password for that username
    • permission to deactivate plugin if required

    Best regards,
    Vinay

    #631762

    Hi,
    Thank you for the quick reply, find the requested info below.

    Cheers,
    Zed

    #632856

    Can I use thrieve themes together with Enfold???
    I thought I now must use other themes as like of thrieve themes because they are not combineable.
    Please inform me, because I LOVE Enfold, but for some new project I urgent must use more “sales friendly” builders like thrieve themes.

    #632886

    Hi,

    @zerdsolutions, seems to be a plugin conflict indeed, here’s a JS fix you can try, add this at the very end of your themes / child themes functions.php file:

    function add_custom_script(){
    ?>
    
    (function($){
    $(window).load(function() {
    if(!$('aside.sidebar').parents('.container').length > 0){
        $('aside.sidebar').appendTo($('.sidebar_right .container'));
    }
    });
    })(jQuery);
    
    <?php
    add_action('wp_footer', 'add_custom_script');


    @traumreiter
    , no you can’t combine both themes without custom work, their plugins may work though.

    Best regards,
    Josue

    #634340

    Hi Josue,

    Unfortunately this isn’t working, just thrown a blank front page.
    Then I thought the PHP function bracket wasn’t closed, also JS code included between <script> tags.
    This code seems working now. Thank for your help guys!

    function add_custom_script(){
    ?>

    <script>
    (function($){
    $(window).load(function() {
    if(!$(‘aside.sidebar’).parents(‘.container’).length > 0){
    $(‘aside.sidebar’).appendTo($(‘.sidebar_right .container’));
    }
    });
    })(jQuery);
    </script>

    <?php
    }

    add_action(‘wp_footer’, ‘add_custom_script’);

    #634374

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.