Page 22 of 86 FirstFirst ... 1220212223243272 ... LastLast
Results 211 to 220 of 854
  1. #211
    Join Date
    Jun 2006
    Posts
    37
    Plugin Contributions
    0

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

    I forgot to mention. It has to be "and COWOA_account = '0' "

    Still didn't find a problem with the order emails??

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

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

    Quote Originally Posted by Datax View Post
    Which order emails do you mean?
    order confirmation, updates..
    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. #213
    Join Date
    Jun 2006
    Posts
    37
    Plugin Contributions
    0

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

    Quote Originally Posted by DivaVocals View Post
    order confirmation, updates..
    As far as I understand this file only concerns modules with email dropdown field.
    Tried order emails and everything seems to work fine.

    Thanx Country & Diva

  4. #214
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

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

    Quote Originally Posted by DivaVocals View Post
    But this also includes order e-mails too right???
    Diva the order emails still work like they suppose to.

    Datax
    If you add this in de query around line 55 also, the COWOA clients are removed from the dropdown field too.
    "and COWOA_account = '0' "
    Thank you, you are right about the COWOA extra email clients being removed from the dropdown send email field.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  5. #215
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

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

    Quote Originally Posted by joejoejoe View Post
    Well that error message I got about the unexpected end didn't go away when I put the updated time_out.php file in. I just checked and after each sale I am still getting it (PHP Parse error: syntax error, unexpected $end in )- but now it says line 19 instead of line 20 and line 19 is the last line of the file, which I uploaded straight from the unzipped download of v2.3 Line 19 says:

    define('TEXT_PASSWORD_FORGOTTEN', 'Forgot Your Password?')

    And I opened it with Crimson editor just to check and there are no extra spaces or lines after that )
    Quote Originally Posted by DrByte View Post
    "unexpected $end" is almost always caused by unmatched/unclosed parentheses or braces, such as in an IF statement or WHILE or FOR or SWITCH loop, or an incomplete class/function declaration (such as would happen if you were editing a class or function file and remove a closing brace, or forget to add a closing brace to an IF statement you're adding, etc). Basically it's a programming error in your customized code.
    Installing this last night for a client.. Ran into this issue last night.. (hadn't run into this issue hence my previous incorrect response) DrByte was on the money with regards to the cause. There is a missing semi colon on line 19 of the time_out.php.
    change line 19 from:
    Code:
    define('TEXT_PASSWORD_FORGOTTEN', 'Forgot Your Password?')
    to:
    Code:
    define('TEXT_PASSWORD_FORGOTTEN', 'Forgot Your Password?');
    and poof the problem goes away..
    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.

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

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

    Quote Originally Posted by DivaVocals View Post
    Finding that one of the on-screen messages may not be fully understood by all customers. It's the error message displayed when a customer attempts to use COWOA with an e-mail address that is linked to a standard customer account.

    So I've revised it so it is much more detailed than the current message. Thought I'd share in case anyone else has the same experience.

    Updated includes\languages\YOUR_TEMPLATE\english.php:
    Change this:
    Code:
    define('ENTRY_EMAIL_ADDRESS_ERROR_EXISTS', 'Our system already has a record of that email address - please try logging in with that email address. If you do not use that address any longer you can correct it in the My Account area.');
    To this:
    Code:
    define('ENTRY_EMAIL_ADDRESS_ERROR_EXISTS', 'You cannot use our "<strong>checkout without an account</strong>" feature with the e-mail address provided because our system already has a regular store account on file using that email address - please try logging in to our store with that email address. If you do not use that email address any longer you can correct it in the "<strong>My Account</strong>" area once logged in.');
    Quote Originally Posted by countrycharm View Post
    Hi Diva,
    thanks that make even better sense.
    Quote Originally Posted by DivaVocals View Post
    You're welcome.. My client and I collaborated to come up with the revised message.. Fortunately THE customer who had the issue contacted my client when she couldn't complete her purchase.. I think the revised message will ensure that future customers don't abandon the cart because of an unclear error message..
    So I've been doing more work refining the on-screen text and error messages for this module.. In testing this module, my client and I both felt that some of them are a little awkwardly worded. I also realized that the Standard and COWOA error message I posted my corrections for previously should be separated and not shared. My client and I have been doing some informal research as to how similar guest checkout features are used with other online retailers (with a particular eye on some of the larger online retailers). My client and I are also gathering feedback from some of his customers who agreed to help us with a VERY informal usability study.

    The purpose of this effort was to come up with clearer and more consistent on-screen messages for COWOA. I made a number of changes to several COWOA files to implement the changesIn this effort, I also found one instance of hard coded text in one of the COWOA files which I also corrected to use a language file define.

    Wanted to share the changes I've made as a result. It's too much to post all the changes inside a post so I've uploaded screenprints of the changes I made. I will attache a zip file of the modified files my next post.. Would like to suggest that these changes (or similar ones) should be part of the next COWOA release. I would be happy to bundle these changes up, but wanted to throw it out to the community for opinions.. (and I don't want to step on my friend CountryCharm's toes!)

    Files modified:
    includes/languages/YOUR_TEMPLATE/english.php
    includes/languages/english/YOUR_TEMPLATE/time_out.php
    includes/languages/english/YOUR_TEMPLATE/login.php
    includes/modules/YOUR_TEMPLATE/no_account.php
    includes/templates/YOUR_TEMPLATE/templates/tpl_login_default.php

    I also added an additional arrow image thought others might find it useful so I've included this as well
    New_Installation\Optional_Arrows\arrow_checkout16.png
    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. #217
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

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

    Quote Originally Posted by DivaVocals View Post
    So I've been doing more work refining the on-screen text and error messages for this module.. In testing this module, my client and I both felt that some of them are a little awkwardly worded. I also realized that the Standard and COWOA error message I posted my corrections for previously should be separated and not shared. My client and I have been doing some informal research as to how similar guest checkout features are used with other online retailers (with a particular eye on some of the larger online retailers). My client and I are also gathering feedback from some of his customers who agreed to help us with a VERY informal usability study.

    The purpose of this effort was to come up with clearer and more consistent on-screen messages for COWOA. I made a number of changes to several COWOA files to implement the changesIn this effort, I also found one instance of hard coded text in one of the COWOA files which I also corrected to use a language file define.

    Wanted to share the changes I've made as a result. It's too much to post all the changes inside a post so I've uploaded screenprints of the changes I made. I will attache a zip file of the modified files my next post.. Would like to suggest that these changes (or similar ones) should be part of the next COWOA release. I would be happy to bundle these changes up, but wanted to throw it out to the community for opinions.. (and I don't want to step on my friend CountryCharm's toes!)

    Files modified:
    includes/languages/YOUR_TEMPLATE/english.php
    includes/languages/english/YOUR_TEMPLATE/time_out.php
    includes/languages/english/YOUR_TEMPLATE/login.php
    includes/modules/YOUR_TEMPLATE/no_account.php
    includes/templates/YOUR_TEMPLATE/templates/tpl_login_default.php

    I also added an additional arrow image thought others might find it useful so I've included this as well
    New_Installation\Optional_Arrows\arrow_checkout16.png
    Modified files in a zip
    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.

  8. #218
    Join Date
    Dec 2012
    Posts
    6
    Plugin Contributions
    0

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

    Trashed my admin and template also no option to switch it on in admin. Should be an easier install.

  9. #219
    Join Date
    Dec 2012
    Posts
    6
    Plugin Contributions
    0

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

    Just install Fast and Easy Checkout. The installation is simpler and it includes COWOA already.

  10. #220
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

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

    Quote Originally Posted by typecast View Post
    Trashed my admin and template also no option to switch it on in admin. Should be an easier install.
    so you posted in the support thread just to gripe?? Okay.. well since you provided NO DETAILS there's no way to know how you did that. This install is no more complicated than any other module.. most issues usually end up being due to install errors.. but since you only were here in the SUPPORT. THREAD to post a complaint not ask for help it doesn't matter..

    Quote Originally Posted by typecast View Post
    Just install Fast and Easy Checkout. The installation is simpler and it includes COWOA already.
    lol.. simpler eh.. okay.. yep it sure does include nearly the SAME COWOA files/code.. just no support and wait until you find out other modules don't play nicely with it.. but you enjoy!!
    Last edited by DivaVocals; 3 Feb 2013 at 01:49 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.

 

 
Page 22 of 86 FirstFirst ... 1220212223243272 ... 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