Yes it does. Works on ZC1.5.5 on PHP7.0 just fine.
Printable View
Yes it does. Works on ZC1.5.5 on PHP7.0 just fine.
Hi all,
First hours of 2018 and still struggling to get my shop finalized.
I 'm setting up a store in ZC155 and all seems well so far.
However, testing now everything as (Mister X) I came across a small issue that I like to solve but cannot seem to find.
In the send email to a friend, there is a row that say's:
To view Mister X's Wish List, click on the link below or copy and paste the link into your web browser:
"https://www.misterx.nl/index.php?main_page=wishlist_find&wid=11"
In my received E-mail body, this webpage link is writen in text but not as a clickable link.
In my opinion it should be somewhere in the "includes/modules/pages/wishlist_email/header_php.php" file.
$email_body .= sprintf(TEXT_EMAIL_LINK, $from_name, zen_href_link(UN_FILENAME_WISHLIST_FIND, 'wid=' . $id, 'NONSSL', false));
I have search a lot but cannot find a solution.
Have someone an idea? :please:
Marcel
Hi all,
First hours of the year and still struggling to get all done as I want.
I 'm setting up a store in ZC155 and all seems well so far.
Testing now everything as (Mister X) and came across a small issues that I like to solve but can't seem to find how.
In the "send email to a friend", there is a row that say's:
To view Mister X's Wish List, click on the link below or copy and paste the link into your web browser:
"https://www.misterX.nl/index.php?mai...st_find&wid=11"
However in the received E-mail body, this webpage link is writen in text but not as a clickable link.
In my opinion it should be somewhere in the "includes/modules/pages/wishlist_email/header_php.php" file.
$email_body .= sprintf(TEXT_EMAIL_LINK, $from_name, zen_href_link(UN_FILENAME_WISHLIST_FIND, 'wid=' . $id, 'NONSSL', false));
As I understand, this is what it should be so I'm clueless.
Also when you didn't made a new wishlist yet, the name of the wishlist is at start "Default" and I like to change that, where can I do that?
I have search a lot but cannot find a solution.
Have someone an idea? :please:
Marcel
I am working on a new module for this.
Weird problem, I installed this but it adds to cart instead of a wishlist. Using 1.5.5f anyone?
I think found the problem:
this in tpl_product_info_display.php
Should be:PHP Code:
<!--bof Wishlist button -->
<?php if (UN_MODULE_WISHLISTS_ENABLED) { ?>
<div id="productWishlistLink" class="buttonRow back">
<?php echo zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT, 'name="wishlist" value="yes"');
?></div>
<?php }
else
{}
?>
<!--eof Wishlist button -->
PHP Code:
<!--bof Wishlist button -->
<?php if (MODULE_WISHLIST_ENABLED) { ?>
<div id="productWishlistLink" class="buttonRow back">
<?php echo '<a href="' . zen_href_link(FILENAME_WISHLIST, 'name=wishlist value=yes', 'SSL') . '">'.
zen_image_button(BUTTON_IMAGE_WISHLIST_ADD, BUTTON_WISHLIST_ADD_ALT);
// <?php echo zen_image_submit(BUTTON_IMAGE_WISHLIST_ADD, BUTTON_WISHLIST_ADD_ALT, 'name="wishlist" value="yes"');
?></div>
<?php }
else
{}
?>
<!--eof Wishlist button -->
Is "Wishlist" compatible with “Showcase with Prices”?
A friend is asking for advice on building a “Showcase with Prices” Store for Custom Knives he makes. He would like for the User to be able to create a “Wishlist” of showcased parts and customization options for a detailed quote of Price and Turnaround Time on a custom job.
It sounds like the Wishlist addon would work for him, but I am not clear if Wishlist is tied to Shopping Cart or will it also work in Showcase mode? I wanted to know one way or the other before giving him advice. He is very old school - Check or Money Order only with no CC or PayPal so Shopping Cart per se does not sound like a fit for him, as his customers don’t pay until some details are worked out, and then they don’t pay using a Checkout-friendly process.
Hoping this is a very simple question - if not, I can provide a more detailed description of what my friend is trying to do. Thank you in advance for any assistance you can provide.
Still curious as to whether or not Wishlist only works if Shopping Cart is turned on. I viewed the Zucando website demo and I can see and click the "Add to Wishlist" Button on the Product Details page but there is no link to the Wish List itself - is this because the Demo site is set to “Showcase with Prices”?
Most wishlist plugins require that the customer create an account with the store so that their wished-for items can be recorded in their customer record in the database.
lat9 I negelected to thank you for your advice. Revisiting this problem and will be installing/configuring Wish List this week.