Page 54 of 86 FirstFirst ... 444525354555664 ... LastLast
Results 531 to 540 of 854
  1. #531
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    Quote Originally Posted by DK_Scully View Post
    http://www.carnal-pleasures.com/zencart (apologies that it's an adult site)

    Order the free book in the left sidebar. You'll see the error crop up when you use the COWOA checkout. :-)
    Thanks for the heads up about this being an adult site..

    As temp workaround, go to this file: includes/modules/custom_template/no_account.php
    Try modifying lines 217-218 as follows:

    217 $firstname = Valued ;
    218 $lastname = Customer;

    Please note there is a space after "Valued". This is UNTESTED, but it should work..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #532
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    Quote Originally Posted by DivaVocals View Post
    Thanks for the heads up about this being an adult site..

    As temp workaround, go to this file: includes/modules/custom_template/no_account.php
    Try modifying lines 217-218 as follows:

    217 $firstname = Valued ;
    218 $lastname = Customer;

    Please note there is a space after "Valued". This is UNTESTED, but it should work..
    Just wanted to add some notes here.. I will be looking into a BETTER long term solution. Apparently the module for the no_account.php page fills in No_account for ALL the fields except the email field when the cart total is zero. What I posted is a bandaid fix and will address the issue, but it is not a good long term solution IMHO.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #533
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,378
    Plugin Contributions
    94

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    Quote Originally Posted by DivaVocals View Post
    Thanks for the heads up about this being an adult site..

    As temp workaround, go to this file: includes/modules/custom_template/no_account.php
    Try modifying lines 217-218 as follows:

    217 $firstname = Valued ;
    218 $lastname = Customer;

    Please note there is a space after "Valued". This is UNTESTED, but it should work..
    Shouldn't there be quotes around the variable values:
    Code:
       217   $firstname = 'Valued ';
       218   $lastname = 'Customer';

  4. #534
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    Quote Originally Posted by lat9 View Post
    Shouldn't there be quotes around the variable values:
    Code:
       217   $firstname = 'Valued ';
       218   $lastname = 'Customer';
    That's what I thought too.. Interestingly they aren't in the current code..

    Personally I think that when the cart value is $0.00 that instead of blocking all fields except the e-mail address field the full name name AND email address should AT LEAST be collected when the cart value is $0.00. That is the long term solution I will be looking at..
    Last edited by DivaVocals; 6 Nov 2014 at 11:13 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #535
    Join Date
    Jan 2011
    Posts
    339
    Plugin Contributions
    0

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    I'm happy to be your guinea pig.

    The good news is that the e-mail came out absolutely perfect. On the shopping cart, though, there was no space visible between the words Valued and Customer; for some reason it crammed them together into one word. But no complaints...this has been bothering us ever since we installed the COWOA. Even ValuedCustomer is much, much better than calling them a no-account! LOL

    Now if I can just get rid of the "TEXT_CHECKOUT_LOGOFF_CUSTOMER" message that has suddenly appeared...

  6. #536
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    Quote Originally Posted by DK_Scully View Post
    I'm happy to be your guinea pig.

    The good news is that the e-mail came out absolutely perfect. On the shopping cart, though, there was no space visible between the words Valued and Customer; for some reason it crammed them together into one word. But no complaints...this has been bothering us ever since we installed the COWOA. Even ValuedCustomer is much, much better than calling them a no-account! LOL
    Try changing "Valued" to "Valued-"

    or alternatively you can try what lat9 suggests (adding the single quotes) and change the values as follows:

    217 $firstname = 'Valued ';
    218 $lastname = 'Customer';

    or

    217 $firstname = 'Valued ';
    218 $lastname = 'Customer';

    Again, untested.. But see what happens.. If you get a blank page please post the text from the error log..

    Quote Originally Posted by DK_Scully View Post
    Now if I can just get rid of the "TEXT_CHECKOUT_LOGOFF_CUSTOMER" message that has suddenly appeared...
    Last edited by DivaVocals; 7 Nov 2014 at 01:48 AM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #537
    Join Date
    Jan 2011
    Posts
    339
    Plugin Contributions
    0

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    Quote Originally Posted by DivaVocals View Post

    $firstname = 'Valued ';
    $lastname = 'Customer';
    not only fixed the name problem, but it got rid of that extra error message on the page bottom at the same time. Thank you so much for your help!!!

  8. #538
    Join Date
    Jan 2011
    Posts
    339
    Plugin Contributions
    0

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    One last little thing...now when someone creates a new account (not using the COWOA), the first and last name are run together on the signup screen. LOL The e-mail shows up properly with the space between the first and last name...not sure why the signup screen looks different.

    If you have any advice on that, I'd be very grateful. Thanks!

  9. #539
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    Quote Originally Posted by DK_Scully View Post
    One last little thing...now when someone creates a new account (not using the COWOA), the first and last name are run together on the signup screen. LOL The e-mail shows up properly with the space between the first and last name...not sure why the signup screen looks different.
    You don't say.. but is this a NEW issue that manifested AFTER making the changes to the "No_account" issue??
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #540
    Join Date
    Jan 2011
    Posts
    339
    Plugin Contributions
    0

    Default Re: COWOA Updated and Combined for ZC v1.5.x

    I honestly don't know. I didn't try to set up a new user account until someone reported a totally different error with the script last night, which I was able to fix. Then I noticed this little glitch. Since it was so similar to what the No_Account process showed, I thought I'd mention it and see if you had any ideas.

 

 
Page 54 of 86 FirstFirst ... 444525354555664 ... LastLast

Similar Threads

  1. v139c COWOA Module (my update for ZC v1.3.x)
    By JTheed in forum All Other Contributions/Addons
    Replies: 398
    Last Post: 29 Oct 2014, 02:35 PM
  2. Installed FEC before COWOA, now COWOA config menu doesn't appear
    By i-make-robots in forum Addon Payment Modules
    Replies: 8
    Last Post: 12 Jan 2014, 01:34 PM
  3. v151 How to install COWOA (for ZC v1.5.x)
    By edgemeister in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 4 Apr 2013, 05:21 PM
  4. v151 Which COWOA Plugin? Fast and Easy or original COWOA ?
    By damon in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 8 Nov 2012, 03:44 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