templateinvaders
Forum Replies Created
-
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Heart Icon rightHi @tommifant
It depends on your active theme and we need to check your website to provide a solution.
You can use the chat feature on our plugin settings pages to get help.Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Share on productThe share feature is designed to share the wishlist URL. It’s not related to products on the current wishlist.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Sharing ButtonIt means that you have some JavaScript errors on your page by your active theme or some 3rd party code.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] change product title with more info custom fieldsHi @matiazar
You can hook the
tinvwl_wishlist_item_namefilter. It uses 3 params – $html_name, $wl_product_array, $WC_ProductDuplicated buttons issue always related to an active theme or 3rd party plugins that override WooCommerce templates. In this case, default WooCommerce hooks fired twice. You need to disable plugins one by one to locate the problem OR switch to a default theme. This issue could affect any plugin that uses default WooCommerce hooks not only the wishlist plugin.
@tessvstaten in your case the Google Tag Manager for WordPress plugin is also affected by this issue.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] how to change color of heart?Hi @abbasj
Your active theme overrides our plugin color settings for buttons on the product listings so you can use the next custom CSS rule to force color:
a.tinvwl_add_to_wishlist_button { color: red!important; }Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Wishlist on specific categoriesHi @izhetta
You can use the next PHP snippet with your custom conditions to hide/show add to wishlist buttons:
https://gist.github.com/doozy/41c8ad25ea7bb35fafa76d04d9ad745bForum: Plugins
In reply to: [TI WooCommerce Wishlist] Force to add parent of variable product to wishlistHi @nejckikelj
You can try the next PHP snippet to force add parent product for variable products:
https://gist.github.com/doozy/679808c2bea45d771b42dac75c428ff1Forum: Plugins
In reply to: [TI WooCommerce Wishlist] quantity field on single product pageHi @krugmedien
The quantity field behavior is available only in the premium version of our plugin and it handles from the box described case.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Messy Add On Details on Wishlist PageHi @jendqt
You can use the next PHP snippet to remove add-ons details from the wishlist page completely:
https://gist.github.com/doozy/3bc59b9e56d35c442452f71b4c105f3eForum: Plugins
In reply to: [TI WooCommerce Wishlist] Remove link behaviourSince your products are variable types wishlist saves each variation as a separate product from the product details page and as a parent product from the products listing page.
So removing from the wishlist on the second click will work only for the exact product that was added to the wishlist.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Meta fields are printed in wishlistHi @tinakvist
It looks like you disabled integration in plugin settings for the WooCommerce Product Bundles plugin. It should be enabled to display correctly bundled products on the wishlist page.
We also added integration for the WooCommerce Waitlist so just update our plugin and it will solve your issue.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Ordering product titles on multipage wishlistHi @pjots
Yes, the old snippet doesn’t work correctly with pagination. We updated the snippet:
https://gist.github.com/doozy/535e89ea60a2c8bef4bb0216ca16f96eJust update your code and it will solve this issue.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Remove product from wishlist on listing pageHi @arpitgshah
You need to enable the Remove product from Wishlist on second click option in the plugin settings to achieve such behavior.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Get total number of add wishlistHi @mohit097
You can use this PHP method
TInvWL_Public_WishlistCounter::counter()to get the total number of added products to a wishlist.