Okay
  Public Ticket #205258
WooCommerce product category | No transparent header!
Closed

Comments

  • Juergen started the conversation

    Hello,

    the transparent header doesn\'t work on WooCommerce product-category sites.

    thanks for help!

  •  8,845
    Tahir replied

    Hey Juergen!

    Could you please provide us the url so we can take a look . 

    Thanks


    ThemeNectar Support Team 

  •   Juergen replied privately
  •  8,845
    Tahir replied

    Hey Juergen!

    I believe the author has not made the transparent option available on woocommerce pages. I have added it to the wishlist for future updates. 

    Cheers


    ThemeNectar Support Team 

  • [deleted] replied

    Hello everybody, 

    I would like to display the same category products filter (using arrows, sign "+" and sign "-") in the woocommerce side bar as Juergen Wisenbauer did (see his screenshot below). 

    To manage that, i added the Woocommerce Product Category widget in the Woocommerce sidebar, and in the ThemeNectar admin panel > Woocommerce, i chose the "left sidebar" option for the main Shop Layout. 

    And i don't get the same results (see the enclosed picture) ... i must have done something wrong ?

    Thank you for your help !

  • Juergen replied

    Hi,

    this menu isn´t included in Salient - i´ve used a plugin that calls "WooCommerce Category Accordion"
    If you need help with this, let me know!



  •  1
    WB replied

    Hi Juergen !

    Thank you for your answer !

    I've checked on Code Canyon and can you confirm that it only exits on a paid version (14 $) ?

    Thanks fot your help !

  • Juergen replied

    Hi Flopi,

    that's right!
    But it is totally worth it!

    The original sidebar-menu on salient doesn't work without some custom css.

  •  1
    WB replied

    Thank you so much for your advice !

    Have a great day !

  •  1,071
    ThemeNectar replied

    Hey Juergen - Thanks for helping out WB!

    Also the fact the header won't go transparent on category pages when using a header is a bug that i've noted to fix for the next release :)

    Cheers!

  • Juergen replied

    Hey!

    thanks. 

    -> Wishlist
    custom header backgrounds with transparent header-option for each WooCommerce product.
    This would product pages look amazing!

    Cheers!

  •  2
    karoliinaparnanen replied

    Seems like the transparent header is still not possible on WooCommerce product page?

    http://anoukkruithof.com/?product=universal-tongue

  •  1,878
    Judith replied

    Hi There,

    A user tried this for the same issue and it helped by adding the code below in function.php

    function salient_child_page_header_post_types($post_types) {
        
        $new_post_types = array(
            'product'
        );     $post_types = array_merge($new_post_types, $post_types);     return $post_types;
    }
    add_filter('nectar_metabox_post_types_navigation_transparency', 'nectar_metabox_post_types_fullscreen_rows');

    Please try and let us know.

    Thanks.

  •  2
    karoliinaparnanen replied

    Hey Judith,

    Thank you for you quick reply. This solved the issue!