Page 47 of 86 FirstFirst ... 37454647484957 ... LastLast
Results 461 to 470 of 854
  1. #461
    Join Date
    Apr 2014
    Location
    Cleveland Ohio
    Posts
    6
    Plugin Contributions
    0

    Default Re: COWOA (for ZC v1.5.x)

    BTW, in the COWOA admin, the explanation for the 'Enable Forced Logoff' is NOT correct.

    It says:

    Enable The Forced LogOff Function of COWOA?
    Set to True so that a Customer that uses COWOA will be logged off automatically after a sucessfull checkout. If they are getting a file download, then they will have to wait for the Status E-Mail to arrive in order to download the file.


    But in reality, setting the option to 'true' also disables the status email download links, too. That's why having this option set to 'true' will make a download customer curse you! LOL

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

    Default Re: COWOA (for ZC v1.5.x)

    it's a KNOWN bug.. This part of the code has not worked correctly in some time..
    Quote Originally Posted by AllenFreeman View Post
    BTW, in the COWOA admin, the explanation for the 'Enable Forced Logoff' is NOT correct.

    It says:

    Enable The Forced LogOff Function of COWOA?
    Set to True so that a Customer that uses COWOA will be logged off automatically after a sucessfull checkout. If they are getting a file download, then they will have to wait for the Status E-Mail to arrive in order to download the file.


    But in reality, setting the option to 'true' also disables the status email download links, too. That's why having this option set to 'true' will make a download customer curse you! LOL
    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. #463
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: COWOA (for ZC v1.5.x)

    Explained here: http://www.zen-cart.com/showthread.p...80#post1237580
    Quote Originally Posted by DivaVocals View Post
    it's a KNOWN bug.. This part of the code has not worked correctly in some time..
    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.

  4. #464
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: COWOA (for ZC v1.5.x)

    Quote Originally Posted by DivaVocals View Post
    it's a KNOWN bug.. This part of the code has not worked correctly in some time..
    What... another bug!

    OK... so downloads was working for me on one of my old sites... most be me again!

    Recreating by doing a clean install
    Zen Cart 1.5.2,
    responsive template,
    email archive manager 1.7b,
    integrated COWOA 2.4 for ZC 1.5.2
    xamp php 5.5.11

    so.. no code edits, using downloads as designed, if a payment method was used that had an order status as Pending (default), no download would show as expected. Admin would have to change the status to Processing, add a comment for the buyer to access the download by using the order status page or account history if they have an account. Once email and order ID was entered, the download button would show on the status page or account page as expected. I wouldn't send the product download link by email or run the risk of many free downloads occurring.

    This is where it gets interesting, if I use a payment method that has an order status of Processing, the download button should appear on the checkout success page. Well It seems to be blocked at line 122, and a session kill at line 80 for COWOA users, but not for account holders.

    I'll leave the session destroy switch in place, uses, 'false' allow downloads to work, 'true' do zen_session_destroy() no downloads for COWOA users. So, line 82 section of code is modified to this;

    includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_sucess_default.php
    Code:
    if (isset($_SESSION['customer_guest_id']) || ($_SESSION['COWOA'])) {
    line 122 remove the COWOA check;
    Code:
     if (DOWNLOAD_ENABLED == 'true') require($template->get_template_dir('tpl_modules_downloads.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_downloads.php');
    We need to fix the download link for COWOA users so they don't think they have a account history page. Copy tpl_modules_downloads.php from the default template folder to yours and change line 86 to something that works for you..

    includes/templates/YOUR_TEMPLATE/templates/tpl_modules_downloads.php
    Code:
    <p><?php if(!($_SESSION['COWOA'])) { printf(FOOTER_DOWNLOAD, '<a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . HEADER_TITLE_MY_ACCOUNT . '</a>'); 
      } else {
        printf(FOOTER_DOWNLOAD_COWOA);
      }?></p>
    Add to the language page for checkout success so it makes sense...

    includes/languages/english/checkout_success.php
    Code:
    define('FOOTER_DOWNLOAD_COWOA', 'You can also download your products at a later time using the Order Status page.');
    Play with this on a testing environment first, I didn't spend allot of time testing it out, but seems to work for me..
    Dave
    Always forward thinking... Lost my mind!

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

    Default Re: COWOA (for ZC v1.5.x)

    Damn Dave.. I love you! On a plane waiting for takeoff.. as soon as I get home gonna test this and confirm the results..
    Did I mention how awesome you are.. again..
    Quote Originally Posted by davewest View Post
    What... another bug!

    OK... so downloads was working for me on one of my old sites... most be me again!

    Recreating by doing a clean install
    Zen Cart 1.5.2,
    responsive template,
    email archive manager 1.7b,
    integrated COWOA 2.4 for ZC 1.5.2
    xamp php 5.5.11

    so.. no code edits, using downloads as designed, if a payment method was used that had an order status as Pending (default), no download would show as expected. Admin would have to change the status to Processing, add a comment for the buyer to access the download by using the order status page or account history if they have an account. Once email and order ID was entered, the download button would show on the status page or account page as expected. I wouldn't send the product download link by email or run the risk of many free downloads occurring.

    This is where it gets interesting, if I use a payment method that has an order status of Processing, the download button should appear on the checkout success page. Well It seems to be blocked at line 122, and a session kill at line 80 for COWOA users, but not for account holders.

    I'll leave the session destroy switch in place, uses, 'false' allow downloads to work, 'true' do zen_session_destroy() no downloads for COWOA users. So, line 82 section of code is modified to this;

    includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_sucess_default.php
    Code:
    if (isset($_SESSION['customer_guest_id']) || ($_SESSION['COWOA'])) {
    line 122 remove the COWOA check;
    Code:
     if (DOWNLOAD_ENABLED == 'true') require($template->get_template_dir('tpl_modules_downloads.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_downloads.php');
    We need to fix the download link for COWOA users so they don't think they have a account history page. Copy tpl_modules_downloads.php from the default template folder to yours and change line 86 to something that works for you..

    includes/templates/YOUR_TEMPLATE/templates/tpl_modules_downloads.php
    Code:
    <p><?php if(!($_SESSION['COWOA'])) { printf(FOOTER_DOWNLOAD, '<a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . HEADER_TITLE_MY_ACCOUNT . '</a>'); 
      } else {
        printf(FOOTER_DOWNLOAD_COWOA);
      }?></p>
    Add to the language page for checkout success so it makes sense...

    includes/languages/english/checkout_success.php
    Code:
    define('FOOTER_DOWNLOAD_COWOA', 'You can also download your products at a later time using the Order Status page.');
    Play with this on a testing environment first, I didn't spend allot of time testing it out, but seems to work for me..
    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. #466
    Join Date
    Jan 2014
    Location
    Essen
    Posts
    25
    Plugin Contributions
    0

    customer issue Re: COWOA (for ZC v1.5.x)

    I have a question. This all module it to make is easier and faster...just why to ask my customers all these data if he/she is not going to open account? Is the is a way to disable some of the fields required to be fill out in billing info?
    http://www.polish-your-art.com/bouti...age=no_account
    I already done this with standard create account but can not find a file where these quest or no account data are included.
    http://www.polish-your-art.com/bouti...create_account
    I got now let info needed to create account then in billing info for COWOA. I would like to have it the same way. I am selling only downloadable product and also do not need shipping. Is the is a way to remove or to skip this step when buying downloadable product?

  7. #467
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,376
    Plugin Contributions
    94

    Default Re: COWOA (for ZC v1.5.x)

    Quote Originally Posted by Marta van Eck View Post
    I have a question. This all module it to make is easier and faster...just why to ask my customers all these data if he/she is not going to open account? Is the is a way to disable some of the fields required to be fill out in billing info?
    http://www.polish-your-art.com/bouti...age=no_account
    I already done this with standard create account but can not find a file where these quest or no account data are included.
    http://www.polish-your-art.com/bouti...create_account
    I got now let info needed to create account then in billing info for COWOA. I would like to have it the same way. I am selling only downloadable product and also do not need shipping. Is the is a way to remove or to skip this step when buying downloadable product?
    I'm hoping that DivaVocals will forgive me for hijacking this thread, but it sounds like "Minimum Customer Account Information" (http://www.zen-cart.com/downloads.php?do=file&id=1465) might be of help. That plugin will allow you to significantly reduce the number of fields required to create an account, but it is not integrated with COWOA, so your customers will need to create an account if you use it. Note also that some people who sell only downloadable products still want to capture the customer's address information during account creation, since some customers will be paying via credit card.

  8. #468
    Join Date
    Jan 2014
    Location
    Essen
    Posts
    25
    Plugin Contributions
    0

    Default Re: COWOA (for ZC v1.5.x)

    Thank you lat9 for your answer. I think that add will not help me. I already got let info for customers who are willing to create an account. But this COWOA looks like a good alternative for those who do not like filling to much info on unknown server. It all looks and work ok after all small changes I made according what davewest wrote. The only think I do not want to is too much info to collects. I do not need street and state and country because nothing will be shipped. And telephone...also do not need it. It work smooth and I like the mod very much , just I afraid some customers will not be willing to write those data. So maybe someone know how to disabled this?

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

    Default Re: COWOA (for ZC v1.5.x)

    Quote Originally Posted by lat9 View Post
    I'm hoping that DivaVocals will forgive me for hijacking this thread, but it sounds like "Minimum Customer Account Information" (http://www.zen-cart.com/downloads.php?do=file&id=1465) might be of help. That plugin will allow you to significantly reduce the number of fields required to create an account, but it is not integrated with COWOA, so your customers will need to create an account if you use it. Note also that some people who sell only downloadable products still want to capture the customer's address information during account creation, since some customers will be paying via credit card.
    Quote Originally Posted by Marta van Eck View Post
    Thank you lat9 for your answer. I think that add will not help me. I already got let info for customers who are willing to create an account. But this COWOA looks like a good alternative for those who do not like filling to much info on unknown server. It all looks and work ok after all small changes I made according what davewest wrote. The only think I do not want to is too much info to collects. I do not need street and state and country because nothing will be shipped. And telephone...also do not need it. It work smooth and I like the mod very much , just I afraid some customers will not be willing to write those data. So maybe someone know how to disabled this?
    Why wouldn't this help?? lat9 gave you a VERY VIABLE solution that WILL solve your issue.. I think lat9 is saying that you can try to apply the changes in her mod to the no_account page since it is based on the create_account page.. (IJS...)
    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. #470
    Join Date
    Jan 2014
    Location
    Essen
    Posts
    25
    Plugin Contributions
    0

    Default Re: COWOA (for ZC v1.5.x)

    I understand that this mod will make possible to reduce to minimum data that are now required in COWOA? I just have change it by hand, apply the changes to no_ ccount page from create _account? Is this mean no_account in COWOA is equivalent to create_ account in standard procedure?

 

 
Page 47 of 86 FirstFirst ... 37454647484957 ... 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