• Hey guys, i’m having a problem with WooCommerce, all i want to do is set my woocommerce pages to one of the templates i created for certain pages but it’s not working and just using my default front page template, even when i change the pages template to the other one, is there any way around this?

    Thank you kindly

    ~Matt

    https://www.ads-software.com/plugins/woocommerce/

Viewing 4 replies - 1 through 4 (of 4 total)
  • You’re not alone…I’ve been working on this for a long time. I think i’m getting closer so I’ll for sure post a fix asap…Hope others HELP !
    Grateful for anything….
    =Dave

    Thread Starter Punumbra

    (@punumbra)

    Thanks for the reply Oblivius, i’ve seen so many blog posts about this one yet no one ever replies or points in the right direction. Seems like no one really knows how to fix it. I think i may just have to create another wordpress site for a separate shop

    Good luck with finding a fix man

    Yo Punumbra..I know it’s not exactly what you’re looking for but here’s some stuff other folks may find helpful and maybe you can turn it into gold somehow…

    HOW..to ADD individual BG to just the SHOP page…

    .post-type-archive-product {background-image: url();} Also,

    How to add individual BG to just the CONTENT OF YOUR SHOP PAGE + SINGLE PAGE CONTENT……

    remove_action(‘wc_before_main_content’ , ‘wc_output_content_wrapper’, 10);
    ” ” (‘wc_after_main_content’ , ‘wc_output_content_wrapper_end, 10);

    add_action(‘wc_before_main_content’ , ‘my_theme_wrapper_end’, 10);
    ” ” (‘wc_after_main_content’ , ‘my_theme_wrapper_end’, 10);

    function my_theme_wrapper_start() {
    echo ‘<section id=”wrapper”>’;

    function my_theme_wrapper_end() {
    echo ‘</section>’;
    }

    **This was my fix BEFORE I found the first one which covers the whole “body” instead of just the content div. I haven’t tried the two together…The second one is obviously UNHOOKING the CONTENT WRAPPER from the header.php I THINK ??
    GOOD LUCK
    OB

    Thread Starter Punumbra

    (@punumbra)

    Thanks for the edit idea Oblivius.

    I need to find the full solution though as i’m working with a client on it all and it’s a professional website so i have to find the full template change sadly, thanks again though

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Woo Commerce Problem – Set To Different Page Template’ is closed to new replies.