templateinvaders
Forum Replies Created
-
Forum: Reviews
In reply to: [TI WooCommerce Wishlist] Useful ToolHi @trevor47
Thanks for the review but it seems that you mixed up the review because our plugin is not related to broken links.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Trying to Access Array Offset on Value of Type NullForum: Plugins
In reply to: [TI WooCommerce Wishlist] heart icon shows double on sold out pagesForum: Plugins
In reply to: [TI WooCommerce Wishlist] MultisiteHi @sviatoy
Our plugin doesn’t design to activate/deactivate in the network mode because it requires individual settings for each site.
The premium version of our plugin has a feature to send promotional emails but it runs on per product basis. So it will not send in bulk to all users but only to users that have a such product on a wishlist.
Maybe the next snippet will be useful to get all emails of wishlists owners directly from the database with a simple SQL query (snippet uses default table prefix that could be different):
SELECT t1.user_email FROMwp_usersAS t1 JOINwp_tinvwl_itemsAS t2 ON t1.ID = t2.author GROUP BY t1.user_email;Forum: Plugins
In reply to: [TI WooCommerce Wishlist] CRITICAL Uncaught ErrorHi @jayhan
Thanks for the bug report. The issue fixed in the version 2.0.17
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] How To Remove ShortcodeHi @tungue
Our plugin doesn’t insert automatically a shortcode for the wishlist table on my account page. It means that you need to check the content of this page if the shortcode persists and maybe you added it via some custom PHP code.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Wishlist icon not showing on product with galleryHi @yurbshop21
Can you post a direct link where we can check the issue with add to wishlist button and products with galleries?
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Tiny Icon Since UpdateHi @tgjr
Since our plugin doesn’t provide such a styling for wishlist icons you need to check with the theme author about this issue.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] TI Woocommerce Wishlist icon positionHi @ersva
Your active theme uses a separate mobile menu that doesn’t include a wishlist icon.
You need to check with the theme author about how to add a wishlist icon on the mobile menu, also.
Hi @tarjeet98
1. You can add {product_image} placeholder with the next snippet and use it in plugin options:
https://gist.github.com/doozy/3ec779f14a1e83dcee393c25004aa65e2. You need to disable the option “Redirect to Wishlist” and use the next snippet to delay the popup close:
add_filter( 'tinvwl_popup_close_timer', function () { return 999999; } );3. The styling and animation depend on your active theme. We can’t suggest you any solution to this point, unfortunately.
- This reply was modified 3 years, 6 months ago by templateinvaders. Reason: Added answer #3
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] FANTASTICO …!We are now closing this topic and mark it as resolved due to inactivity. If the issue remains please, feel free to re-open it at any time.
Can you contact us directly via our website or support chat on the plugin settings page for further debugging of your issue?
This error can be thrown in two cases for the remove event:
1. The wishlist product ID doesn’t exist in database. Could you check failed request if such wishlist product ID exists in the wp_tinvwl_items table?;
2. The WordPress nonce can’t be validated. Maybe old nonce cached on this page, but if other events works well it shouldn’t be the bottleneck.So both cases can be because wishlist page cached. You need to exclude wishlist page slug from all cache options.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Empty wishlist after latest updateFrom the 2.0.13 version to the 2.0.14 version, only one file was updated and its JavaScript asset. The fix related to the wishlist products counter in the Woostify theme.
So it’s impossible that this change affects the wishlist table.
I suggest you make an update again and clear all possible cache before testing the wishlist page issue.