titodevera
Forum Replies Created
-
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] PWB Brand -> to product attributeHi mvrban,
The brands must be always associated to a parent product, I think you are simply using the variable products incorrectly.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] display some brand in carouselHi alexdex,
You can limit the height and width with some css, but i recommend you to upload all brand logos at same size.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Remove Brands from BreadcrumbHi villiamjit,
Add the code below to your
functions.php
:/** * Removes "Brands" from the WooCommerce breadcrumbs */ function custom_pwb_unset_brands_crumb( $crumbs ) { if ( is_tax( 'pwb-brand' ) ) { foreach ( $crumbs as $crumb_key => $crumb ) { //unset the "Brands" crumb if ( isset( $crumb[0] ) && $crumb[0] == 'Brands' ) { unset( $crumbs[$crumb_key] ); $crumbs = array_values( $crumbs );//restore array keys break; } } } return $crumbs; } add_filter( 'woocommerce_get_breadcrumb', 'custom_pwb_unset_brands_crumb' );
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Not showing brand descriptionHi mabol,
I think that if description shows with the after option but not with the before option, is for sure that the theme or a plugin is modifying or removing by some way the
woocommerce_archive_description
filter hook.Be sure that the description is not hidden by css too.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Page Title wrong on Brand PageHi kentsmythe,
This bug is not related with PWB, I recommend you contact with your theme′s support team.
Thanks for using PWB ??
Hi swaip!
“WooCommerce Show Single Variations by Iconic”, by default, product variations will inherit the categories ( product_cat ) and tags ( product_tag ) from the parent product.
If you want to get it work with PWB you should add this to your
functions.php
:function iconic_add_brands_to_variations( $taxonomies ) { $taxonomies[] = 'pwb-brand'; return $taxonomies; } add_filter( 'iconic_wssv_variation_taxonomies', 'iconic_add_brands_to_variations', 10, 1 );
More details here
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand page showing products from all brandsHi Karan,
We can′t reproduce the issue, maybe you can able a staging copy of the site for test purposes and give access to us… Email us for login details hola[at-here]albertodevera.es
??
You are welcome barbarabax! ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] filter not working on homepageHola maiols!
Hasta este momento no estaba contemplado que el widget pudiese funcionar en la home, aunque tras tu comentario me he dado cuenta de que es necesario cambiar esto, por lo tanto lo corregiré para la próxima versión de PWB (1.7.8)
Muchas gracias, un saludo!
Hi criki92,
It seems that your theme is not supporting well custom taxonomy term archives (like the brands pages). I recommend you ask to your theme′s support team.
I think that it′s not a PWB issue.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Custom style for Brand name in product loopYou are welcome felixsin!
Don′t forget to leave a review of the plugin if you like it.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Changing Brands Dropdown WidgetThere are only a few style attributes that can be applied to an <option> or <select> element.
This is because this type of element is an example of a “replaced element”. They are OS-dependent.
Therefore, I think that the recommended way is using the select2 library in this case.
Thanks for using PWB ??
Hi RwkY,
This is the correct behavior.
Coupon will be valid if there are at least one product of the specified brands in the cart.
Anyway, it is planned to improve the coupons integration for next releases.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Changing Brands Dropdown WidgetHi hbuk,
It seems that your theme is using select2, a jQuery library for enchance the default select field features. You can apply select2 to the brands dropdown too (but some development skills may be required).
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand page showing products from all brandsHi all,
Provide your system status report (WooCommerce/Settings/Brands/System status) and place a ` on the line before and after your pasted report as you would with code.
It seems that some other plugin or the theme is modifying the products query. Try deactivating other plugins and activating a default theme like Storefront.
Thanks! ??