templateinvaders
Forum Replies Created
-
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] colors and text styleSorry for the delay in getting back to you! Based on your active theme styles, you can customize the sizes and colors of the wishlist counter in the header using the following custom CSS rules:
a.wishlist_products_counter{
position: relative;
} a.wishlist_products_counter::before {
color: white !important;
font-size: 30px !important;
} span.wishlist_products_counter_number {
display: block;
position: absolute;
min-width: 1.6em;
height: 1.6em;
line-height: 1.5em;
top: -1.3em;
inset-inline-end: -0.5em;
border-radius: 100%;
color: #fff;
background-color: #52afd5;
text-align: center;
font-size: 10px;
}These rules will help you adjust the position, font size, and color of the counter.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] TI Wishlist BOX in MY ACCOUNT OVERLAPPINGHi @sabahath
You can use the integrated chat on the plugin settings page or the help page on our website to send us all the details for your request.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Floating button (Save Settings)Hey there!
Just wanted to let you know that if you take a look at the right edge of your screenshot, you’ll notice a floating save button. This little guy will save you from having to scroll down every time you want to save your settings.
Hope that helps! 🙂
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] TI Wishlist BOX in MY ACCOUNT OVERLAPPINGHi @sabahath ,
The issue you’re facing with the wishlist is entirely dependent on your active theme and can be fixed in the following ways:
- You can adjust the table column sizes or hide some columns using custom CSS rules. However, since we do not have access to your website, we cannot provide specific help with this.
- You can disable the sidebar for the current page layout.
- You can set up the wishlist on a separate page using a full-width page template.
Please let us know if you need further assistance with any of these solutions.
You can use the next CSS rule:
header a.wishlist_products_counter {
color:#ffffff!important;
}Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Carry Wishlist Title to Order?Please check the attached screenshot for the order item wishlist reference. The wishlist name is linked to the wishlist frontend page, while the wishlist author is linked to the user edit page on the dashboard.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Carry Wishlist Title to Order?Hi @owlbooksdk
The feature is only available in the premium version of our plugin. When a product from the wishlist is purchased, the name of the wishlist, along with a link, is displayed as a reference for each item on the cart, checkout, and admin order screen.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Share buttonsHi @newcelic
The share feature is not available if you set up a wishlist under the WooCommerce My Account section because it is a user-protected area by default. This means that the share feature cannot be used to share wishlists from this section. The share feature can only be shown if you set up the wishlist on a custom page.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Marketing purposesHi @karamba
Our plugin does not have integration with Mailchimp. However, in the premium version of the plugin, you can access a list of all wishlists from the Dashboard. If you want to use the TI WooCommerce Wishlist Premium plugin for marketing purposes, you can take advantage of its built-in promotional emails feature, which allows you to create targeted email campaigns that include products from your customers’ wishlists.
Moreover, our plugin has integration with Automatewoo, which can be used with Mailchimp. This integration enables you to create a workflow in Automatewoo that sends promotional emails to customers who have added products to their wishlist. You can then use Automatewoo’s integration with Mailchimp to add those customers to a Mailchimp list, where you can create a promotional email campaign that targets those customers specifically.
Overall, combining the TI WooCommerce Wishlist Premium plugin with its built-in promotional emails feature and Automatewoo’s integration with Mailchimp can help you create effective marketing campaigns that target customers who have shown interest in your products by adding them to their wishlist
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] 404 error when adding to/viewing cartHey there!
It looks like you might be experiencing a cache issue. To make sure everything is working smoothly, just remember to clear your cache after updating the plugin settings. Let us know if you need further assistance.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Display author in wishlist titleSorry, missed one line during publishing it. Check the updated code.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Display author in wishlist titleHi @calceus
You can achieve this by using the next PHP snippet:
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] TI wishlist not redirect to login PageHi @baocong
By default, it redirects to WooCommerce my account page to login.
You can use the next PHP snippet to specify custom login page for our plugin:
https://gist.github.com/doozy/37004cc95add251ee78210fbfb519791
Hi @benrich
We really appreciate your help in identifying this issue and we are glad to report that it has been resolved in version 2.3.6. Thank you again for your assistance!
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Cannot add to wishlist / button not workingHi @urbijr
Your active theme disabled click events for the add to wishlist button via CSS.
You can use the next CSS rule to fix this issue:
a.tinvwl_add_to_wishlist_button {
pointer-events: auto!important;
}