-
AuthorPosts
-
May 12, 2016 at 4:12 pm #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!
May 12, 2016 at 5:59 pm #631493Hey 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,
VinayMay 13, 2016 at 4:21 am #631762Hi,
Thank you for the quick reply, find the requested info below.Cheers,
ZedMay 16, 2016 at 11:31 am #632856Can 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.May 16, 2016 at 12:39 pm #632886Hi,
@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,
JosueMay 18, 2016 at 12:01 pm #634340Hi 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’);
May 18, 2016 at 12:52 pm #634374You are welcome, glad to help :)
Regards,
Josue -
AuthorPosts
- You must be logged in to reply to this topic.