montebianco
Forum Replies Created
-
I have got this work… But without knowing why.
Things I did do… turned off plugins, optimized database, turned back on plugins, logged out, cleared browser caches…
Thanks
Nope
Yes, Wordfence, but even when deactivated unable to upload. Same error.
Thanks for quick reply.
Forum: Plugins
In reply to: [Hyyan WooCommerce Polylang Integration] Empty needle error after updateThanks, fixed with above line of code.
Hi, Thanks for the reply, yes the plugin does not Flash without ajax with your plugin setting: “Try to ajaxify the shop” set to no, by redirecting to the Shop page with the filtered items.
But that defeats the object of trying your plugin as we want ajax like the other ajax widgets that do not redirect.
The Woocommerce Price Filter is the widget that comes with the base Woocommerce install.
We are guessing your paid pro plugin will have the same issues?2. Added following to functions.php
function pwb_show_brands_in_loop(){ global $product; $product_id = $product->id; $product_brands = wp_get_post_terms($product_id, 'pwb-brand'); if(!empty($product_brands)){ echo '<div class="brand">'; foreach ($product_brands as $brand) { echo '<span>'.$brand->name.'</span>'; } echo '</div>'; } } add_action('woocommerce_before_shop_loop_item_title', 'pwb_show_brands_in_loop');
1. Didn’t see where the setting page was: I found the logo position under the woocommerce > settings > brands and set to before title on single product page.