Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Remove the Breadcrumbs on the Shop Entirely

remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
Comment

Remove the Breadcrumb on the Shop Page

function my_woocommerce_custom_breadcrumbs() {
    if(is_shop()){
    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
    }
}
add_filter('woocommerce_before_main_content','my_woocommerce_custom_breadcrumbs');
Comment

Remove the Breadcrumbs on the Shop Entirely

remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
Comment

Remove the Breadcrumb on the Shop Page

function my_woocommerce_custom_breadcrumbs() {
    if(is_shop()){
    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
    }
}
add_filter('woocommerce_before_main_content','my_woocommerce_custom_breadcrumbs');
Comment

Remove the Breadcrumbs on the Shop Entirely

remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
Comment

Remove the Breadcrumb on the Shop Page

function my_woocommerce_custom_breadcrumbs() {
    if(is_shop()){
    remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
    }
}
add_filter('woocommerce_before_main_content','my_woocommerce_custom_breadcrumbs');
Comment

PREVIOUS NEXT
Code Example
Php :: wp wc archive product page template 
Php :: Call to undefined method PsyUtilStr::random() 
Php :: laravel dirty words check 
Php :: get 1 data from get laravel 
Php :: php namespaces 
Php :: Add button next to "ADD TO CART" on product archive 
Php :: remove MainWP Child phpmyadmin 
Php :: err_cache_miss php 
Php :: woocommerce php reset password length 
Php :: turn off wordpress user list exposed 
Php :: php if cart is not empty 
Php :: sort relation model count yii2 
Php :: change sender name laravel 
Php :: php change get value in a link 
Php :: 20 usd to php 
Php :: eloquent firstorcreate 
Php :: using laravel passport with mongodb 
Php :: custom blade 
Php :: change laravel port 
Php :: insert views laravel database 
Php :: php remove everything before colon 
Php :: numberformater php format to k and m 
Php :: update php 
Php :: table laravel 
Php :: php keep input value after submit 
Php :: send email php form 
Php :: only get selected value from has many ralation laravel 
Php :: download image from mysql using php 
Php :: php check string 
Php :: php monolog 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =