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;








2















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?










share|improve this question






























    2















    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?










    share|improve this question


























      2












      2








      2








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 11 '17 at 9:19









      mediamarxmediamarx

      112 bronze badges




      112 bronze badges

























          2 Answers
          2






          active

          oldest

          votes


















          0














          You could select that item from Inspect Element and write custom CSS for it and set it to
          display: none;






          share|improve this answer




















          • 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



















          0














          Untested, but try this:



          // Customize text strings
          function my_gettext( $translation, $text, $domain )
          switch ( $translation )
          case 'Products tagged &ldquo;%s&rdquo;' :
          $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');





          share|improve this answer



























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            You could select that item from Inspect Element and write custom CSS for it and set it to
            display: none;






            share|improve this answer




















            • 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
















            0














            You could select that item from Inspect Element and write custom CSS for it and set it to
            display: none;






            share|improve this answer




















            • 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














            0












            0








            0







            You could select that item from Inspect Element and write custom CSS for it and set it to
            display: none;






            share|improve this answer













            You could select that item from Inspect Element and write custom CSS for it and set it to
            display: none;







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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













            • 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














            0














            Untested, but try this:



            // Customize text strings
            function my_gettext( $translation, $text, $domain )
            switch ( $translation )
            case 'Products tagged &ldquo;%s&rdquo;' :
            $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');





            share|improve this answer





























              0














              Untested, but try this:



              // Customize text strings
              function my_gettext( $translation, $text, $domain )
              switch ( $translation )
              case 'Products tagged &ldquo;%s&rdquo;' :
              $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');





              share|improve this answer



























                0












                0








                0







                Untested, but try this:



                // Customize text strings
                function my_gettext( $translation, $text, $domain )
                switch ( $translation )
                case 'Products tagged &ldquo;%s&rdquo;' :
                $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');





                share|improve this answer













                Untested, but try this:



                // Customize text strings
                function my_gettext( $translation, $text, $domain )
                switch ( $translation )
                case 'Products tagged &ldquo;%s&rdquo;' :
                $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');






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 6 '18 at 21:37









                ZadeZade

                4876 silver badges25 bronze badges




                4876 silver badges25 bronze badges






























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript