Thread: Wishlist

Page 12 of 38 FirstFirst ... 2101112131422 ... LastLast
Results 111 to 120 of 378
  1. #111
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Wishlist

    I've successfully installed this module, however my sidebox is missing the background (white) and the boarder around the edges and the bottom? Any idea what I do to fix this? Thanks

  2. #112
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Wishlist

    Okey doke

    I think there is a bug

    My customers are unable to set their wishlists as private or public

    this is linked to this variable
    Code:
    define('UN_ALLOW_MULTIPLE_WISHLISTS', false);
    which is supposed to either allow or disallow customers from having multiple wishlists

    If it is set to true, (ie the customer can have multiple wishlists)
    the customer can click on the "manage my wishlists" link and they get the option to set their wishlists as Public or private

    If it is set to false, (ie the customer is limited to one wishlist)
    There is no manage my wishlist button, so the customer doesn't get the option to set their wishlist as private

  3. #113
    Join Date
    Sep 2005
    Location
    Waikato, New Zealand
    Posts
    1,539
    Plugin Contributions
    3

    Default Re: Wishlist

    OK I have solved my problem, of customers being unable to make their wishlists public/private

    here is my solution

    NOTE

    This problem will only effect you if you have limited your customers to only one wishlist each

    As usual Back all effected files up first, and i make no guarantees, it works for me, but it may not work for you

    on this page
    includes/templates/Your-Template/un_wishlist/tpl_un_wishlist_default.php
    change this (around line 12)
    Code:
    <ul>
    	<li><a href="<?php echo zen_href_link(UN_FILENAME_WISHLIST_EMAIL, 'wid='.$id, 'SSL'); ?>"><?php echo UN_TEXT_EMAIL_WISHLIST; ?></a></li>
    	<li><a href="<?php echo zen_href_link(UN_FILENAME_WISHLIST_FIND); ?>"><?php echo UN_TEXT_FIND_WISHLIST; ?></a></li>
    	<?php if ( UN_ALLOW_MULTIPLE_WISHLISTS===true ) { ?>
    	<li><a href="<?php echo zen_href_link(UN_FILENAME_WISHLISTS, '', 'SSL'); ?>"><?php echo UN_TEXT_MANAGE_WISHLISTS; ?></a></li>
    	<li><a href="<?php echo zen_href_link(UN_FILENAME_WISHLIST_MOVE, 'wid='.$id, 'SSL'); ?>"><?php echo UN_TEXT_WISHLIST_MOVE; ?></a></li>
    	<?php } ?>
    </ul>
    to this
    Code:
    <ul>
    	<li><a href="<?php echo zen_href_link(UN_FILENAME_WISHLIST_EMAIL, 'wid='.$id, 'SSL'); ?>"><?php echo UN_TEXT_EMAIL_WISHLIST; ?></a></li>
    	<li><a href="<?php echo zen_href_link(UN_FILENAME_WISHLIST_FIND); ?>"><?php echo UN_TEXT_FIND_WISHLIST; ?></a></li>
    	<li><a href="<?php echo zen_href_link(UN_FILENAME_WISHLISTS, '', 'SSL'); ?>"><?php echo UN_TEXT_MANAGE_WISHLISTS; ?></a></li>
    	<?php if ( UN_ALLOW_MULTIPLE_WISHLISTS===true ) { ?>
    	<li><a href="<?php echo zen_href_link(UN_FILENAME_WISHLIST_MOVE, 'wid='.$id, 'SSL'); ?>"><?php echo UN_TEXT_WISHLIST_MOVE; ?></a></li>
    	<?php } ?>
    </ul>

    on this page
    includes/modules/pages/un_wishlists/header_php.php
    Change this (around line 9)
    Code:
    if ( UN_ALLOW_MULTIPLE_WISHLISTS!==true ) {
    	zen_redirect(zen_href_link(UN_FILENAME_WISHLIST, '', 'SSL'));
    }
    to this
    Code:
    if ( UN_ALLOW_MULTIPLE_WISHLISTS!==true ) {
    //	zen_redirect(zen_href_link(UN_FILENAME_WISHLIST, '', 'SSL'));
    }
    Ok it should be working now, the following two pages, are more aesthetic things than functional

    includes/languages/english/extra_definitions/Your-Template/un_defines.php
    Change this (around line 31)
    Code:
    define('UN_TEXT_MANAGE_WISHLISTS', 'Manage my Wish Lists');
    
    to whatever you want, i changed mine to
    
    define('UN_TEXT_MANAGE_WISHLISTS', 'Hide/Show my wishlist');
    on this page
    includes/templates/Your-Template/un_wishlists/tpl_un_wishlists_default.php
    Lots can be changed to make it prettier, but i don't have the time right now


    on this page
    includes/languages/english/Your-Template/un_wishlists.php
    This will allow you to alter the text labels that appear on the pages

  4. #114
    Join Date
    Aug 2004
    Posts
    764
    Plugin Contributions
    0

    red flag Re: Wishlist

    No one can ever seem to answer this question so I am reposting it to bump it up:

    When I try to email a friend (who has an HTML email client), the email message that I get just says:

    Joe Blow's Wish List at MJM magic
    $EMAIL_MESSAGE_HTML

    ...no links or list or anything. When I sent the same wishlist to a text only email client, it works fine.

    I have tried to change my Admin->Email Options->Email Admin Format from HTML to Text, but that didn't do anything.

    Any idea why the emails only contain the string "$EMAIL_MESSAGE_HTML" and nothing else? Is there a way to have the WishList module ONLY SEND IN TEXT AND NOT HTML? We are running ZenCart 1.3.7.
    - Jeff

  5. #115
    Join Date
    Dec 2005
    Location
    NY
    Posts
    188
    Plugin Contributions
    0

    Default Re: Wishlist

    [FONT=monospace]Jeff...this is working fine for me. I attached a screenshot of the begininngs of my email options. Dev team recommends using PHP as the transport. Not sure if that is doing it, or one of the other settings.

    Also, give me some time to look through the files as I thought I remember having the problem at one time also.
    [/FONT]
    Attached Images Attached Images  

  6. #116
    Join Date
    Dec 2005
    Location
    NY
    Posts
    188
    Plugin Contributions
    0

    Default Re: Wishlist

    Jeff, may have found it....look in this file:

    /includes/modules/pages/un_wishlist_email/header_php.php

    Original code from the 0.31a zip file on line 58 is this:

    Code:
    zen_mail($to_name, $to_email_address, $email_subject, $email_body, $from_name, $from_email_address);
    Try changing to this (which I have in my header_php.php file):

    Code:
    zen_mail($to_name, $to_email_address, $email_subject, $email_body, $from_name, $from_email_address, array('EMAIL_MESSAGE_HTML' => nl2br($email_body)));
    The change is near the end where the array statement begins. Best to take the whole line and copy it in (replace the existing line) so the comma's, parenthesis, etc. are correct.

    This should do it, if so, please post back so everyone has the fix.

  7. #117
    Join Date
    Aug 2005
    Posts
    62
    Plugin Contributions
    0

    Default Re: Wishlist

    Before I install the Wishlist module, does anyone have a site that I can see it in action?

    Thanks

  8. #118
    Join Date
    Dec 2005
    Location
    NY
    Posts
    188
    Plugin Contributions
    0

    Default Re: Wishlist

    Sure....go to my site in my signature below. Log in with an email of [email protected], PW of 123456.

    Once you log in, there is a link in the green header to go into the wishlist. Also when in an item page, there are also links by the title of the product, and also in the Add to Cart box to add products to the wishlist. There are some items already added in the test account list.

  9. #119
    Join Date
    May 2005
    Location
    Brussels belgium
    Posts
    203
    Plugin Contributions
    0

    Idea or Suggestion Re: Wishlist new addon

    Hello,

    Is it possible to add some admin possibilities to this contrib

    - possibilities via admin to add product in user's list
    - possibilities via admin to put comments in user's list

    because I would like to use the wishlist contrib for a baby born list


    thanks for your feedback

    Regards,
    Zen cart or nothing !!

  10. #120
    Join Date
    Dec 2005
    Location
    NY
    Posts
    188
    Plugin Contributions
    0

    Default Re: Wishlist

    titangen,

    This contrib is from the zen 1.2x days and is no longer being modified or supported. Unless some individual wants to take ownership and modify. I believe the only support is via this thread.

    Also, I believe in coming versions of Zen, the dev team has promised a built-in wishlist.

 

 
Page 12 of 38 FirstFirst ... 2101112131422 ... 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