Stan
Forum Replies Created
-
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Not maintaining My Account sidebarHello,
Glad you like our plugin.
What you are talking about is called endpoints and to achieve what you need, you should apply the “My Account” page as a parent page to the “Wishlist” page while editing it.Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] Validate canadian french translationUnfortunately there is not much we can help you in this case because translation is handled by WordPress polyglot teams directly. You can create a PTE request to become an editor for the Wishlist plugin in your language. This will grant you the ability to review translated strings and add/change the existing. Please, follow this link in order to get more info: https://make.ww.wp.xz.cn/polyglots/handbook/rosetta/roles-and-capabilities/pte-request/
Or you can find a GTE (General Translation Editor) for your locale and create an approval request for your submition here: https://make.ww.wp.xz.cn/polyglots/
Thanks for your time,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] How to remove Wishlist icon from category pageHi @jaak69,
Do you need to remove the button from the specific catory(s) or from all product listing pages?
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] Wishlist product open in a new tabHello @kasimrixa,
You can use the next snippet to make products open in a new window:
/** * External products buy button open in a new window. * * @param boolean $allow Settings flag. * @param array $wlproduct Wishlist Product. * @param WC_Product $product Product. * * @return boolean */ function external_products_buy_link( $allow, $wlproduct, $product ) { // If a product type is external. if ( is_object( $product ) && 'external' === $product->get_type() ) { // Create a button using product Url and button text. echo '<a href="' . $product->add_to_cart_url() . '" target="_blank" class="button alt">' . $product->single_add_to_cart_text() . '</a>'; // Disable default add to cart button. return false; } return $allow; } add_filter( 'tinvwl_wishlist_item_action_add_to_cart', 'external_products_buy_link', 100, 3 );Put the code into a functions.php file of your child-theme.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] Your Wishlist is currently empty.Hi @thebioguy,
The Wishlist page requires a shortcode in its content and it should be also applied as a “Wishlist page” in plugin general settings.
- Create a page in a “Pages” section in your dashboard and name it “Wishlist” or whatever you like.
- Open to edit this page and check if [ti_wishlistsview] shortcode persists in its content.
- Navigate to “TI Wishlist -> General Settings -> Wishlist Page Options” section in your dashboard and check if “My Wishlist” page is applied.
If the page has been managed correctly and the issue remains:
- You may need to re-save permalinks structure under the Settings -> Permalinks
- Exclude the Wishlist page from cached pages in case you are using any cache plugins or cache is applied on your server
Regards,
Stan- This reply was modified 6 years, 10 months ago by Stan.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] CHANGE COUNTER POSITIONThe rules should look something like this:
.wishlist_products_counter_number { position: absolute; background-color: #000; color: #fff; border-radius: 99px; width: 18px; height: 18px; top: -9px; right: 4px; text-align: center; font-size: 11px; font-weight: 700; line-height: 17px; padding-right: 2px; } .ast-sticky-active .wishlist_products_counter_number { top: 3px; }- This reply was modified 6 years, 10 months ago by Stan.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Pagination appears when it’s not neededHi @darinronne,
Sorry for the delay.
By default it’s set to show 10 items on a wishlist page. But you can set any number of displayed items by adding lists_per_page=”#” attribute into shortcode while managing a wishlist page. So, it will look like this:
[ti_wishlistsview lists_per_page="20"]You can contact us via our live chat in your WP dashboard -> plugin settings or submit your request here. So we will be able to chek the issue with pagination.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] can you share wishlist baskets?Hi @numtix,
It’s possible to share wishlists via some social networks and email. User B will be able to add those items to his cart and purchase them for himself but not for the Wishlist owner. This functionality is either related to a “Gift Registry”.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] SKU on wishlistHi @elisavet2ww,
It will require template customization to achieve this. If you are interested you can contact us for the details via our live chat in your WP dashboard -> plugin settings or submit your request here.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] WishlistYou have already submitted this issue via our support chat and it has been put into our todo list.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Forced translationWe are now closing this topic because the issue was fixed in one of the latest plugin updates
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Security Issues with spammersHi @vogelne,
You can enable “Require Login” option, so wishlist won’t be created until the user signs up.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] CHANGE COUNTER POSITIONHi @alexmares,
Actually it’s a design issue that could be resolved using custom CSS. There is an are in a plugin Style Options section where you can place your own CSS rules.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] wishlist mobile view crashesHi @wawrzyk,
The OceanWP theme has Wishlist plugin integration, so it’s very possible it was designed to look this way. We can suggest you to contact the theme author to clarify this case.
Regards,
StanForum: Plugins
In reply to: [TI WooCommerce Wishlist] Forced translationThe issue is in our todo list for the next updates