kocmocq
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Remove the “Product” prefix from attrinutes breadcrumb pathHi Gabriel,
The string has not been added manually, it’s a global issue on WooCommerce.
I have tested on several sites.“Clothing” at your attachment is a Category, not an attribute. Categories and tags not adds the “Product” string. This happens only at attributes.
If you add a new attribute with the name “Clothing” and slug “clothing” you will see the name “Product Clothing” at the breadcrumb path.
Here is a live example:
https://notisjewels.gr/material/gold-plated-22k/
Attribute name is “Material” but breadcrumb path display “Product Material”.
Hope that helps.
Thank you.
Forum: Plugins
In reply to: [WooCommerce] Remove the “Product” prefix from attrinutes breadcrumb pathHi Gabriel,
As you can see on screenshots, WooCommerce puts automatically in the breadcrumb path (before the attribute name) the “Product” prefix.
My attributes names are “Artists” and “Book Authors”. Woo prints “Product Artists” and “Product Book Authors”.
My question is how we can remove the “Product” prefix from attributes breadcrumb path?
Thank you.
Forum: Plugins
In reply to: [WooCommerce] Remove the “Product” prefix from attrinutes breadcrumb pathHi,
It’s on production level on localhost but this issue is global (on product categories and tags there is no “Product” prefix on breadcrumb.
I’m sending you screenshots from 2 different sites.
I’m using a clean installation with the latest versions of Woo + Storefront on PHP 8.0.
Hope that helps.Thank you!
IoannisForum: Plugins
In reply to: [WooCommerce] Fatal error with product attribute archive linksHi again,
After a couple hours of digging the solution was simple.
I changed this line:
echo $taxonomy->labels->name . ' ' . implode( $terms_array, ', ' );
To this:
echo $taxonomy->labels->name . ' ' . implode( ', ', $terms_array );
Now working.
Can you confirm that this is the right solution?
Thanks!