Insert SKU at the end of Breadcrumbs
-
Hi, I would like to insert the SKU display at the end of the breadcrumbs. See photos.
Can you help me please?add_filter( ‘woocommerce_get_breadcrumb’, ‘bbloomer_single_product_edit_prod_name_breadcrumbs’, 9999, 2 );
function bbloomer_single_product_edit_prod_name_breadcrumbs( $crumbs, $breadcrumb ) {if ( is_product() ) {
global $product;
$index = count( $crumbs ) + 1; // product name is always last item
$value = $crumbs[$index];
$crumbs[$index][0] = $product->is_type( ‘variable’ )->get_sku() ;
}return $crumbs;
}The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Insert SKU at the end of Breadcrumbs’ is closed to new replies.