Stan
Forum Replies Created
-
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Your Wishlist is currently emptyMake sure that your Wishlist page is set in plugin settings and it also includes a shorcode
[ti_wishlistsview]in its content.Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] How do I add custom field coloumnHi @mrgarry05 ,
Yes, you will have ro override templates. Our plugin has similar functionality to WooCommerce for template overrides. All you need is to copy & paste the Wishlist plugin template into a ..\woocommerce directory of your child-theme to reflect the changes.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] BUTTON STYLE NOT WORKINGI cannot check on what is wrong with the styles because you are using an Autoptimize plugin and all CSS is minified.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] BUTTON STYLE NOT WORKINGYou need to apply Custom CSS Calss as button in plugin options. Then re-save the settings and clear cached minified JS & CSS files in your Autoptimize plugin.
Hope this helps.Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] Center “Add to wishlist” in shop pageHi @jmdfrancois,
You can use this custom CSS to center your button on product listing pages:
ul.products li .tinv-wraper { text-align: center; }Hope this helps.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] Rename Wishlist Tab in My AccountHi @mrgarry05,
Can you submit this issue via our help form here with all the details, so we can investigate the issue further?
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] Bundle product issueYou don’t need to create an account. Just fill in the form and submit your issue
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Bundle product issueForum: Plugins
In reply to: [TI WooCommerce Wishlist] Wishlist icon is not displayedHi @amino01,
It depends on your active theme. The Wishlist counter can be added into the theme in several ways:
1. Using Wishlist Products Counter widget that is included with our plugin
2. As a menu item from plugin settings
3. By placing the next snippet into functions.php file of your theme/child-theme
`if ( ! function_exists( ‘tinvwl_shortcode_products_counter’ ) ) {
/**
* Output Wishlist counter shortcode.
*/
function tinv_integration_wishlist_counter(){// Check if WooCommerce Wishlist Plugin activated.
if (defined( ‘TINVWL_LOAD_FREE’ ) || defined( ‘TINVWL_LOAD_PREMIUM’ )) {
?>
<!– HTML wrap start –>
<?php echo do_shortcode( ‘[ti_wishlist_products_counter]’ ); ?>
<!– HTML wrap end –>
<?php
}
}
// Hook output to action.
add_action(‘action_spot_name’, ‘tinv_integration_wishlist_counter’);
}`4. By a direct call in the theme template e.g. header.php
`// Check if WooCommerce Wishlist Plugin activated.
if (defined( ‘TINVWL_LOAD_FREE’ ) || defined( ‘TINVWL_LOAD_PREMIUM’ )) {
?>
<!– HTML wrap start –>
<?php echo do_shortcode( ‘[ti_wishlist_products_counter]’ ); ?>
<!– HTML wrap end –>
<?php
}`
After that you may also need to style it to fit your theme design.Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] Product ID in shortcodeHi @aliferis,
Yes, it’s possible. The shortcode should look like this:
Single product:
[ti_wishlists_addtowishlist product_id="93"]
Variation:[ti_wishlists_addtowishlist product_id="93" variation_id="94"]Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] WishlistWe are now closing this topic and mark it as resolved due to inactivity. If you still have any questions or concerns please, fill free to re-open it at any time.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] not able to deselect wishlist link/icon from menuBoth these issues are related to the theme and third party addons that extend the default WooCommerce functionality
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Thumbnail in Wishlist pageYou are welcome @shoptak 🙂
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] not able to deselect wishlist link/icon from menu1) There is an option in plugin settings to to set the button position as “Above Thumbnail”. It will show exactly like on your screenshot. If if doesn’t work, it means that the position is hardcoded in your theme and you will have to ask the theme support for assistance.
2) There is also an option to apply “Custom CSS Class” for a button that allows you to manage the look then to fit your needs. Usually any theme includes styles for the class button, so you can use it too.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Wishlist Icon Hover VisibilityYes, it will work in a premium version also.
I’ve checked the mobile look and the position seems to be the same on my end. Nevertheless you can set the margin-top to “0” if you like and re-check how it goes.