Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1064236
Product side-bar
Closed

Comments

  •  2
    Robert started the conversation

    Is there a quick way to add side-bars to all the products on my site?

  •  7,092
    Oliver replied

    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:

        $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