Could I ask you one question then I will leave you alone.
Since you are own the subject, does both forms when submitted go to the store email or do I have to input that info somewhere for that to happen?
Thank you
Could I ask you one question then I will leave you alone.
Since you are own the subject, does both forms when submitted go to the store email or do I have to input that info somewhere for that to happen?
Thank you
Last edited by countrycharm; 21 Sep 2008 at 04:35 AM.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
It's automatic :)
I'm trying to figure out where the command is though, so I can change it to send to my customer service email address.
Thanks for helping out with the support
In includes/modules/pages/cart_manager/header_php.php
Change (line 39):
to:PHP Code:$send_to_email = EMAIL_FROM;
PHP Code:$send_to_email = "[email protected]";
Mods: Admin Activity Report || PO Box Ban || Empty Cart Manager || Autoresponder+ || Zip Validator || Desktop Data || SRiC
@ScriptJunkie
BTW, nice implementation of the contribution![]()
Mods: Admin Activity Report || PO Box Ban || Empty Cart Manager || Autoresponder+ || Zip Validator || Desktop Data || SRiC
Hey Steven :)
My pleasure :) It's always nice to get from a place of "I don't know what the heck I'm doing!" to "Hey, I know the answer to that!" It's nice to be able to give back :)Thanks for helping out with the support![]()
I thought that was it, but when I tried that before posting to the forum, my page disappeared. Turns out my syntax was wrong. I forgot the " " Thanks for your help!In includes/modules/pages/cart_manager/header_php.php
Change (line 39):
PHP Code: $send_to_email = EMAIL_FROM;
to:
PHP Code:
$send_to_email = "[email protected]";
Thanks! And thanks for the awesome mod! It's really great for finding out what's on the consumer's mind, what stopped them from buying, and providing the opportunity to save the sale, all rolled in to one :)BTW, nice implementation of the contribution![]()
Has anyone tried this on 1.3.7?
I installed this and everything worked perfectly (the info form, the response email I received, etc.) EXCEPT that I have noticed that it has completely altered two of my CSS checkout buttons --- the one to 'checkout' and the one to 'update cart'
Any suggestions would be apprecaited because this seems like it would be a wonderful mod to add to my site but i can't leave it with these buttons messed up because customers would not know how to checkout.
My website is: www.ZenCrystals.com
running zencart version 1.3.8
with the zencart_zen template
and Empty_Cart_Manager_1.2
Zencart ROCKS![]()
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
Hi Countrycharm,
Thank you for your reply and I feel a bit brain dead but i went back and re-read every word of every post to this thread and could not find any references to the checkout or refresh cart buttons on the cart page.
I really hate to be a bother, but if you could possibly quote the solution in a reply I would be very grateful.
At this point i guess I'm just going to have to uninstall this mod since I cannot risk customers having no way to check out and it's been several days now.
Zencart still ROCKS though![]()
I fixed the buttons and for anyone else that has that issue here is the solution that worked for me...
1. opened the button_names.php file located at:
includes/languages/english/button_names.php
2. found the definition name for the 'checkout button
(in my case it was BUTTON_IMAGE_CHECKOUT)
3. opened the tpl_shopping_cart_default.php file located at:
includes/templates/YOUR_TEMPLATE/templates/tpl_shopping_cart_default.php
4. changed the definition name for the 'checkout' and 'update' buttons (the two buttons that were messed up in my case) to match the definition name in the button_names.php file.
The names of the buttons are:
BUTTON_IMAGE_CHECKOUT
BUTTON_IMAGE_UPDATE
See below for exactly where I changed them:
I have no idea how these two button name definitions got changed during the 'empty cart manager' installation but at least i can now keep the mod and everything is working perfectly!PHP Code:<div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, CHECKOUT_ALT) . '</a>'; ?></div>
<div class="buttonRow back"><?php echo zen_image_submit(BUTTON_IMAGE_UPDATE, UPDATE_ALT); ?></div>
If you want to see an example of the working mod you can see it on my website at www.ZenCrystals.com Just add something to your cart and then delete it...
Thanks for a GREAT mod!
Zencart ROCKS![]()