Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 50
  1. #21
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Empty Cart Manager [support thread]

    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

  2. #22

    Default Re: Empty Cart Manager [support thread]

    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.
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  3. #23
    Join Date
    Jan 2008
    Posts
    1,700
    Plugin Contributions
    6

    Default Re: Empty Cart Manager [support thread]

    Quote Originally Posted by ScriptJunkie View Post
    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):

    PHP Code:
    $send_to_email EMAIL_FROM
    to:

    PHP Code:
    $send_to_email "[email protected]"

  4. #24
    Join Date
    Jan 2008
    Posts
    1,700
    Plugin Contributions
    6

    Default Re: Empty Cart Manager [support thread]

    @ScriptJunkie

    BTW, nice implementation of the contribution

  5. #25

    Default Re: Empty Cart Manager [support thread]

    Hey Steven :)

    Thanks for helping out with the support
    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 :)

    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]";
    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!

    BTW, nice implementation of the contribution
    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 :)
    Go that extra mile, you never know what's at the end of the road

    Empowerment Sanctuary

  6. #26
    Join Date
    Jul 2008
    Posts
    8
    Plugin Contributions
    0

    Default Re: Empty Cart Manager [support thread] 1.3.7?

    Has anyone tried this on 1.3.7?

  7. #27
    Join Date
    Nov 2007
    Posts
    162
    Plugin Contributions
    0

    Default Re: Empty Cart Manager [support thread]

    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
    www.ZenCrystals.com
    www.CraftMagick.com
    Magickal & Metaphysical supplies/services

  8. #28
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Empty Cart Manager [support thread]

    Quote Originally Posted by Craft Magick View Post
    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
    Hi go back and read the thread and you will find how to fix your problem. I had some of the same issues myself. Go back a page you will find how to fix it.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  9. #29
    Join Date
    Nov 2007
    Posts
    162
    Plugin Contributions
    0

    Default Re: Empty Cart Manager [support thread]

    Quote Originally Posted by countrycharm View Post
    Hi go back and read the thread and you will find how to fix your problem. I had some of the same issues myself. Go back a page you will find how to fix it.
    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
    www.ZenCrystals.com
    www.CraftMagick.com
    Magickal & Metaphysical supplies/services

  10. #30
    Join Date
    Nov 2007
    Posts
    162
    Plugin Contributions
    0

    Default Re: Empty Cart Manager [support thread]

    Quote Originally Posted by Craft Magick View Post
    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
    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:

    PHP Code:
    <div class="buttonRow forward"><?php echo '<a href="' zen_href_link(FILENAME_CHECKOUT_SHIPPING'''SSL') . '">' zen_image_button(BUTTON_IMAGE_CHECKOUTCHECKOUT_ALT) . '</a>'?></div>



    <div class="buttonRow back"><?php echo zen_image_submit(BUTTON_IMAGE_UPDATEUPDATE_ALT); ?></div>
    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!

    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
    www.ZenCrystals.com
    www.CraftMagick.com
    Magickal & Metaphysical supplies/services

 

 
Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Link Manager 3.0 Support Thread
    By clydejones in forum Addon Sideboxes
    Replies: 1987
    Last Post: 6 Aug 2021, 02:56 PM
  2. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  3. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  4. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

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