titodevera
Forum Replies Created
-
Hi barbarabax,
Are the products showing in the category pages?
Are you using a cache plugin?
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Custom style for Brand name in product loopHi felixsin,
You can use some custom CSS:
.pwb-brands-in-loop a{ font-weight: bold; text-transform: uppercase; }
??
Hi ibalabanov,
You don′t need to add any extra classes for add the img hover effect.
You can use the default classes, the css below is for brand logo on the single product page for example:
.pwb-single-product-brands a{ position: relative; display: inline-block; } .pwb-single-product-brands a::after{ content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-color: rgba(0,0,0,.5); z-index: 1; display: none; } .pwb-single-product-brands a:hover::after{ display: block; }
??
Hi stevenmaas,
Is posible to remove the stylesheet using the
wp_dequeue_style
function. The code below removes the stylesheet on all pages but you can add some extra checks here like!is_product()
.add_action( 'wp_print_styles', function() { wp_dequeue_style( 'pwb-styles-frontend' ); } );
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] display some brand in carouselHi alexdex!
Yes, it is possible.
1) Set your favourite brands using the star icons in
Products > Brands
.2) Use the param
items="featured"
in the[pwb-carousel]
shortcode for showing only the favourite brands.??
Forum: Reviews
In reply to: [Perfect Brands for WooCommerce] FANTáSTICOHola gloriosky,
En primer lugar agradecer tu valoración.
?Podrías detallarnos en qué consistiría esa mejora que propones exactamente?
Un saludo
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] image sizesHi glencds!
There′s not an optimal size, you can use the size you want based on your needs…
Can you provide to us your site link for check the brand description image size?
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand field metaI confirm that the algol.plus solution works like a charm
Thank you so much!
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Adding PWB to schema markupHi all!
PWB adds the the “brand” schema markup automaticly by default, using the
woocommerce_structured_data_product
filter hook. Be sure that other plugins or your theme is not removing this hook or overwriting the structured data.The plugin definitely is not abandoned, the new version PWB 1.7.7 has been released some hours ago. Remember that this is a free plugin, we mantein the plugin as better and frecuently as posible without benefits…
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand filter errorFixed in PWB 1.7.7 ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Allow for custom taxonomy slugHi Duke!
Thank you so much for your suggestions. We will consider it for next releases.
??
Hi theprojectgarments!
Please 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.
The widget is working for me and another thousands of users without problems, so I think that is unlikely a PWB bug… maybe something related with your theme…
??
Hi Jesin!
Yes, but only for the single product pages. I will consider change it for next releases…
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Remove text before brands linksHi roannamedina!
I recommend you remove the custom code that adds the prefix and use the new default option.
You can customize the text as your neeeds using the
pwb_text_before_brands_links
filter:/** * Allows you to customize the text before brand links in single product page */ add_filter('pwb_text_before_brands_links', function( $text ){ return 'PWB Rocks!'; });
??
Hi Jesin!
Add this code to your
functions.php
:add_action('woocommerce_after_shop_loop_item_title', function(){ echo do_shortcode('[pwb-brand product_id="'.get_the_ID().'" as_link="true"]'); });
You can use other action hooks if you want…
??