Comments 2BDS started the conversationMarch 28, 2017 at 8:53amHello, We want two shop page in our website like you have in your theme website, one with left sidebar and another with right sidebar http://codex-themes.com/thegem/shop/?shop_sidebar=left http://codex-themes.com/thegem/starting_page/themes.php?page=shop-03 please help to get these at the earliest. Hope to hear soon from you.[deleted] repliedMarch 28, 2017 at 3:29pmHi,There is example of code we use. function thegem_custom_get_post_data($value, $post_id, $post_data_name) { if($post_data_name = 'page' && $post_id == wc_get_page_id('shop')) { parse_str($_SERVER['QUERY_STRING'], $params); if(!empty($params['shop_sidebar'])) { if($params['shop_sidebar'] == 'right') { $value['sidebar_position'] = 'right'; } if($params['shop_sidebar'] == 'none') { $value['sidebar_position'] = ''; } } } return $value;}add_filter('thegem_get_post_data', 'thegem_custom_get_post_data', 20, 3); Sign in to reply ...
Hello,
We want two shop page in our website like you have in your theme website, one with left sidebar and another with right sidebar
http://codex-themes.com/thegem/shop/?shop_sidebar=left
http://codex-themes.com/thegem/starting_page/themes.php?page=shop-03
please help to get these at the earliest.
Hope to hear soon from you.
Hi,
There is example of code we use.