Re: Save For Later Support Thread
Thanks for your reply, it's much appreciated.
Well I shall keep my eyes peeled and I don't have too many items with attributes anyway, so I think I would still benefit. Either way, I was able to install your plugin easily and I'm grateful for it, as it's still a really good feature to have. Thanks again.
Re: Save For Later Support Thread
I am doing final testing on the Save for Later from product info page feature that several users have requested. It should be ready soon.
Re: Save For Later Support Thread
Quote:
Originally Posted by
swguy
I am doing final testing on the Save for Later from product info page feature that several users have requested. It should be ready soon.
Another amazing software guy contribution! This sounds awesome!
Re: Save For Later Support Thread
Save for Later 1.4 is now available.
Re: Save For Later Support Thread
Quote:
Originally Posted by
swguy
Save for Later 1.4 is now available.
I just downloaded it :) If our customers already have items in their save for later, is the sql going to drop all of that info?
Re: Save For Later Support Thread
Quote:
Originally Posted by
ksoup
I just downloaded it :) If our customers already have items in their save for later, is the sql going to drop all of that info?
Just upload the new files and make the other changes in the readme; there are no database changes in this version vs. prior versions.
Re: Save For Later Support Thread
Quote:
Originally Posted by
swguy
Just upload the new files and make the other changes in the readme; there are no database changes in this version vs. prior versions.
Thank you for the fast response. :) Will do :)
Re: Save For Later Support Thread
Hi
I need help. I've tried but obviously don't know what I'm doing. I'm using CSS Buttons and want the Save For Later button on the Product Info page to display the same as the other CSS buttons i.e., same appearance as the 'Add to cart' button.
By following and manipulating the code for a 'submit' button, I've got it looking right but it is not functioning correctly i.e., it is 'adding to cart' and not adding to 'save for later'.
Save for later button code:
Code:
<!-- bof save for later -->
<?php
if (isset($_SESSION['customer_id']) && $_SESSION['customer_id'] != '') {
echo "<br /><br />";
echo '<input type="submit" value="' . BUTTON_SAVE_FOR_LATER_ALT . '" name="sfl" />';
}
?>
<!-- eof save for later -->
My non-working code attempt:
Code:
<!-- bof save for later -->
<?php
if (isset($_SESSION['customer_id']) && $_SESSION['customer_id'] != '') {
echo " ";
echo zen_image_submit(BUTTON_IMAGE_SAVE_FOR_LATER, BUTTON_SAVE_FOR_LATER_ALT);
}
?>
<!-- eof save for later -->
I'm assuming that there is a value that needs to be specified to get the 'save for later' function instead of the 'add to cart' function, but I don't how or where this might be specified.
Appreciate any assistance.
Cheers
GAM
Re: Save For Later Support Thread
Quote:
Originally Posted by
GAM
Hi
I need help. I've tried but obviously don't know what I'm doing. I'm using CSS Buttons and want the Save For Later button on the Product Info page to display the same as the other CSS buttons i.e., same appearance as the 'Add to cart' button.
By following and manipulating the code for a 'submit' button, I've got it looking right but it is not functioning correctly i.e., it is 'adding to cart' and not adding to 'save for later'.
Save for later button code:
Code:
<!-- bof save for later -->
<?php
if (isset($_SESSION['customer_id']) && $_SESSION['customer_id'] != '') {
echo "<br /><br />";
echo '<input type="submit" value="' . BUTTON_SAVE_FOR_LATER_ALT . '" name="sfl" />';
}
?>
<!-- eof save for later -->
My non-working code attempt:
Code:
<!-- bof save for later -->
<?php
if (isset($_SESSION['customer_id']) && $_SESSION['customer_id'] != '') {
echo " ";
echo zen_image_submit(BUTTON_IMAGE_SAVE_FOR_LATER, BUTTON_SAVE_FOR_LATER_ALT);
}
?>
<!-- eof save for later -->
I'm assuming that there is a value that needs to be specified to get the 'save for later' function instead of the 'add to cart' function, but I don't how or where this might be specified.
Appreciate any assistance.
Cheers
GAM
Not 100% sure but I think the reason its not working is theres no input command. I'm just trying to do this now, if I get it working, i'll share the code :)
Re: Save For Later Support Thread
Quote:
Originally Posted by
therummagehole
Not 100% sure but I think the reason its not working is theres no input command. I'm just trying to do this now, if I get it working, i'll share the code :)
I give up, tried everything I can think off. I'm sure this is an easy fix, i'm just out of my depth lol