WCBoost
Forum Replies Created
-
Forum: Plugins
In reply to: [WCBoost - Wishlist] Unnecessary AJAX RequestsHello,
Thanks for contacting us! By default, the plugin makes AJAX calls to ensure the wishlist is always updated if caching is enabled. This can be helpful for providing a seamless user experience, but it can also cause unnecessary load on other AJAX requests on your site.
And yes, you can disable this feature. Please follow these steps:
- Go to your WordPress dashboard.
- Navigate to WooCommerce > Settings > Wishlist.
- Look for the option related to AJAX loading update and disable it.
Here is the screenshot of the option:
In the future updates, we will improve this ajax request, so it won’t affect the loading time of the website.
Forum: Plugins
In reply to: [WCBoost - Wishlist] wpml errorHello,
Thank you very much for your feedback. Recently, we noticed this issue too. This is a new issue with the WPML Translation editor. Our team is working on fixing this issue.
At the moment, you can resolve this error by translating the product independently (using the WP editor instead of WPML Translation editor which only translates the texts in a post).
Please let me know if you have any question.
Forum: Plugins
In reply to: [WCBoost - Wishlist] Shortcode or widget to add a product to wishlistHello,
Due to not having heard from you for a while, we’re going to mark this topic as resolved. Please feel free to reach out at any time if you need further assistance.
Hello,
Thank you for your questions for our plugin.
- Yes, this plugin was tested and optimized for WPML. If you check the plugin’s files, you will see a configuration file that helps WPML detect and translate plugin’s strings properly.
- You don’t need to create attributes again. This plugin will work with existing attributes automatically.
If you have any questions, please feel free to ask.
Thank you
Hello,
Thanks for getting in touch with us. Actually, this is the default behavior of WooCommerce. If a product has more than 30 variations, WooCommerce will use AJAX to load variations.
You can try the following code to increase this limitation to 50:
add_filter( 'woocommerce_ajax_variation_threshold', function() { return 50; } );
I hope this helps! Please let me know if you have any other questions.
Forum: Plugins
In reply to: [WCBoost - Variation Swatches] Color swatches are whiteHello,
Thank you for your feedback. I’m glad to hear that you were able to resolve it on your end!
For future reference, it’s always a good idea to double-check any custom CSS modifications on your website. Sometimes unexpected changes can occur due to conflicting styles or overrides.
If you have any further questions or need assistance, feel free to reach out. We’re here to help!
Forum: Plugins
In reply to: [WCBoost - Wishlist] Shortcode or widget to add a product to wishlistHello,
This plugin provides a shortcode that lets you add a wishlist button to your page. You can apply this shortcode on your page.
[wcboost_wishlist_button product_id="123"]
Thank you
Forum: Plugins
In reply to: [WCBoost - Variation Swatches] Remove labels from image swatchHello,
Thanks for reaching out. Regarding your questions:
- I noticed there is custom CSS on your website that forced the label to always be visible. You can view this screenshot for more details:
https://prnt.sc/D8yB_aj_nKYs
To fix this issue, you should find and remove that custom CSS. Or you can try this CSS to hide the label:
.wcboost-variation-swatches.wcboost-variation-swatches--image .wcboost-variation-swatches__name { display: none; }
2. There is another CSS that remove the border of the selected swatch. You can view this screenshot to see the detail:
https://prnt.sc/vwuFJ3WlHWN3You can try this CSS to add a background to the selected item.
.wcboost-variation-swatches--image .wcboost-variation-swatches__item.selected { background-color: #333; }
Thank you
Forum: Plugins
In reply to: [WCBoost - Variation Swatches] Stock available BugHello,
Thanks for your feedback. We’ve made a test on our website, the plugin load available options. It means the options “44, 46, 48” should be being loaded on your product page.
Please check the version of the plugin and update it if it isn’t the latest version (v1.0.15).
Thank you
Forum: Plugins
In reply to: [WCBoost - Wishlist] “Add To Cart” and “Download” Buttons in the WishlistHello,
Direct downloading from the “Wishlist” page is currently not possible with the current version of the plugin.
We are aware of this limitation and will try to find a solution for it. However, we do not have an ETA for when this feature will be available.
Forum: Plugins
In reply to: [WCBoost - Wishlist] Action Scheduler: 183839 past-due actions foundThank you all of your feedback! In the latest version of the plugin, this issue was fixed.
Forum: Plugins
In reply to: [WCBoost - Wishlist] Pro version WishlistsHello,
The Pro version of our plugin that allows multiple wishlists is currently under development.
Our team has just released the Pro version for the plugin WCBoost – Variation Swatches, and now we are working hard to release the Pro version as soon as possible.
In the meantime, you can subscribe to our newsletter to get notified as soon as the Pro version of the wishlist plugin is released. You can visit our website to join the wait list with the form at the footer.
Thank you
Forum: Plugins
In reply to: [WCBoost - Variation Swatches] Disable “clear” bottonYou’re welcome! I’m glad I could be of assistance. Please don’t hesitate to reach out if you have any further questions.
Forum: Plugins
In reply to: [WCBoost - Products Compare] Putting a filter for the product comparison pageHello,
Thank you for your suggestion. It is great idea to improve the user experience. We added it the the roadmap of the plugin.
Forum: Plugins
In reply to: [WCBoost - Variation Swatches] Disable “clear” bottonHello,
Actually, it should be controlled by the theme. But you can try this CSS to hide the “Clear” button.
.variations_form .reset_variations { display: none !important; }