WPClever
Forum Replies Created
-
Forum: Plugins
In reply to: [WPC Grouped Product for WooCommerce] Limitless quantity of grouped productsHi @miroruse
Please update our plugin to the latest version 4.0.2, and clear the cache before testing again. I’ve fixed this issue ??
Forum: Plugins
In reply to: [WPC Frequently Bought Together for WooCommerce] PHP Errors with PluginThis error was caused when you remove an associated product from your site.
We’ve fixed it in the latest version 5.0.3. Please update our plugin and try again.
Hi @egocefalo
It still works fine on our demo page https://demo.wpclever.net/woosl/ and other customer sites. So, seems to have a conflict with another plugin or the theme on your site.
You can duplicate your site and then deactivate plugins one by one to check. If still don’t successful, please contact me via our website’s Contact page, then I’ll help you do further check.
Forum: Plugins
In reply to: [WPC Composite Products for WooCommerce] Deprecated hook usedHi @markisu72
Thanks for informing us of this issue!
Please update our plugin to the latest version 5.5.0. We’ve fixed it ??
Forum: Reviews
In reply to: [WPC Fly Cart for WooCommerce] I like it but it has a problemThanks for your rating and feedback!
To exclude unpurchasable products from the suggested products, please add the below snippet (How to add custom code?):
add_filter( 'woofc_suggested_products', 'woofc_suggested_products_exclude_unpurchasable' ); function woofc_suggested_products_exclude_unpurchasable( $suggested_products ) { foreach ( $suggested_products as $k => $suggested_product_id ) { $suggested_product = wc_get_product( $suggested_product_id ); if ( ! $suggested_product || ! $suggested_product->is_in_stock() || ! $suggested_product->is_purchasable() ) { unset( $suggested_products[ $k ] ); } } return $suggested_products; }
Forum: Plugins
In reply to: [WPC Brands for WooCommerce] Bug with output bufferingHi @tdgu
Thanks for the detailed error report. I’ve fixed it and released an updated version 1.1.1
Forum: Reviews
In reply to: [WPC Brands for WooCommerce] Please updateThank you for that link. I’ve fixed it and released an updated version 1.1.1 ??
Forum: Reviews
In reply to: [WPC Brands for WooCommerce] Please updateHi @fungody123
I’ve tested it on PHP8 and it works fine without any errors. So, could you please provide the detailed security notice?
Forum: Plugins
In reply to: [WPC Frequently Bought Together for WooCommerce] Can’t select any productHi @ajaymalik14
This version only supports adding simple products. You can choose the Simple product type for searching here https://www.screencast.com/t/sA0pAXKKzKx
Forum: Reviews
In reply to: [WPC Frequently Bought Together for WooCommerce] AwesomeHi @ajaymalik14
This version only supports adding simple products. You can choose the Simple product type for searching here https://www.screencast.com/t/sA0pAXKKzKx
Hi @panatapattu
However, you still can create an optional bundle by enabling “Custom quantity” https://www.screencast.com/t/e9OpdFLx2j2 and then setting the Minimum as zero. So, if the buyer wants to remove a product from the bundle, they can change the quantity of that product to zero https://www.screencast.com/t/U1ZuHnkgymrv
Hi @inceweb
Yes, that is right! If you choose the position above or under the add-to-cart button, it will be hidden if the product is out-of-stock. You can choose another position here https://www.screencast.com/t/YuZfBPx0x or use shortcode to place it where you want.
About the JS error, seem you’re using jQuery at a version lower than 3.0. Please update our plugin to the latest version 3.2.2, and clear the cache before testing again. We’ve fixed this issue.
Forum: Plugins
In reply to: [WPC Linked Variation for WooCommerce] WPML CompatibilityCurrently, linked products won’t be translated automatically. So, you can switch to a language and then add a new linked https://www.screencast.com/t/RmiOVLWNv0i for products in that language. It will work correctly https://www.screencast.com/t/QBJhYNZs
@sadeeke currently, it only works with the variation that specified attributes https://www.screencast.com/t/lQv75IPB. So, if you use “Any…” here https://www.screencast.com/t/RZYqJCcwzJ6, it won’t work correctly. We’ll try to improve it soon.