Okay
  Public Ticket #2216880
Product Categories Page(s)
Closed

Comments

  •  1
    tara started the conversation

    Hi there, 

    How/Where can I edit product categories pages.  I found a video from 2014 where it allowed you to choose a template page to link to categories in the post "categories" panel... they isn't an option anymore it doesn't seem.  

    Essentially, I'd like this page https://leveluphypnosis.com/product-category/personal-development-2/ to look like this page, which is customized to match my theme header & colors.

     https://leveluphypnosis.com/personal-development-2/ 

    If that isn't possible, can you suggest css to change the title wrap or whatever that is that's blue in the title/header area to a white background, along with changing the pricing from black to #3ca3cf?  I'll want that to be applicable to all product category pages.  

    Thank you!

  •  3,023
    Andrew replied

    Hi there,

    Apologies for the late reply on this.

    1) There is no option to alter to edit the woocommerce product category pages. There are however a few options under Salient \ woocommerce that might helps.

    2) For the page header color change to white use this CSS:

    #page-header-bg{
        background-color:white !important;
    }
    

    For the pricing color use:

    .products li.product.minimal .product-meta .amount{
        color:#3ca3cf;
    }
    

    add the CSS to salient \ general settings - css script related - custom css code.

    Hope this clears things up.