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
Printable View
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
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
which is supposed to either allow or disallow customers from having multiple wishlistsCode:
define('UN_ALLOW_MULTIPLE_WISHLISTS', false);
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
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)
to thisCode:<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>
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)
to thisCode: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 functionalCode:if ( UN_ALLOW_MULTIPLE_WISHLISTS!==true ) {
// zen_redirect(zen_href_link(UN_FILENAME_WISHLIST, '', 'SSL'));
}
includes/languages/english/extra_definitions/Your-Template/un_defines.php
Change this (around line 31)
on this pageCode: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');
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
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.
[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]
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:
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);
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.Code:zen_mail($to_name, $to_email_address, $email_subject, $email_body, $from_name, $from_email_address, array('EMAIL_MESSAGE_HTML' => nl2br($email_body)));
This should do it, if so, please post back so everyone has the fix.
Before I install the Wishlist module, does anyone have a site that I can see it in action?
Thanks
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.
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, :artist:
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.