Remove the “Products tagged” from Woocommerce Tag Archive Breadcrumbswoocommerce breadcrumb missing shop linkWoocommerce Breadcrumbs for tag archivesHow to add link to the product name in Woocommerce breadcrumbRemove “Shop” from BreadCrumb in WooCommerceHow can I remove the “Shop” word from WooCommerce Breadcrumbs?Woocommerce Breadcrumbs, Replace Product Category with Page Number on Single Product PagesWoocommerce breadcrumbsSingle product page's woocommerce breadcrumb isn't showing category between HOME>ProductWordpress/WooCommerce - How can I fix breadcrumb trail on search results page?Remove “Shop” from Woocommerce breadcrumbs
Why is it "on the inside" and not "in the inside"?
How long does it take for electricity to be considered OFF by general appliances?
Who said "one can be a powerful king with a very small sceptre"?
Did Vladimir Lenin have a cat?
What is more environmentally friendly? An A320 or a car?
Scam? Checks via Email
Can Papyrus be folded?
Why did some Apollo missions carry a grenade launcher?
Next command output on the same line? Bash script
Why did I lose on time with 3 pawns vs Knight. Shouldn't it be a draw?
Is it safe if the neutral lead is exposed and disconnected?
Why are we moving in circles with a tandem kayak?
8086 stack segment and avoiding overflow in interrupts
Should I let a company know I've reverse engineered and rebuilt their app?
Can a US President, after impeachment and removal, be re-elected or re-appointed?
Does dual boot harm a laptop battery or reduce its life?
How to efficiently shred a lot of cabbage?
Employer stores plain text personal data in a 'data warehouse'
GNU sort stable sort when sort does not know sort order
Why did House of Representatives need to condemn Trumps Tweets?
Wrapping IMemoryCache with SemaphoreSlim
If you inherit a Roth 401(k), is it taxed?
Do the books ever say oliphaunts aren’t elephants?
What would the United Kingdom's "optimal" Brexit deal look like?
Remove the “Products tagged” from Woocommerce Tag Archive Breadcrumbs
woocommerce breadcrumb missing shop linkWoocommerce Breadcrumbs for tag archivesHow to add link to the product name in Woocommerce breadcrumbRemove “Shop” from BreadCrumb in WooCommerceHow can I remove the “Shop” word from WooCommerce Breadcrumbs?Woocommerce Breadcrumbs, Replace Product Category with Page Number on Single Product PagesWoocommerce breadcrumbsSingle product page's woocommerce breadcrumb isn't showing category between HOME>ProductWordpress/WooCommerce - How can I fix breadcrumb trail on search results page?Remove “Shop” from Woocommerce breadcrumbs
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
In my Storefront wordpress I'm using the woocommerce product tags to display my products in an alternative way.
On the tag archive pages the breadcrumb says
Home > Products tagged “Example Tag” or rather Startseite > Produkte verschlagwortet mit „Example Tag“ since I have a German language site.
-> I want to get rid of the "Products tagged" ("Produkte verschlagwortet mit") and have the Example Tag (without the quotation marks) only displayed in the Breadcrumb:
Home > Example Tag ( Startseite > Example Tag)
I found a lot of stuff how to customize the breadcrumb in general, but nowhere how to red rid of that specific problem.
Any ideas?
php wordpress woocommerce breadcrumbs storefront
add a comment |
In my Storefront wordpress I'm using the woocommerce product tags to display my products in an alternative way.
On the tag archive pages the breadcrumb says
Home > Products tagged “Example Tag” or rather Startseite > Produkte verschlagwortet mit „Example Tag“ since I have a German language site.
-> I want to get rid of the "Products tagged" ("Produkte verschlagwortet mit") and have the Example Tag (without the quotation marks) only displayed in the Breadcrumb:
Home > Example Tag ( Startseite > Example Tag)
I found a lot of stuff how to customize the breadcrumb in general, but nowhere how to red rid of that specific problem.
Any ideas?
php wordpress woocommerce breadcrumbs storefront
add a comment |
In my Storefront wordpress I'm using the woocommerce product tags to display my products in an alternative way.
On the tag archive pages the breadcrumb says
Home > Products tagged “Example Tag” or rather Startseite > Produkte verschlagwortet mit „Example Tag“ since I have a German language site.
-> I want to get rid of the "Products tagged" ("Produkte verschlagwortet mit") and have the Example Tag (without the quotation marks) only displayed in the Breadcrumb:
Home > Example Tag ( Startseite > Example Tag)
I found a lot of stuff how to customize the breadcrumb in general, but nowhere how to red rid of that specific problem.
Any ideas?
php wordpress woocommerce breadcrumbs storefront
In my Storefront wordpress I'm using the woocommerce product tags to display my products in an alternative way.
On the tag archive pages the breadcrumb says
Home > Products tagged “Example Tag” or rather Startseite > Produkte verschlagwortet mit „Example Tag“ since I have a German language site.
-> I want to get rid of the "Products tagged" ("Produkte verschlagwortet mit") and have the Example Tag (without the quotation marks) only displayed in the Breadcrumb:
Home > Example Tag ( Startseite > Example Tag)
I found a lot of stuff how to customize the breadcrumb in general, but nowhere how to red rid of that specific problem.
Any ideas?
php wordpress woocommerce breadcrumbs storefront
php wordpress woocommerce breadcrumbs storefront
asked Aug 11 '17 at 9:19
mediamarxmediamarx
112 bronze badges
112 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You could select that item from Inspect Element and write custom CSS for it and set it to display: none;
1
No, since the text is in one Element and I want to keep a part (Example) of it visible <nav class="woocommerce-breadcrumb"><a href="example.com">Startseite</a><span class="breadcrumb-separator"> / </span>Produkte verschlagwortet mit „Example“</nav> --> And that Tag is changing, so I caan't replace it with CSS
– mediamarx
Aug 11 '17 at 9:53
add a comment |
Untested, but try this:
// Customize text strings
function my_gettext( $translation, $text, $domain )
switch ( $translation )
case 'Products tagged “%s”' :
$translation = __( '%s', 'woocommerce' );
break;
return $translation;
add_filter( 'gettext', 'my_gettext', 20, 3 );
If you're using a ThemeBlvd theme, do this instead:
// Customize "Products tagged" in breadcrumbs
function my_locals( $locals )
$locals['crumb_tag_products'] = '%s';
return $locals;
add_filter('themeblvd_frontend_locals', 'my_locals');
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f45631414%2fremove-the-products-tagged-from-woocommerce-tag-archive-breadcrumbs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could select that item from Inspect Element and write custom CSS for it and set it to display: none;
1
No, since the text is in one Element and I want to keep a part (Example) of it visible <nav class="woocommerce-breadcrumb"><a href="example.com">Startseite</a><span class="breadcrumb-separator"> / </span>Produkte verschlagwortet mit „Example“</nav> --> And that Tag is changing, so I caan't replace it with CSS
– mediamarx
Aug 11 '17 at 9:53
add a comment |
You could select that item from Inspect Element and write custom CSS for it and set it to display: none;
1
No, since the text is in one Element and I want to keep a part (Example) of it visible <nav class="woocommerce-breadcrumb"><a href="example.com">Startseite</a><span class="breadcrumb-separator"> / </span>Produkte verschlagwortet mit „Example“</nav> --> And that Tag is changing, so I caan't replace it with CSS
– mediamarx
Aug 11 '17 at 9:53
add a comment |
You could select that item from Inspect Element and write custom CSS for it and set it to display: none;
You could select that item from Inspect Element and write custom CSS for it and set it to display: none;
answered Aug 11 '17 at 9:33
ShahzaibShahzaib
14812 bronze badges
14812 bronze badges
1
No, since the text is in one Element and I want to keep a part (Example) of it visible <nav class="woocommerce-breadcrumb"><a href="example.com">Startseite</a><span class="breadcrumb-separator"> / </span>Produkte verschlagwortet mit „Example“</nav> --> And that Tag is changing, so I caan't replace it with CSS
– mediamarx
Aug 11 '17 at 9:53
add a comment |
1
No, since the text is in one Element and I want to keep a part (Example) of it visible <nav class="woocommerce-breadcrumb"><a href="example.com">Startseite</a><span class="breadcrumb-separator"> / </span>Produkte verschlagwortet mit „Example“</nav> --> And that Tag is changing, so I caan't replace it with CSS
– mediamarx
Aug 11 '17 at 9:53
1
1
No, since the text is in one Element and I want to keep a part (Example) of it visible <nav class="woocommerce-breadcrumb"><a href="example.com">Startseite</a><span class="breadcrumb-separator"> / </span>Produkte verschlagwortet mit „Example“</nav> --> And that Tag is changing, so I caan't replace it with CSS
– mediamarx
Aug 11 '17 at 9:53
No, since the text is in one Element and I want to keep a part (Example) of it visible <nav class="woocommerce-breadcrumb"><a href="example.com">Startseite</a><span class="breadcrumb-separator"> / </span>Produkte verschlagwortet mit „Example“</nav> --> And that Tag is changing, so I caan't replace it with CSS
– mediamarx
Aug 11 '17 at 9:53
add a comment |
Untested, but try this:
// Customize text strings
function my_gettext( $translation, $text, $domain )
switch ( $translation )
case 'Products tagged “%s”' :
$translation = __( '%s', 'woocommerce' );
break;
return $translation;
add_filter( 'gettext', 'my_gettext', 20, 3 );
If you're using a ThemeBlvd theme, do this instead:
// Customize "Products tagged" in breadcrumbs
function my_locals( $locals )
$locals['crumb_tag_products'] = '%s';
return $locals;
add_filter('themeblvd_frontend_locals', 'my_locals');
add a comment |
Untested, but try this:
// Customize text strings
function my_gettext( $translation, $text, $domain )
switch ( $translation )
case 'Products tagged “%s”' :
$translation = __( '%s', 'woocommerce' );
break;
return $translation;
add_filter( 'gettext', 'my_gettext', 20, 3 );
If you're using a ThemeBlvd theme, do this instead:
// Customize "Products tagged" in breadcrumbs
function my_locals( $locals )
$locals['crumb_tag_products'] = '%s';
return $locals;
add_filter('themeblvd_frontend_locals', 'my_locals');
add a comment |
Untested, but try this:
// Customize text strings
function my_gettext( $translation, $text, $domain )
switch ( $translation )
case 'Products tagged “%s”' :
$translation = __( '%s', 'woocommerce' );
break;
return $translation;
add_filter( 'gettext', 'my_gettext', 20, 3 );
If you're using a ThemeBlvd theme, do this instead:
// Customize "Products tagged" in breadcrumbs
function my_locals( $locals )
$locals['crumb_tag_products'] = '%s';
return $locals;
add_filter('themeblvd_frontend_locals', 'my_locals');
Untested, but try this:
// Customize text strings
function my_gettext( $translation, $text, $domain )
switch ( $translation )
case 'Products tagged “%s”' :
$translation = __( '%s', 'woocommerce' );
break;
return $translation;
add_filter( 'gettext', 'my_gettext', 20, 3 );
If you're using a ThemeBlvd theme, do this instead:
// Customize "Products tagged" in breadcrumbs
function my_locals( $locals )
$locals['crumb_tag_products'] = '%s';
return $locals;
add_filter('themeblvd_frontend_locals', 'my_locals');
answered May 6 '18 at 21:37
ZadeZade
4876 silver badges25 bronze badges
4876 silver badges25 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f45631414%2fremove-the-products-tagged-from-woocommerce-tag-archive-breadcrumbs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown