Page 1 of 2 12 LastLast
Results 1 to 10 of 673

Hybrid View

  1. #1
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Recover Cart

    Quote Originally Posted by bonnit View Post
    i using this mod on 1.3.9h but it doesnt seem to show any attributes in the details list, is this a known bug or is this me? lol btw i do have them turned on in confirguration
    Just to make sure I am understanding you, you mean it is not showing attributes in the EMAIL details right? (Or are you talking somewhere else.)
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  2. #2
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: Recover Cart

    the attributes (in my case personalisations) do not show up in the email sent to customer or in the recover_cart_sales.php page which displays abandoned carts from the admin

    am i misunderstanding what this is supposed to do or do i have a problem somewhere?

    all other functions are fine, emails are sent etc. its just the attributes list that doesnt show up anywhere

  3. #3
    Join Date
    Mar 2008
    Location
    QLD - Aussie
    Posts
    192
    Plugin Contributions
    0

    Default Re: Recover Cart

    Hi
    Great mod
    Just wondering if there is an easy way to change the customer greeting to first name only?
    (I saw that the question was asked many pages ago, but I didn't see an answer...apologies if i missed it)


    Many thanks!

  4. #4
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Recover Cart

    Quote Originally Posted by Green333 View Post
    Hi
    Great mod
    Just wondering if there is an easy way to change the customer greeting to first name only?
    (I saw that the question was asked many pages ago, but I didn't see an answer...apologies if i missed it)


    Many thanks!
    Open up the following file:

    /admin/recover_cart_sales.php

    Find the section that looks like this (about line 246):

    PHP Code:
            if (RCS_EMAIL_FRIENDLY == 'true'){
                
    $email .= EMAIL_TEXT_SALUTATION $basket->fields['fname'] . ' ' $basket->fields['lname'] . ",";
            } else {
                
    $email .= STORE_NAME "\n" EMAIL_SEPARATOR "\n";
            } 
    Remove the section that references the last name and you're all set.

    When your finished it should look like this:

    PHP Code:
            if (RCS_EMAIL_FRIENDLY == 'true'){
                
    $email .= EMAIL_TEXT_SALUTATION $basket->fields['fname'] .",";
            } else {
                
    $email .= STORE_NAME "\n" EMAIL_SEPARATOR "\n";
            } 
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  5. #5
    Join Date
    Mar 2008
    Location
    QLD - Aussie
    Posts
    192
    Plugin Contributions
    0

    Default Re: Recover Cart

    Eric,
    Thank you so much!
    Works perfectly.

    You are a champion!

  6. #6
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Recover Cart

    Glad I could help. :)
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  7. #7
    Join Date
    Apr 2008
    Posts
    151
    Plugin Contributions
    0

    Default Re: Recover Cart

    Hello people!

    This seems like a really nice mod but I'm having some troubles installing the SQL script.

    I'm using a database prefix for zen cart (zen_) and I've tried to alter the script to work with that, but I simply get too many errors and I don't dare to play with this too much as I'm afraid to destroy tings :S.

    Can someone please advice? An example on where to insert the databse prefix would be really helpful!

    Many thanks in advance. Regards Peter

  8. #8
    Join Date
    Jun 2006
    Posts
    37
    Plugin Contributions
    0

    Default Re: Recover Cart

    Quote Originally Posted by bonnit View Post
    the attributes (in my case personalisations) do not show up in the email sent to customer or in the recover_cart_sales.php page which displays abandoned carts from the admin

    am i misunderstanding what this is supposed to do or do i have a problem somewhere?

    all other functions are fine, emails are sent etc. its just the attributes list that doesnt show up anywhere
    This problem appeared a few times in this thread. I have the same problem working with the latest version of RCS in combination with 1.3.8a.

    Did I miss the solution? Is there anybody who knows how to solve this problem?

    Thanks

  9. #9
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: Recover Cart

    i never got an answer im afraid :S

    maybe someone can help?

  10. #10
    Join Date
    Jun 2006
    Posts
    37
    Plugin Contributions
    0

    Default Re: Recover Cart



    I manage to figure out what the problem was.

    admin/recover_cart_sales.php

    line 471:
    WHERE cba.products_id ='" . (int)$basket->fields['products_id'] . "'

    They declared '$basket->fields['products_id']' as an integer but its
    alphanumeric.

    By removing the (int) part the attributes will show.

    Solution:
    line 471:
    WHERE cba.products_id ='" . $basket->fields['products_id'] . "'

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Shipping Rates in Cart [support thread]
    By Steven300 in forum Addon Shipping Modules
    Replies: 95
    Last Post: 12 May 2023, 02:39 AM
  2. Shopping Cart Steps Images [Support Thread]
    By Trinity14 in forum Addon Templates
    Replies: 21
    Last Post: 11 Apr 2021, 05:35 AM
  3. v151 AJAX Add to Cart [Support Thread]
    By balihr in forum All Other Contributions/Addons
    Replies: 133
    Last Post: 20 Oct 2020, 02:16 AM
  4. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM

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