Okay
  Public Ticket #563269
shop column
Closed

Comments

  • JJ started the conversation

    HI, I would like to have the "Shop" sidebar show up on category pages as well. Ie, if I am on the page shop, then the sidebar shows. If I click one of the categories, it defaults to fullwidth, no sidebar.

  •  291
    Paul replied

    Hi there!

    Unfortunately there is no option for that out of the box. You would need to manually customize the code in \"/includes/plugin-codes/plugin-custom-functions.php\" file.

    Please find \"uxbarn_wooc_theme_wrapper_start()\" and \"uxbarn_wooc_theme_wrapper_end()\" functions in the file and look for this code:

    if ( is_shop() ) {

    Change it to:

    if ( is_shop() || is_product_category() ) {

    Make sure to edit the code in both functions. Now your product category template should also display the shop sidebar.

    Regards,
    Paul

  • JJ replied

    Worked great!