titodevera
Forum Replies Created
-
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand page is not workingHi turkijefm,
We can offer specific support for every page builder that exists, but you should be able to use the shortcodes directly.
There are two options for display all the brands:
[pwb-all-brands]
or[pwb-az-listing]
. More info about shortcodes in the PWB wiki??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Remove Brand TabHi jonj1611,
Go to
WooCommerce > Settings > Brands > Single product
and disable the option called “Show brand tab in single product page”??
Hi varun96544,
The brand filter only shows the non empty brands for the current displayed products. Does the brands has visible products?
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Search Keeps Redirecting to a /brand/ Page?Hi jethrohazelhurst,
We will considere including a simple way to disable this behaviour for the next release.
Thanks for reporting.
Hi cecowe,
PWB is compatible with the default WooCommerce price filter… Are you using some plugin for filtering by price?
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Filter fatal error when no tax is setHi lexmazter,
The “Site Announcements” plugin is causing this issue really, they are calling “get_posts” function before they should. You can report this issue to the “Site Announcements” team or use another similar plugin.
Anyway, we will considere add some extra checks to avoid this issues in next releases.
Regards
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Limit the display of the marksHi dstu2525,
Give us some more details please… Where do you want to limit the display of the brands? Are you using a shortcode for display brands?
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Change Brands to BrandHi jonj1611,
You can use the
pwb_text_before_brands_links
filter hook:/** * Allows you to customize the text before brand links in single product page */ add_filter('pwb_text_before_brands_links', function( $text ) { return __( 'Brand', 'perfect-woocommerce-brands' ); } );
Regards
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Fatal error on some pages and paginationHi barbarabax,
I think that your issue is not directly related with Perfect WooCommerce Brands, you can try disabling your other plugins.
Regards
Hi paskcoltd,
You can try the code below:
add_filter( 'woocommerce_cart_item_name', function( $link_text, $cart_item, $cart_item_key ) { $_product = $cart_item['data']; $brands = implode(', ', wp_get_post_terms( $_product->get_id(), 'pwb-brand', ['fields' => 'names'] ) ); $link_text = '<div>' . __( 'Brand', 'perfect-woocommerce-brands' ) . ': ' . $brands . '</div>'; $product_permalink = apply_filters( 'woocommerce_cart_item_permalink', $_product->is_visible() ? $_product->get_permalink( $cart_item ) : '', $cart_item, $cart_item_key ); if ( ! $product_permalink ) { $link_text .= $_product->get_name(); } else { $link_text .= sprintf( '<a href="%s">%s</a>', esc_url( $product_permalink ), $_product->get_name() ); } return $link_text; }, 10, 3 );
??
Hi retroreiz,
The new PWB version fixes this issues, please update to 1.7.9 .
Thanks for reporting!
Hi anand99,
It seems that “WooCommerce Product Filter by WooBeWoo” does not support custom taxonomies. But as the WooBeWoo confirm to you in this topic, is planned to add this feature for next releases.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] How to useHi shashank8866,
Perfect WooCommerce Brands respects the WordPress filosofy, so if you can manage a WordPress site you will can use PWB as well.
Simply add the
Filter products by brand
widget to a sidebar and you will be able to filter by brands in product categories, shop page…??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Sort products by brandHi KatrineDS,
There is not a built-in option to do this, but you can develop your custom sorting options, so yes, you can order the catalogue by brands. More info here: Custom sorting options
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] How to replace “Brands” text in dropdownHi drevovoni,
You can use the
pwb_dropdown_placeholder
filter hook, adds the following code to yourfunctions.php
:/** * Allows you to customize the dropdown widget placeholder (>= 1.7.4) */ add_filter('pwb_dropdown_placeholder', function( $text ){ return 'PWB rocks!'; });
Regards
??