Comments crownmarketers started the conversationApril 17, 2017 at 4:06amhow can i make the left side bar standard on my product display pages ?Currently i have to set left side bar with every image i add. Is there a way to make that standard and save me the set of checking the box each and eery product i add? 7,097Oliver repliedApril 17, 2017 at 11:35amHi, You need to install child theme, copy woocommerce.php template from parent TheGem theme to child and in this template in child after code: $thegem_sidebar_stiky = $thegem_item_data['sidebar_sticky'] ? 1 : 0; $thegem_sidebar_position = thegem_check_array_value(array('', 'left', 'right'), $thegem_item_data['sidebar_position'], ''); add next: if(is_product()) { $thegem_sidebar_position = 'left'; }Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver Sign in to reply ...
how can i make the left side bar standard on my product display pages ?
Currently i have to set left side bar with every image i add.
Is there a way to make that standard and save me the set of checking the box each and eery product i add?
Hi,
You need to install child theme, copy woocommerce.php template from parent TheGem theme to child and in this template in child after code:
add next:
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver