Forums
Forums / Plugin: TI WooCommerce Wishlist / Max items per list
(@jubilo)
4 years, 9 months ago
It is possible to limit the list to a maximum of 5 products. This means that users can only add 5 products per list. Is this possible?
(@templateinvaders)
Hi @jubilo,
Our plugin has a hook that could be used for your case.
Check the draft code below:
add_filter('tinvwl_addtowishlist_not_allowed', 'tinvwl_not_allowed'); function tinvwl_not_allowed($not_allowed) { if (5 < TInvWL_Public_WishlistCounter::counter()) { $not_allowed = true; } return $not_allowed; }
The topic ‘Max items per list’ is closed to new replies.