woovina
Forum Replies Created
-
Thank you so much!
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] What’s this? wp-json/wishlist/v1/products@watchpci I have the same problem, sometime the Wishlist icon never show: https://demo.woovina.net/niche-00/
I have plan to use other plugin for all my websites.Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Site loading slow on installing this plugin@templateinvaders I saw this when check PageSpeed of our website in GTMetrix: https://nimb.ws/Kw86cB Does it affect page load speed?
@stantinv: I have the same problem, and it seems like function: Remove Product from Wishlist if added to cart doesn’t work. Please check.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@zyqz437 Strange! I can help you debug and fix this problem, but i need FTP account.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@zyqz437 Please try update WooCommerce to latest version and try go to WooCommerce > Status > Tools and click on the buttons: https://nimb.ws/jvUhol (then check again)
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@marxveix: You can open this file: wp-content\plugins\woocommerce\includes\widgets\class-wc-widget-price-filter.php (line 68-70) you will see this code:
if ( version_compare( get_option( 'woocommerce_db_version', null ), '3.6', '<' ) ) { return; }
That’s why Widget Price Filter doesn’t show on your website (because version of WC in your website is < 3.6). You can add this code into the file function.php of your theme to fix this problem:
function update_woocommerce_version() { if(class_exists('WooCommerce')) { global $woocommerce; if(version_compare(get_option('woocommerce_db_version', null), $woocommerce->version, '!=')) { update_option('woocommerce_db_version', $woocommerce->version); if(! wc_update_product_lookup_tables_is_running()) { wc_update_product_lookup_tables(); } } } } add_action('init', 'update_woocommerce_version');
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@fernashes I found the problem, that woocommerce_db_version doesn’t update after update WooCommerce. Even click on the button Update database in WooCommerce > Status > Tools. I’ve fixed the problem by change woocommerce_db_version in the database table (wp_options): https://nimb.ws/j4VNxD
Forum: Plugins
In reply to: [WooCommerce] Widgets doesn’t display in shop page after update@etiennep I found the problem, that woocommerce_db_version doesn’t update after update WooCommerce. Even click on the button Update database in WooCommerce > Status > Tools. I saw many people have same issues, so please check and solve this problem.
Forum: Plugins
In reply to: [WooCommerce] Price Filter@serafinnyc Price filter isn’t showing up, that’s why you only see categories (with counts)
@hasantaqvi I have got same issues after update WooCommerce to version 3.6.2. Hope developer will fix this problem soon.Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@fernashes: I’ve got same issue. Even change to use Storefront theme. Please check my screenshots:
1. Frontend: https://nimb.ws/EjAyZO
2. Backend (Widgets settings): https://nimb.ws/nly5ks