titodevera
Forum Replies Created
-
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand Filter not working on Category pageHi peeyooshk
This bug was fixed in version 1.5Thanks for using PWB! ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand Description showing TwiceHi hazelvardeleon!
This bug was fixed in version 1.5Thanks for using PWB! ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] All brands in one page?Hi sotos.
There is no option for showing up all brands but you can specify a very high number
per_page="99999"
The new version 1.5.1 fix this error, that affects only to old php versions (< php 5.5)
Thanks for using PWB! ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Create/Add brand to productHi nikksan.
No at this point, but this feature is planned for future releases.
Thanks for using PWB ??
Forum: Reviews
In reply to: [Perfect Brands for WooCommerce] Awesome pluginHi shreyans94
The project is totally alive. I′m working on a major update (1.5) with very interesting new features and bug fixes. There is available a 1.5 RC (Release Candidate) version on GitHub at this point, be patient please and remember that the plugin is completly free. I think you will must reconsider your vote when version 1.5 arrives.
Thanks for using PWB!
Hi Filipe.
It′s not a bug. It′s like if you are working with WordPress default theme and you visit a category that have no posts.
??
Hi Filipe.
pwb-all-brands
shortcode has an attribute for control the brands per page:per_page="20"
, but there is no option for control the number of columns, i think you can adapt it applying some css rulesAs you can read in the related topic you mentioned, WordPress does not allow HTML in taxonomy descriptions by default. I recommends you use Visual Term Description Editor. You should be able to add
<i class="fa fa-globe" aria-hidden="true"></i>
markup without any problem.In the next release, PWB will adds advanced html editor for brand descriptions by default (without using Visual Term Description).
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Hide Brand NameHi btgwebadmin.
You can use CSS to hide the brand names:
.pwb-all-brands .pwb-brands-cols-outer > div > *:first-child{ display: none; }
Thanks ??
- This reply was modified 7 years, 11 months ago by titodevera.
Repeated.
Continue here
Hi cglaudel.
Is “Artists” a taxonomy registered by your active theme?
Can you tell us what theme (and theme version) are you using?
Thanks ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Coupons Restriction for BrandsHi arbaazsha.
I think that your suggestion is very interesting. I will consider include it in future releases.Thanks ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Show brand description at the bottomRepeated topic.
Answered here: https://www.ads-software.com/support/topic/show-brand-description-at-the-bottom-2/
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Show brand description at the bottomHi minamo.
Yes, it is possible.
1) Go to
WooCommerce/Settings/Brands
and disable “Show brand description” option for hide the default description.2) Add the code below to your
functions.php
add_action( 'woocommerce_after_shop_loop', 'pwb_custom_brand_description' ); function pwb_custom_brand_description(){ $queried_object = get_queried_object(); if( is_a( $queried_object,'WP_Term' ) && $queried_object->taxonomy == 'pwb-brand' ){ echo '<p>'.$queried_object->description.'</p>'; } }
Thanks for using PWB ??
Next PWB version fix this issue with PHP 5.3 but at this point is highly recommended for security reasons use PHP version 5.6 or greater.
Thanks ??