Thread: Wishlist

Page 23 of 38 FirstFirst ... 13212223242533 ... LastLast
Results 221 to 230 of 378
  1. #221
    Join Date
    Dec 2005
    Posts
    77
    Plugin Contributions
    0

    Default Re: Wishlist

    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

  2. #222
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Wishlist

    Quote Originally Posted by jar3300 View Post
    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

  3. #223
    Join Date
    Dec 2005
    Posts
    77
    Plugin Contributions
    0

    Default Re: Wishlist

    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

  4. #224
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Wishlist

    Quote Originally Posted by jar3300 View Post
    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

  5. #225

    Default Re: Wishlist

    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 :)

  6. #226

    Default Re: Wishlist

    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!

  7. #227

    Default Re: Wishlist

    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']

  8. #228

    Default Re: Wishlist

    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?

  9. #229
    Join Date
    Apr 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: Wishlist

    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 -->
    <!--&ltbr 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.

  10. #230
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Wishlist

    Quote Originally Posted by heatherm View Post
    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 -->
    <!--&ltbr 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

 

 
Page 23 of 38 FirstFirst ... 13212223242533 ... LastLast

Similar Threads

  1. v151 Wishlist
    By Kevin205 in forum General Questions
    Replies: 0
    Last Post: 15 Jan 2013, 01:45 AM
  2. Wishlist
    By simplemedia in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 20 Apr 2012, 08:40 PM
  3. Wishlist 0.9
    By vinnyna in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Nov 2011, 03:52 PM
  4. 1.5.0 wishlist?
    By trickobrien in forum Upgrading to 1.5.x
    Replies: 2
    Last Post: 21 Oct 2011, 07:16 PM
  5. Wishlist
    By Dutchman in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 3 Oct 2007, 02:37 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR