Follow the steps as below: From your WordPress Dashboard, go to Appearance > Customize > Content > Page Header section. Switch off the Enable Breadcrumbs option to remove it.
Change the breadcrumb separator
The default separator in the WooCommerce breadcrumb menu is ‘/’ (forward slash). You can change it to any character you wish with the following code snippet. You can replace the > with the HTML character entity code, you wish.
More from “Frontend Snippets”
- Change the ‘Home’ text.
- Change the breadcrumb separator.
- Change all the things.
- Change the home link to a different URL.
- Remove the breadcrumbs. Using a Woo theme.
Just install the plugin and then go to Settings > WC Breadcrumbs in your WordPress Admin Panel. You will land on the WooCommerce Breadcrumbs page. On this page, uncheck the “Enable breadcrumbs” checkbox and click the Save Changes button to remove the breadcrumbs from all product pages.
To find the options available for Breadcrumbs in the theme, head into:
- Admin -> WeltPixel -> Frontend Options -> Breadcrumbs.
- Admin -> WeltPixel -> Category Page -> General Settings -> Remove Breadcrumbs[Yes/No]
- Admin -> WeltPixel -> Product Page -> General Settings -> Remove Breadcrumbs[Yes/No]
Custom post type archives
- Log in to your WordPress website. …
- Click on ‘SEO’. …
- Click on ‘Search Appearance’. …
- Click on the ‘Content Types’ tab.
- Expand the custom post type section.
- Under the ‘Breadcrumbs settings for [CustomPostType] archive’, you can add or change the breadcrumb title.
- Click ‘Save changes’.
WooCommerce Breadcrumbs is a simple WordPress plugin that allows you to restyle the WooCommerce breadcrumbs. … For example, the default breadcrumbs simply display links with a separator character. Using WooCommerce Breadcrumbs, you can change them to display as an unsorted list of links instead.
If you want to remove categories and subcategories from product breadcrumbs on the product page you can use the woocommerce_get_breadcrumb hook. The code has been tested and works. Add it to your active theme’s functions. php.
WordPress doesn’t provide builtin breadcrumbs functionality. Thus you’ll have to either use a plugin or else code it yourself (or copy from the reference below). As a matter of fact, the plugin or custom code, if providing similar functionality, make not much of a difference.
How do I find my shop URL in WooCommerce?
How to Get Various WooCommerce Page URLs
- Shop URL. Get the WooCommerce Shop URL (this is the root category page) with the following: $shop_page_url = get_permalink( woocommerce_get_page_id( ‘shop’ ) );
- My Account URL. …
- Cart URL. …
- Checkout URL. …
- Payment Page URL. …
- Logout URL.
Here’s how to do that:
- In your dashboard, go to Appearance and click on Customize.
- Click on the Additional CSS section and add this: .woocommerce-page #content .single_wrap { float: none; width: 100%; } .woocommerce-page #sidebar { display: none; }
- Publish your changes.
How do I remove a shop title in WooCommerce?
To hide or remove the page title in WooCommerce you have to add custom CSS or PHP code to your theme files to remove the title from your page. To do this, log into your WordPress site and in the left side menu go to Appearance > Customize and the find and click Additional CSS to insert the custom code found below.