Hi thank you for your reply before. I fixed my issue.^^
I got another issue. I use Mansory shop fuction. Please check my screenshot below.
Here is first look when i click the shop menu. (http://berceuse.co.kr/wp/1.jpg)
The category look weired and they load only one product. when i click a mattress category.
but i want to make first look like after click load more button (http://berceuse.co.kr/wp/2.jpg)
This look is what i want it when i click shop menu.
How can i set up ? Please help me.
oh. one more question. Can I use The Advance layout editor on Post , Portfolio, Product ? If i can where can i set up?
Thank you/
Hi bkinckorea!
1- Can you please post the link to your website?
2- Please see – http://kriesi.at/documentation/enfold/use-the-layout-builder-with-any-post-type/
Best regards,
Yigit
here my website address.
http://berceuse.co.kr
Thanks
Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){
?>
<script>
(function($){
$(window).load(function() {
$(".avia_show_sort").on('click', function(){
$(".av-masonry-load-more").trigger('click');
});
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Regards,
Josue