Forum Replies Created

Viewing 6 replies - 16 through 21 (of 21 total)
  • 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

    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

    Continuing…Those links below are two awesome looking ‘shop’ pages. HOW THE *&%@# Do they Do that?? I’ve been in out up down with code and cannot call backgrounds, functions or get the shop page to do much except remove things…That’s easy ANY HELP MOST APPRECIATED !

    i.e. -Simply trying to put an individual background image on that page….
    -Making and implementing a custom header for that ‘shop’ page

    sorry, but NOPE ! not in my “superstore” theme..Weird..TRIED ALL sugs in various files with zeroooo desired results.the ONLY thing that words is “display: none;” in css..last resort…yep

    Go to /plugins/woocommerce/archive-template.php and (the way I did it)
    mark ‘false’ sted ‘true’ in the below code line…..

    <?php if ( apply_filters( ‘woocommerce_show_page_title’, true ) ) : ?>

    the file is in /plugins/woocommerce/archive-product.php

Viewing 6 replies - 16 through 21 (of 21 total)