Forums
Forums / Theme: Giga Store / Sidebar issues
(@lemacpaul)
6 years, 8 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; }
The topic ‘Sidebar issues’ is closed to new replies.