Thread: Wishlist

Results 1 to 10 of 378

Hybrid View

  1. #1
    Join Date
    May 2011
    Posts
    3
    Plugin Contributions
    0

    red flag Re: Wishlist

    Quote Originally Posted by nagelkruid View Post
    This is what it should be:
    PHP Code:
    <!--bof Wishlist button -->
    <br class="clearBoth" />

    <?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_ADDUN_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 -->
    If that doesn't work, it is something else you need to fix.
    The other thread may be read better, if the problem persist, you may get better response there.

    any updates on this ?

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

    Default Re: Wishlist

    Quote Originally Posted by thewebdot View Post
    any updates on this ?
    if you are talking about the css button problem then most likely not any update...it would have been posted right here.

  3. #3
    Join Date
    Mar 2011
    Posts
    20
    Plugin Contributions
    0

    Default Re: Wishlist

    Hi I am running the latest wish list mod with Zen 1.3.9h. Can't provide a link i'm afraid as the mod is running on local host only at the mo. All was working fine until I changed all customer visible occurancies of "wishlist" to "My Gallery" Now i'm getting 500 errors every time I try to add to wish list.

    This is where the error happens - http://localhost/159-bus-at-piccadil...r_of_uploads=0.

    and Here : http://localhost/index.php?main_page=wishlist.

    Any ideas? I've gone through all of the files I have changed and can't see that I have changed anything I shouldn't have!

    Thanks
    Last edited by blackriver; 7 Nov 2011 at 12:42 PM. Reason: Addition of Error

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

    Default Re: Wishlist

    Quote Originally Posted by blackriver View Post
    Hi I am running the latest wish list mod with Zen 1.3.9h. Can't provide a link i'm afraid as the mod is running on local host only at the mo. All was working fine until I changed all customer visible occurancies of "wishlist" to "My Gallery" Now i'm getting 500 errors every time I try to add to wish list.

    This is where the error happens - http://localhost/159-bus-at-piccadil...r_of_uploads=0.

    and Here : http://localhost/index.php?main_page=wishlist.

    Any ideas? I've gone through all of the files I have changed and can't see that I have changed anything I shouldn't have!

    Thanks

    I would suggest---especially since the links don't go anywhere---to reupload the original files for the wishlist mod to ensure it is working again.

    Then carefully do the manual edits again...also have you checked your cache folder to see if the files show what kind of error there may need fixing?

    try the cache folder first...remember to empty it out if you have not done so yet.

  5. #5
    Join Date
    Mar 2011
    Posts
    20
    Plugin Contributions
    0

    Default Re: Wishlist

    Thanks DarkAngel - I reinstalled from original and now working fine - just need to make those edits again - very carefully!

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

    Default Re: Wishlist

    Quote Originally Posted by blackriver View Post
    Thanks DarkAngel - I reinstalled from original and now working fine - just need to make those edits again - very carefully!
    sometimes just leaving out a } or misspelling a word will kill our stores/sites

  7. #7
    Join Date
    May 2007
    Posts
    114
    Plugin Contributions
    0

    Default Re: Wishlist

    Just installed this module few days ago. It works great ! Thank you for this contribution!

    There are a few kinks that needed to be worked out. Finally resolved them and here are my solutions in case someone finds this useful.

    1. Problem #1:
    if not logged in, adding an item to wishlist sends you to shopping cart after logging in. There was a solution to ask people to login first, but i did not like that. I found this code to work perfectly well instead:

    PHP Code:
    <!--bof Wishlist button -->
    <?php
    if (UN_MODULE_WISHLISTS_ENABLED) {
    echo  
    '<a href="' zen_href_link(UN_FILENAME_WISHLIST'products_id=' .  (int)$_GET['products_id'] . '&action=wishlist_add_product',  'NONSSL') . '">' .  zen_image_button(UN_BUTTON_IMAGE_WISHLIST_ADD,  UN_BUTTON_WISHLIST_ADD_ALT'name="wishlist" value="yes"') .  '</a>';
    }
    ?>
    <!--eof Wishlist button -->
    2. wishlist default template has 'SSL' hard coded which may result in switching to SSL when it's not needed.
    Solution is to find and replace every instance of 'SSL' by $request_type in tpl_wishlist_default.php file .


    3. two calls to zen_href_link function in wishlist default template have a bug in them, which results in "Security Warning" in certain situations.

    in file tpl_wishlist_default.php need to replace the following lines:

    PHP Code:
             <?php echo zen_draw_form('wishlist',  zen_href_link(UN_FILENAME_WISHLIST,  zen_get_all_get_params(array('action'), 'SSL') .  'action=un_update_wishlist')); ?>
    by

    PHP Code:
             <?php echo zen_draw_form('wishlist',  zen_href_link(UN_FILENAME_WISHLIST,  zen_get_all_get_params(array('action')) . 'action=un_update_wishlist',  $request_type)); ?>

    and


    PHP Code:
    echo zen_draw_form('cart_quantity'zen_href_link(UN_FILENAME_WISHLIST,  zen_get_all_get_params(array('action'), 'SSL') . 'action=add_product')); 
    by

    PHP Code:
             echo zen_draw_form('cart_quantity',  zen_href_link(UN_FILENAME_WISHLIST,  zen_get_all_get_params(array('action')) . 'action=add_product',  $request_type)); 

  8. #8
    Join Date
    Aug 2008
    Location
    Sydney Australia
    Posts
    829
    Plugin Contributions
    0

    Default Re: Wishlist

    Will this module work on zencart version 1.51?
    Outdoorking
    Live Site www.outdoorking.com.au

  9. #9
    Join Date
    Mar 2008
    Location
    Brampton, Cumbria, United Kingdom, United Kingdom
    Posts
    816
    Plugin Contributions
    2

    Default Re: Wishlist

    Quote Originally Posted by Bruce1952 View Post
    Will this module work on zencart version 1.51?
    I have it working http://edencraftsupplies.co.uk/index...&products_id=1 top left corner

  10. #10
    Join Date
    Aug 2008
    Location
    Southern California
    Posts
    129
    Plugin Contributions
    0

    Default Re: Wishlist

    I installed this in 1.3.9h and seems to do what I need, except I'd like to have the Wish List sidebox constantly viewable when a customer logs in. Currently, customers don't know where or how to view/access their Wish List.

    I tell them to visit any product page for the sidebox to show up, but that's not ideal.

    Any tips or suggestions?

 

 

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

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