I added the link to the header. When you click it you're taken to a login and setup screen. How can you go to the wishlist without being logged in?
Thanks
Jim
I added the link to the header. When you click it you're taken to a login and setup screen. How can you go to the wishlist without being logged in?
Thanks
Jim
it should be that a person should be logged in to see the wish list of theirs or another person...what good would it be to view it and if you need to make changes then you have to log in again--also to add something else.
best to log on first then go to wishlist, IMHO only
Suppose someone just wants to look and see if they can afford any of the items. I personally don't want to give info if I don't need to. Of course given that situation I'd use bogus info if I just wanted to look. Then I'd sign up if I was going to buy.
Thanks for your perspective.
Jim
lol I know about not wanting to hand out info...name and email should all be plenty for virtual downloads, but the wishlist is geared to your own only and putting your own items in it should suffice the need to view. As for browsing to see if the customer can afford it yet...most stores are viewable without logging in---just need to login to purchase and see account information
safer that way
I get having to be logged in to add or change your own wish list but I don't see why you need to be logged in to search for someone else's.
If I was looking for something to buy as a gift and wanted to see what someone had put on their wish list, I wouldn't want to have to create an account just to look.
I had a sneaky look at Amazon and they don't force you to log in to see someone else's wish list.
I'm not saying they have it right, but they usually do :)
It looks like this module stops you from delete your default wishlist.
Is that correct? When I try, I get the error 'Error deleting default wishlist.'
If this is done for a reason, I think it would be better to either remove the delet button altogether or show more of an explination in the error message.
I'm just checking this is how it is supposed to work and I haven't found a bug before I make any changes though!
I've spotted a bug in this module...You get an error when using special characters such as quote ' in the comment or name of a wish list.
To fix, in file includes/classes/wishlist_class.php, where ever there the name or comment is written or updated, I've changed the code to use prepare_input
$this->_oDB->prepare_input(xxx)
Where 'xxx' is the field being written, i.e. $name, $comment, $aArgs['name'], $aArgs['comment']
I nearly have this module working exactly as I like it now
I love the way when you're logged in and looking at your wishlist you can hit the Add to Cart button and the item is added without going through the product page.
I would love the same to happen when using the find wish list feature.
Currently, if I use the find function to find someone else's wish list, I am shown a screen with the Add to Cart buttons, but when I click them I go to the product page rather than just having the item added to my cart.
I've amended the code so the attribute options are in there as hidden fields but I still can't get it to work.
Any ideas what I'm missing?
So many options, so little success. Using 1.3.9h, css buttons. Test site only.
Here's what I've tried:
1, Try this:
<!--bof Wishlist button -->
<!--<br class="clearBoth" />
optional depending where the code is added-->
<?php if (UN_MODULE_WISHLISTS_ENABLED) {
if ( $_SESSION['customer_id'] ) {
echo '<div id="productWishlistLink" class="buttonRow back">';
echo zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT, 'name="wishlist" value="yes"');
echo '</div>';
} else {
echo '<div>';
echo UN_BOX_WISHLIST_LOGIN_TEXT;
echo '</div>';
}
} else {}
?>
<!--eof Wishlist button -->
Result: Click add to cart - product is added to cart
Click add to wishlist, product is added to cart.
2. as above but change zen_image_submit to zen_image_button
Result: Click add to cart - product is added to cart
Click add to wishlist, absolutely nothing happens.
3. Try this:
<!--bof Wishlist button -->
<!--<br class="clearBoth" />
optional depending where the code is added-->
<?php if (UN_MODULE_WISHLISTS_ENABLED) {
if ( $_SESSION['customer_id'] ) {
echo '<input type="hidden" name="wishlist" value="yes" />';
echo '<div id="productWishlistLink" class="buttonRow back">';
echo zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT);
echo '</div>';
} else {
echo '<div>';
echo UN_BOX_WISHLIST_LOGIN_TEXT;
echo '</div>';
}
} else {}
?>
<!--eof Wishlist button -->
Result: Click add to cart - product is added to wishlist
Click add to wishlist - product is added to wishlist.
4. as above but change zen_image_submit to zen_image_button
Result: Click add to cart - product is added to wishlist
Click add to wishlist, absolutely nothing happens.
5. Try this:
<!--bof Wishlist button -->
<div id="productWishlistLink" class="buttonRow back"><?php echo ('<a href="' . zen_href_link(UN_FILENAME_WISHLIST, zen_get_all_get_params(array('action', 'products_id')) . 'products_id='.(int)$_GET['products_id'].'&action=un_add_wishlist') . '">' . zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT) . '</a>'); ?></div>
<!--eof Wishlist button -->
Result: Click add to cart - product is added to cart
Click add to wishlist, product is added to cart.
6. as above but change zen_image_submit to zen_image_button
Result: Click add to cart - product is added to cart
Click add to wishlist, directed to wishlist page, but no products are added.
Any other options I've missed that someone can please point me to?
Help appreciated, thanks.
not usre if this is one you have tried but I am using V07 and my code, which puts item into the wishlist is this
<!--bof Wishlist button -->
<div id="productWishlistLink" class="buttonRow back"><?php echo ('<a href="' . zen_href_link(UN_FILENAME_WISHLIST, zen_get_all_get_params(array('action', 'products_id')) . 'products_id='.(int)$_GET['products_id'].'&action=un_add_wishlist') . '">' . zen_image_button(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT) . '</a>'); ?></div>
<!--eof Wishlist button -->
hope that is what you meant...this shows the button I made and it still does what it is supposed to do...add to wishlit goes to wishlist page --- add to cart goes to product page to add to cart
oops might be the exact code you have used already
Bookmarks