How to change Woocommerce breadcrumbs content?
That is due to the fact, that your filter woocommerce_breadcrumb doesn’t even exist. This filter here works and pulls out all the elements, that are currently in the breadcrumb (as an array): add_filter( ‘woocommerce_get_breadcrumb’, ‘change_breadcrumb’ ); function change_breadcrumb( $crumbs ) { var_dump( $crumbs ); return $crumbs; } And this filter pulls out the main term … Read more