Remove “Shop” from breadcrumb
-
Hello,
I tried to remove “Shop” from breadcrumb with the below code:
add_filter('wpseo_breadcrumb_single_link' ,'remove_shop', 10 ,2); function remove_shop($link_output, $link ){ if( $link['text'] == 'Shop' ) { $link_output = '<span>'; } return $link_output; }
It Worked but the Problem is, its separator didn’t remove and the breadcrumb show as below
Home ? ? Persian Books ? Historical ? Dar Sarashib-e Soghoot by Kourosh Salehi
After Home, I have two separators. How can I remove or hide one of them ?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove “Shop” from breadcrumb’ is closed to new replies.