
Originally Posted by
vanhorn_s
The # of reviews in the side is in the admin. Admin -> Configuration ->Maximum Values -> Random Product Reviews for SideBox
To collapse the side boxes edit includes\templates\tableau\jscript\jquery\jquery_filters.js
I took the code for #recentproducts and copied it for each additional sidebox I added.
PHP Code:
// original code
jQuery('#recentproducts .collapse-sidebox').on('click', function(){
jQuery(this).parent().siblings().slideToggle(function(){
});
jQuery('#recentproducts .collapse-sidebox').toggleClass('expand-sidebox');
});
// added code
jQuery('#information .collapse-sidebox').on('click', function(){
jQuery(this).parent().siblings().slideToggle(function(){
});
jQuery('#information .collapse-sidebox').toggleClass('expand-sidebox');
});
I did the collapse fix to mine awhile back, I'm not 100% there wasn't another little edit I had to do, but give this a try.
Bookmarks