titodevera
Forum Replies Created
-
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Featured not workHi scanto!
Copy the shortcode that your′re using here please.
Can you provide to us a public link of your site?
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Featured not workHi scanto.
You should set your favourite brands first. Go to
Products > Brands
and clic on some stars.??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Homepage doesn’t load anymoreHi michabuff.
Can you enable WP_DEBUG please?
Then check your server logs for searching php errors.?Are you using some PWB shortcode/widget in the home page?
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Featured not workHi scanto.
[pwb-carousel items="featured" items_to_show="5" items_to_scroll="1" image_size="thumbnail" autoplay="true" arrows="true" hide_empty="false"]
is working for me.??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand description on pages 2,3, etcHi meksicus.
It′s a bug, description should be displayed on the first page only. We will fix it in the next PWB version.
Thanks for the report!
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Breadcrumbs?Hi portalp.
You can customize the store breadcrumb using the
woocommerce_breadcrumb_defaults
filter hook. Mor info here: Customize the WooCommerce breadcrumb??
Hi freeemulator
I can see the issues now.
Are you experimenting the same issues activating the parent theme? Maybe some child theme customization is causing the issues…
Can you provide us your server error log? Send it to hola[at]albertodevera.es please.
Thanks! ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Getting the brand into a Google Product FeedYou are welcome fautam!
??
Hi freeemulator
prepsos.com home is loading fine for me and the cache version too… If you disable PWB and menu still appearing weird i think the problem is not with PWB…
Yes, the notice can be related with your issues…
Are you setting your main menu correctly? Go to Appearance > Menus and check it
??
Hi freeemulator.
Your home is loading now and your menu looks similar in the home page and the other pages. ?Is the menu looking well if you disable PWB?
Try enabling WP_DEBUG for searching php errors.
??
Hi freeemulator!
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.
I recommend you to check your server logs for searching php errors.
Are you using some PWB shortcode/widget on home?
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Getting the brand into a Google Product FeedHi fautam.
The attribute you′re talking about is added by another plugin (Yoast SEO), and it has no direct relation with the brand names.
I have succesfully generated the Google Shopping feed including the brand names following this steps:
– Create a new Google Shopping feed with “Product Feed PRO”
– Configure in field mapping section: g:brand -> Brand (Dynamic attribute)Good luck! ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Add add nofollow link to shortcodeHi crool.
Yes, you can filter the shortcode output.
Add this to your
functions.php
:add_filter( 'do_shortcode_tag', 'pwb_custom_add_nofollow_to_links', 10, 4 ); function pwb_custom_add_nofollow_to_links( $output, $tag, $attr, $m ){ if( $tag == 'pwb-all-brands' ) $output = str_replace('<a href="', '<a rel="nofollow" href="', $output); return $output; }
??
You are welcome! Thank you for using PWB!
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brands dropdown not working on mobileHi vaschops.
I’m sorry for the delay, but remember that PWB is a fully free plugin, we answer your questions when we can.
It seems that your theme clones the widgets for using it in mobile, so the on change event will not available in the cloned dropdown. The code below solves the issue, attaching again the on change event to the cloned dropdown. Adds the code to your
functions.php
.add_action('wp_enqueue_scripts', function(){ $inline_js = 'jQuery(document).ready(function($){ $(".offcanvas_sidebars").on("change",".pwb-dropdown-widget",function(){ location.href = $(this).find(":selected").val(); }); });'; wp_add_inline_script('pwb-functions-frontend', $inline_js); }, 20);
??