Page 4 of 9 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 87
  1. #31
    Join Date
    Jul 2013
    Location
    Lakewood, California, United States
    Posts
    66
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    You are a genius compared to many, supergenius compared to me....

    It worked. Thank you. Now, how do I get the cart reminder email to show my logo rather than their logo? Just don't know whether html works, and suspect it doesn't.

  2. #32
    Join Date
    Jul 2013
    Location
    Lakewood, California, United States
    Posts
    66
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    It worked, perfectly. How may I edit the html email at email_template_cart_reminder.html to put my logo at the top rather than the zencart logo?

    My sincere and major thanks. This has been an issue for 2 weeks for me...

  3. #33
    Join Date
    Oct 2005
    Posts
    34
    Plugin Contributions
    2

    Default Re: Abandoned Shopping Cart Email Reminder

    Quote Originally Posted by Trademagic View Post
    You are a genius compared to many, supergenius compared to me....

    It worked. Thank you. Now, how do I get the cart reminder email to show my logo rather than their logo? Just don't know whether html works, and suspect it doesn't.
    To change the logo, you can edit the HTML to reference a different image or change the one at http://www.YOURWEBSITE.com/YOURSTORE...ail/header.jpg

  4. #34
    Join Date
    Jan 2013
    Posts
    7
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    Anyone knows why {SHOPPING_CART} is showing duplicate items?

    --------------------------------------------------------------------------
    We noticed you added some items to your shopping cart, but did not check out. If you experienced any trouble with our site or during checkout, we would be more than happy to help out. In addition, if you have any questions or concerns about our products or any of our policies, please let us know so we can address them promptly. It is our goal to ensure you have the best possible shopping experience, so please don't hesitate to reach out.

    To send us an email, you can REPLY to this message or visit our contact page at http://xxxxxxxxxxxx.com/shop/index.p...age=contact_us

    If you would like to speak with someone, please give us a call at 00.00.00.00.

    For your convenience, we have listed the items currently in your cart below:

    Wire Form - 7407 4” to 5”
    Quantity: 1
    http://xxxxxxxxxxxx.com/shop/index.p...products_id=23

    Wire Form - 7407 4” to 5”
    Quantity: 1
    http://xxxxxxxxxxxx.com/shop/index.p...products_id=23


    If you are ready to checkout, please login to your account at http://xxxxxxxxxxxx.com/shop/index.php?main_page=login and proceed to checkout.

    If you don't remember your password, you can reset it here: http://euphoriaerotica.com/shop/inde...word_forgotten

    Thank you,

  5. #35
    Join Date
    Sep 2011
    Posts
    20
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    Hello,

    I get this error every day, many times a day. Has anyone seen this before or know what could be the issue?

    Code:
    [01-Sep-2013 09:54:01 America/New_York] PHP Warning:  mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in /home/mysite/public_html/cart_reminder_cron.php on line 35
    This is what line 35 looks like:

    Code:
    $row = mysql_fetch_assoc($result);

  6. #36
    Join Date
    Dec 2010
    Posts
    32
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    Hi,

    I installed this add on, I don't encounter any installation error.
    I checked the DB tables as well.
    When I test, by login into user account, it doesn't create an entry in xxx_cart_reminder table. The table always empty.
    I suppose, it should execute the add_cart_reminder() and create an entry in that table upon user login, but it didn't insert any entry. I feel strange.

    \includes\modules\page\login\header_php.php
    PHP Code:
        if (defined('CART_REMINDER') && CART_REMINDER == true){
               
            include_once(
    DIR_WS_LANGUAGES $_SESSION['language'] . '/' 'cart_reminder.php');  //
            /* Check to make sure customer isn't already in the table */

            
    $sql "SELECT * FROM " TABLE_CART_REMINDER "  WHERE customer_id = :customersID";

            
    $sql $db->bindVars($sql':customersID',  $_SESSION['customer_id'], 'integer');
        
            
    $result $db->Execute($sql);
            if(
    $result->RecordCount() == 0){
                
    add_cart_reminder();
            
            }
            } 
    Thoughts ?


    Regards,
    Sky

  7. #37
    Join Date
    Dec 2010
    Posts
    32
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    Quote Originally Posted by skywalker826 View Post
    Hi,

    I installed this add on, I don't encounter any installation error.
    I checked the DB tables as well.
    When I test, by login into user account, it doesn't create an entry in xxx_cart_reminder table. The table always empty.
    I suppose, it should execute the add_cart_reminder() and create an entry in that table upon user login, but it didn't insert any entry. I feel strange.

    \includes\modules\page\login\header_php.php
    PHP Code:
        if (defined('CART_REMINDER') && CART_REMINDER == true){
               
            include_once(
    DIR_WS_LANGUAGES $_SESSION['language'] . '/' 'cart_reminder.php');  //
            /* Check to make sure customer isn't already in the table */

            
    $sql "SELECT * FROM " TABLE_CART_REMINDER "  WHERE customer_id = :customersID";

            
    $sql $db->bindVars($sql':customersID',  $_SESSION['customer_id'], 'integer');
        
            
    $result $db->Execute($sql);
            if(
    $result->RecordCount() == 0){
                
    add_cart_reminder();
            
            }
            } 
    Thoughts ?


    Regards,
    Sky

    Just an update. Issue has been resolved with some workaround.

  8. #38
    Join Date
    Nov 2009
    Location
    Florida
    Posts
    19
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    I'm trying to setup the cron job and must be doing something wrong.
    I use HostGator for my server
    my latest attempt is:
    php /home/andilyn/public_html/php cart_reminder_cron.php
    which sends my admin an email of:
    Status: 404 Not Found
    Content-type: text/html
    No input file specified.

    cd /home/andilyn/public_html/cherrypitcrafts.com/; php cart_reminder_cron.php > /dev/null
    which sent out this email to my admin:
    /bin/sh: /home/andilyn/public_html/cherrypitcrafts.com: is a directory
    Status: 404 Not Found
    Content-type: text/html
    No input file specified.

    Anyone have any clues?

  9. #39
    Join Date
    Jul 2013
    Location
    Lakewood, California, United States
    Posts
    66
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    Is there a problem having two autoresponder programs at the same time. I received an error and have Autoresponder+ off and cart reminder which is on. Can one use both for their different purposes, or is this a problem for zencart?

  10. #40
    Join Date
    Aug 2004
    Posts
    762
    Plugin Contributions
    0

    Default Re: Abandoned Shopping Cart Email Reminder

    Could someone tell me exactly HOW an entry is supposed to be created in the zen_cart_reminder table?

    I logged in as a test user, and I added a couple items to my cart. I then hit logoff, and went to this table. However, it did NOT create an entry for my test account. Any idea why?

    NOTE: I do see ONE entry in there for another user, so apparently the program does work and it does add entries in there. But I have no idea HOW it does it, or what TRIGGERS it.

    Can someone let me know so I can at least replicate it working with my test account?
    - Jeff

 

 
Page 4 of 9 FirstFirst ... 23456 ... LastLast

Similar Threads

  1. Aftersales Email Module: Review Reminder
    By BeautyHealth.com.cy in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 27 Jul 2010, 12:00 AM
  2. Shopping Cart reminder?
    By mitch_h in forum General Questions
    Replies: 3
    Last Post: 25 Aug 2009, 04:08 PM
  3. Abandoned shopping cart
    By 5869 in forum General Questions
    Replies: 4
    Last Post: 16 Aug 2008, 04:26 AM
  4. Auto/Manual Email for Review Reminder?
    By cpjfox in forum Managing Customers and Orders
    Replies: 1
    Last Post: 13 Mar 2008, 04:15 AM
  5. Recover Abandoned Cart Sales
    By gardengate in forum Customization from the Admin
    Replies: 11
    Last Post: 6 Nov 2006, 04:34 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR