Forums
Home / Theme: Giga Store / Sidebar issues
(@lemacpaul)
5 years, 2 months ago
How to remove sidebar from the single product page?
Uhm, sorry, found the answer ?? — functions.php file, find this code:
if ( get_theme_mod( 'left-sidebar-check', 0 ) != 0 ) { $columns = $columns - absint( get_theme_mod( 'left-sidebar-size', 3 ) ); }
and add this one after:
if ( is_product() ) { $opt = 'full-width-content'; return $opt; }