titodevera
Forum Replies Created
-
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Not working with WP 5.3 ?Hi all,
I can′t reproduce your issue, the “Filter by Brands” widget is working well for me with WP 5.3 .
Try disabling all plugins but WooCommerce and PWB, try changing to Storefront default theme too, then tell us the results…
Regards ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Fatal ErrorHola sergiohk,
Activa el debug de WordPress y revisa los logs de tu servidor para ver exactamente el error de PHP que se está produciendo, quedamos a la espera.
Un saludo ??
Solved ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Gaps in rows?Hi berkmh,
I recommend you upload the brand logos to the same size.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Mobile View change?Hi themassapothecary,
You can apply the styles you want, something like this for the border:
.pwb-all-brands .pwb-brands-col3{ border: 1px solid #ddd; }
Thanks for using PWB.
Hi Faustine,
It seems that your theme includes a brands taxonomy by default, I recommend you talk with theme′s support in order to unregister (if is possible without experiencing theme issues) or hide the default brands taxonomy.
Regards
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Mobile View change?Hi themassapothecary,
Try the css below:
.pwb-all-brands .pwb-brands-col3 > p { width: 100%; white-space: nowrap; text-overflow: ellipsis; }
??
Hi kirilld,
I can′t reproduce your issue, I think that the missing field is not direcly related to PWB. Try deactivating other plugins and changing to “Storefront” default theme.
??
Hi kirilld,
There is no “columns” param available for the at this point.
You can modify the number of columns per row using some basic custom CSS rules in your theme.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Mobile View change?Hi themassapothecary,
You can use custom CSS to adapt it, something like this:
@media screen and (max-width:480px) { .pwb-all-brands .pwb-brands-cols-outer .pwb-brands-col3 { width: 50%!important; float: left!important; } }
The previous code sets 2 columns for the smartphone view, then you should check your code because there is an
.elementor-widget-container
element that haves apadding-left
that causes the brands are not centered.??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] add brand to image alt tagHi khalil43,
You can do it using the
get_the_terms()
function, something like this:get_the_terms( $product_id, 'pwb-brand' );
More info here
??
Forum: Reviews
In reply to: [Perfect Brands for WooCommerce] Truly Per-fectThe shortcode should looks like this:
[pwb-all-brands per_page="500"]
Hi themassapothecary,
You can use the
per_page
param, specify a big number like:per_page="9999"
More info about shortcodes here
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] export a list with the ID and BRAND columnHi angeldavo,
I think you can do it with any plugin that allows export taxonomy terms.
You can use a SQL query to do it too, or build a php script using the WordPress built in functions…
Thanks for using PWB ??