Hi, thanks for trying our Wishlist plugin. The Save for Later feature is intended for registered users. That is it will be shown only for logged users. Can you confirm that you have tested as a user instead of visitor.
Thread Starter
lodix
(@lodix)
Hi. Yes, I tried while logged in as an admin. And again logged in with a customer role. Both times I had items in the cart and both times the Save for later functionality was not showing.
I am using Woocommerce cart shortcode and the cart page was built with Elementor on Astra theme.
We are using the hook “woocommerce_after_cart_item_name” for adding a save for later button on the cart page. Can you check whether that hook is present on your current theme. Is it possible to share your cart page URL or theme name that you are currently using. Thanks!
Thread Starter
lodix
(@lodix)
Hi. It turns out that I am an idiot. I was looking for a button at the bottom of the cart page that would save the full cart. But now I found the Save for later text below each product name. And it works correctly. Sorry for the confusion.
I like the simplicity of this plugin. And the quick response from support is amazing. Keep it up!
Just one suggestion: Please correct the wishlist login notice. Now it says: “You must be login to use Wishlist”. I think it should be”You must be logged in to use Wishlist” or “You must log in to use Wishlist”
Hi, you can use the following code to change the wishlist login notice
add_filter( 'awwlm_login_message_text', 'login_message_text', 20 );
function login_message_text() {
return 'You must log in to use Wishlist';
}