vendor shop template
-
Hi there, Great plugin btw… I’m just having 2 issues making it work for my business:
Is there a way to add actions to the vendor shop template? As I want to:
1. Hide/remove the filter and ‘sort by’ bar. As all my vendors will only have 1-5 products so there is no need for this and it will confuse customers
2. Hide the menu navigation and my website logo on vendor shops so it’s unbrandedAs I’ve previously added these actions in my functions folder for product attributes using the below example. OR is there another way I can achieve this?
function post_template() {
if( has_tag( ‘prep’ ) ) {
?> <style>
.thb-full-menu{
display: none!important
}
}
add_action( ‘wp’, ‘post_template’ );
- The topic ‘vendor shop template’ is closed to new replies.