templateinvaders
Forum Replies Created
-
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Already in wishlist – linkHi @laser1ulm
We will add such a feature in the next update.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Removing products from whishlistHi @kiliot
1. The speed of requests is dependent on your web hosting performance. Maybe in your case, you need to check PHP error logs for any related records.
2. It could be a cache issue. You need to exclude the wishlist page slug from the page cache.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] widget_widget_top_wishlistHi @ms100
Yes, it looks like the widget settings are related to our plugin widget. You can delete this row.
The data is left in the database because such settings are generated by WordPress core and will be deleted only if the widget is removed from the sidebar. Since you deactivated our plugin you can delete such data from a database also.
Forum: Reviews
In reply to: [TI WooCommerce Wishlist] GoodHi @aflydesdev
Can you post any details of your issue? It looks like you don’t know how to use WooCommerce or our plugin 🙂
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Product Already in WishlistHi @kiliot
Our plugin saves each variation as a separate product on the wishlist. So when the user switches variations on the product page the hear icon will be filled for the added variations.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Product Already in WishlistHi @kiliot
It’s the default behavior in case you are using built-in plugin icons for add to wishlist button. Maybe your active theme overrides icons but you still can customize it with custom CSS rules.
For products that are already on the wishlist, the button has the class
tinvwl-product-in-listso you can style the button for this state separately.Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Need help in some cassesHi @assad1999
1. The google font can be applied to the wishlist button selector via font-family property like:
a.tinvwl_add_to_wishlist_button { font-family:"Google Font Name", serif; }You need to load a google font file on your page, check the official documentation on how to do it.
2. The wishlist button on the product page is disabled in case variation doesn’t choose by default.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Incompatible with PHP8.1?Hi @luislu
The Astra theme author should fix this because the warning log clearly shows that one property doesn’t validate by its code in this case. Our plugin adds menu items with a higher priority filter than mentioned property added by their filter.
Please, contact Astra support with this issue.
- This reply was modified 3 years, 7 months ago by templateinvaders.
Forum: Reviews
In reply to: [TI WooCommerce Wishlist] Dank je voor deze pluginHi @marckellens
Thanks for the review.
Your issue depends on your active theme.
You can contact us directly with a link to your website and we will find a solution.
We added integration for the mentioned plugin in the latest release.
Since the free version of our plugin is limited to force quantity always to 1 value the integration will use only min quantity value.
The premium version integration will support all features and will be included in an upcoming update.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] View wish list in my accountThis the most confused answer we have even seen here.
Our developer fixed your issue on your hosting by adding a custom solution to pass your specific setup restrictions yesterday.
We added this workaround to the public version that released few hours ago.
I’ve messaged you that you safe to update our plugin to the latest version because special for you our team added a workaround.
As I understand, it’s the way you have say thanks for the help from our team after “you solved issue on your own via our support chat”. You are even didn’t reply to the chat that all works good after workaround implemented on your host.
Thank you for supporting our community!
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Resource Preloaded With Link Preload Was Not UsedHi @linux4me2
We can’t make it conditionally only when buttons appear on pages because some setups use AJAX products listing and a lot of setups use header wishlist products counter also.
You can get an idea of how to make it conditionally for your requirements to follow the next snippet:
function tinvwl_wishlist_webfont() { if ( class_exists( 'TInvWL' ) && ! is_shop() && ! is_product() && ! apply_filters( 'wpml_object_id', tinv_get_option( 'page', 'wishlist' ), 'page', true ) ) { add_filter( 'tinvwl_load_webfont', '__return_false' ); } } add_action( 'wp_enqueue_scripts', 'tinvwl_wishlist_webfont', 9 );It will disable loading webfont for any pages excluding shop, product, and whilst page.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] View wish list in my accountThe latest version of our plugin included a workaround for your multisite setup.
Hi @cichomilosz
The integration with the WooCommerce TM Extra Product Options plugin updated in the latest version of our plugin. Your issue should be fixed.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] critical errorThere are a few ways we can move forward with your issue:
1. WordPress since version 5.2 sends emails to the admin in such cases. Check your admin email for a message with subject like – “Your Site is Experiencing a Technical Issue”. At the bottom of the email, you will see even more detailed information about the error, including the specific file and code that triggered it.
2. Enable debugging in your setup to get all PHP error details from your WordPress. You can check this article – https://ww.wp.xz.cn/support/article/debugging-in-wordpress/
3. You can provide access to your setup and we can do debugging. You can contact us directly via the help page on our website.