WooCommerce : Change the WooCommerce Breadcrumb Text.

Distance Between Latitude and Longitude

WooCommerce : Change the WooCommerce Breadcrumb Text.

WooCommerce is the more powerful e-commerce plugin for WordPress.And what i love with WooCommerce is that there’s an API for nearly everything.There are almost Hooks and filters For Every Customization work.

To change the WooCommerce breadcrumb text, you could use the following filter:

For example Change “home” to “Products” in WooCommerce breadcrumbs:

function woocommerce_change_breadcrumb_text( $bread ) {
$bread['home'] = 'Products';
return $bread;
}

add_filter( ‘woocommerce_breadcrumb_defaults’, ‘woocommerce_change_breadcrumb_text’ );

Enjoy

Shiv kumawat

Executive Director & CEO

"Shiv kumawat is the Executive Director and CEO of Eoxys It Solution LLP and the strategic mind behind the company"s growth. His expertise in operational efficiency and team leadership empowers his colleagues to excel and innovate.”

, ,

Leave a Reply

Your email address will not be published. Required fields are marked *