Zen Cart Logo
Forums / All Other Contributions/Addons / COWOA (for ZC v1.5.x)

COWOA (for ZC v1.5.x)

Views: 159,166

Results 801 to 820 of 854
5 Oct 2017, 5:23 PM
#801
fjbern1943 avatar

fjbern1943

Zen Follower

Join Date:
Apr 2015
Location:
United States
Posts:
144
Plugin Contributions:
0

COWOA (for ZC v1.5.x)

jeking:

If you don't merge tpl_main_page.php, the option for turning off sideboxes during checkout will not work.
If you don't merge tpl_header.php, the Logoff and My Account will display when users are checking out without an account.

Has anyone successfully merged the cowoa tpl_main_page.php file with same file in westminster_ new template.

Every time I try I get Syntax errors but am unable to fix them.

If you need additional info just let me know.

Thanks,

Frank

6 Oct 2017, 11:46 AM
#802
fjbern1943 avatar

fjbern1943

Zen Follower

Join Date:
Apr 2015
Location:
United States
Posts:
144
Plugin Contributions:
0

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

Strange problem using cowoa 2.7

Setup:
Zencart 1.55e
Westminster_New latest version for 1.55
cowoa 2.7

With Cowoa Activated when I try to login, When the page is displayed it automatically scrolls down to the Return Customer login section with the cursor automatically in the email address box. If the customer wants to order without an account they must manually go to the top of the page and might not even be aware that this option is available.

To see this go to: http://sashaspetproducts.com/index.php?main_page=login

This is not a browser or cookie problem since I tested it with three different browsers and two different IP addresses.

Anybody got any ideas??

Frank

7 Oct 2017, 6:15 PM
#803
davewest avatar

davewest

Totally Zenned

Join Date:
Dec 2007
Location:
Payson, AZ
Posts:
1,075
Plugin Contributions:
7

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

fjbern1943:

Strange problem using cowoa 2.7

Setup:
Zencart 1.55e
Westminster_New latest version for 1.55
cowoa 2.7

With Cowoa Activated when I try to login, When the page is displayed it automatically scrolls down to the Return Customer login section with the cursor automatically in the email address box. If the customer wants to order without an account they must manually go to the top of the page and might not even be aware that this option is available.

To see this go to: http://sashaspetproducts.com/index.php?main_page=login

This is not a browser or cookie problem since I tested it with three different browsers and two different IP addresses.

Anybody got any ideas??

Frank

Log in page has an autofocus on the email line which is why its getting the courser first. You can remove it.
```
'email_address', '', 'size="18" id="login-email-address" autofocus placeholder="



COWOA is not normally active on the login page if the cart is  empty, but show during checkout with a full cart.  Basically there’s  nothing for COWOA to do when the cart is empty.
24 Oct 2017, 3:49 PM
#804
panzc2020 avatar

panzc2020

New Zenner

Join Date:
May 2014
Posts:
68
Plugin Contributions:
0

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

I wonder if I can swap position of COWOA box to the top of New/Returning Customers Part?

Current:

Wanted To Be:

It seems I found code where the page generated...

<?php
/**
 * Page Template
 *
 * @package templateSystem
 * @copyright Copyright 2003-2011 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: tpl_login_default.php 18695 2011-05-04 05:24:19Z drbyte $
 * @version $Id: Integrated COWOA v2.4  - 2007 - 2013
 */
?>
<div class="centerColumn" id="loginDefault">

<h1 id="loginDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

<?php if ($messageStack->size('login') > 0) echo $messageStack->output('login'); ?>


<?php if ( USE_SPLIT_LOGIN_MODE == 'True' || $ec_button_enabled) { ?>
<!--BOF PPEC split login- DO NOT REMOVE-->
<!-- BOF COWOA 1 of 2 -->
<h3><?php echo TEXT_STANDARD_ACCOUNT_HEADING; ?></h3>
<!-- EOF COWOA 1 of 2 -->
<fieldset class="floatingBox back">
<legend><?php echo HEADING_NEW_CUSTOMER_SPLIT; ?></legend>
<?php // ** BEGIN PAYPAL EXPRESS CHECKOUT ** ?>
<?php if ($ec_button_enabled) { ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION_SPLIT; ?></div>

  <div class="center"><?php require(DIR_FS_CATALOG . DIR_WS_MODULES . 'payment/paypal/tpl_ec_button.php'); ?></div>
<hr />
<?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_DIVIDER; ?>
<?php } ?>
<?php // ** END PAYPAL EXPRESS CHECKOUT ** ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_SPLIT; ?></div>

<?php echo zen_draw_form('create', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL')); ?>
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CREATE_ACCOUNT, BUTTON_CREATE_ACCOUNT_ALT, 'name="registrationButton"'); ?></div>
</form>
</fieldset>

<fieldset class="floatingBox forward">
<legend><?php echo HEADING_RETURNING_CUSTOMER_SPLIT; ?></legend>
<div class="information"><?php echo TEXT_RETURNING_CUSTOMER_SPLIT; ?></div>

<?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL'), 'post', 'id="loginForm"'); ?>
<label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
<?php echo zen_draw_input_field('email_address', '', 'size="18" id="login-email-address"'); ?>
<br class="clearBoth" />

<label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
<?php echo zen_draw_password_field('password', '', 'size="18" id="login-password"'); ?>
<br class="clearBoth" />

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
<div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
</form>
</fieldset>
<br class="clearBoth" />
<?php
  if ($_SESSION['cart']->count_contents() > 0) { ?>
<!-- BOF COWOA 2 of 2 -->
<?php if (COWOA_STATUS == 'true') { ?>  
<h3><?php echo TEXT_COWOA_HEADING; ?></h3>
    <fieldset>
    <legend><?php echo COWOA_HEADING; ?></legend>
    <?php echo TEXT_RATHER_COWOA; ?>
    <div class="buttonRow forward">
    <?php echo "<a href=\"" . zen_href_link(FILENAME_NO_ACCOUNT, '', 'SSL') . "\">"; ?>
    <?php echo zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT); ?></a></div>
    <br class="clearBoth" />
    </fieldset>
  <?php } ?>
<!-- EOF COWOA 2 of 2-->  
<?php } ?>
<!--EOF PPEC split login- DO NOT REMOVE-->
<?php } else { ?>
<!--BOF normal login-->
<?php
  if ($_SESSION['cart']->count_contents() > 0) {
?>
<div class="advisory"><?php echo TEXT_VISITORS_CART; ?></div>
<?php
  }
?>
<?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL'), 'post', 'id="loginForm"'); ?>
<fieldset>
<legend><?php echo HEADING_RETURNING_CUSTOMER; ?></legend>

<label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
<?php echo zen_draw_input_field('email_address', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="login-email-address"'); ?>
<br class="clearBoth" />

<label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
<?php echo zen_draw_password_field('password', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_password') . ' id="login-password"'); ?>
<br class="clearBoth" />
<?php echo zen_draw_hidden_field('securityToken', $_SESSION['securityToken']); ?>
</fieldset>

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
<div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
</form>
<br class="clearBoth" />

<?php echo zen_draw_form('create_account', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onsubmit="return check_form(create_account);" id="createAccountForm"') . zen_draw_hidden_field('action', 'process') . zen_draw_hidden_field('email_pref_html', 'email_format'); ?>
<fieldset>
<legend><?php echo HEADING_NEW_CUSTOMER; ?></legend>

<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION; ?></div>

<?php require($template->get_template_dir('tpl_modules_create_account.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_create_account.php'); ?>

</fieldset>

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT, BUTTON_SUBMIT_ALT); ?></div>
</form>
<!--EOF normal login-->
<?php } ?>
</div>

It seems that ```php

<!-- BOF COWOA 2 of 2 -->

I wonder if I can just move move whole thing up (with IF statement)... to get the appearance I wanted or I have to adjust IF statement blocks around?

-PanZC2020
25 Oct 2017, 8:55 PM
#805
panzc2020 avatar

panzc2020

New Zenner

Join Date:
May 2014
Posts:
68
Plugin Contributions:
0

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

So I somehow managed to do it, modified on tpl_login_default.php file (in /includes/templates/[TEMPLATE NAME]/templates)

By moving whole block of the COWOA 2 of 2 up... along with the IF statement where it check cart empty or not...

<?php 
  if ($_SESSION['cart']->count_contents() > 0) { ?> 
<!-- BOF COWOA 2 of 2 -->
<?php if (COWOA_STATUS == 'true') { ?>  
<h3><?php echo TEXT_COWOA_HEADING; ?></h3>
    <fieldset>
    <legend><?php echo COWOA_HEADING; ?></legend>
    <?php echo TEXT_RATHER_COWOA; ?>
    <div class="buttonRow forward">
    <?php echo "<a href=\"" . zen_href_link(FILENAME_NO_ACCOUNT, '', 'SSL') . "\">"; ?>
    <?php echo zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT); ?></a></div>
    <br class="clearBoth" />
    </fieldset>
  <?php } ?>
<!-- EOF COWOA 2 of 2-->  
<?php } ?>

So the file became this way...

<?php
/**
 * Page Template
 *
 * @package templateSystem
 * @copyright Copyright 2003-2011 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: tpl_login_default.php 18695 2011-05-04 05:24:19Z drbyte $
 * @version $Id: Integrated COWOA v2.4  - 2007 - 2013
 */
?>
<div class="centerColumn" id="loginDefault">

<h1 id="loginDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

<?php if ($messageStack->size('login') > 0) echo $messageStack->output('login'); ?>


<?php if ( USE_SPLIT_LOGIN_MODE == 'True' || $ec_button_enabled) { ?>
<!--BOF PPEC split login- DO NOT REMOVE-->

<?php
  if ($_SESSION['cart']->count_contents() > 0) { ?>
<!-- BOF COWOA 2 of 2 -->
<?php if (COWOA_STATUS == 'true') { ?>  
<h3><?php echo TEXT_COWOA_HEADING; ?></h3>
    <fieldset>
    <legend><?php echo COWOA_HEADING; ?></legend>
    <?php echo TEXT_RATHER_COWOA; ?>
    <div class="buttonRow forward">
    <?php echo "<a href=\"" . zen_href_link(FILENAME_NO_ACCOUNT, '', 'SSL') . "\">"; ?>
    <?php echo zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT); ?></a></div>
    <br class="clearBoth" />
    </fieldset>
  <?php } ?>
<!-- EOF COWOA 2 of 2-->  
<?php } ?>

<!-- BOF COWOA 1 of 2 -->
<h3><?php echo TEXT_STANDARD_ACCOUNT_HEADING; ?></h3>
<!-- EOF COWOA 1 of 2 -->

<fieldset class="floatingBox back">
<legend><?php echo HEADING_NEW_CUSTOMER_SPLIT; ?></legend>
<?php // ** BEGIN PAYPAL EXPRESS CHECKOUT ** ?>
<?php if ($ec_button_enabled) { ?>

<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION_SPLIT; ?></div>

  <div class="center"><?php require(DIR_FS_CATALOG . DIR_WS_MODULES . 'payment/paypal/tpl_ec_button.php'); ?></div>
<hr />
<?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_DIVIDER; ?>
<?php } ?>
<?php // ** END PAYPAL EXPRESS CHECKOUT ** ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_SPLIT; ?></div>

<?php echo zen_draw_form('create', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL')); ?>
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CREATE_ACCOUNT, BUTTON_CREATE_ACCOUNT_ALT, 'name="registrationButton"'); ?></div>
</form>
</fieldset>

<fieldset class="floatingBox forward">
<legend><?php echo HEADING_RETURNING_CUSTOMER_SPLIT; ?></legend>
<div class="information"><?php echo TEXT_RETURNING_CUSTOMER_SPLIT; ?></div>

<?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL'), 'post', 'id="loginForm"'); ?>
<label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
<?php echo zen_draw_input_field('email_address', '', 'size="18" id="login-email-address"'); ?>
<br class="clearBoth" />

<label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
<?php echo zen_draw_password_field('password', '', 'size="18" id="login-password"'); ?>
<br class="clearBoth" />

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
<div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
</form>
</fieldset>
<br class="clearBoth" />

<!--EOF PPEC split login- DO NOT REMOVE-->
<?php } else { ?>
<!--BOF normal login-->
<?php
  if ($_SESSION['cart']->count_contents() > 0) {
?>
<div class="advisory"><?php echo TEXT_VISITORS_CART; ?></div>
<?php
  }
?>
<?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL'), 'post', 'id="loginForm"'); ?>
<fieldset>
<legend><?php echo HEADING_RETURNING_CUSTOMER; ?></legend>
																																		sqqqqq												
<label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
<?php echo zen_draw_input_field('email_address', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="login-email-address"'); ?>
<br class="clearBoth" />

<label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
<?php echo zen_draw_password_field('password', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_password') . ' id="login-password"'); ?>
<br class="clearBoth" />
<?php echo zen_draw_hidden_field('securityToken', $_SESSION['securityToken']); ?>
</fieldset>

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
<div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
</form>
<br class="clearBoth" />

<?php echo zen_draw_form('create_account', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onsubmit="return check_form(create_account);" id="createAccountForm"') . zen_draw_hidden_field('action', 'process') . zen_draw_hidden_field('email_pref_html', 'email_format'); ?>
<fieldset>
<legend><?php echo HEADING_NEW_CUSTOMER; ?></legend>

<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION; ?></div>

<?php require($template->get_template_dir('tpl_modules_create_account.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_create_account.php'); ?>

</fieldset>

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT, BUTTON_SUBMIT_ALT); ?></div>
</form>
<!--EOF normal login-->
<?php } ?>
</div>

I will keep update if there is any problems.

-PanZC2020

25 Oct 2017, 10:01 PM
#806
davewest avatar

davewest

Totally Zenned

Join Date:
Dec 2007
Location:
Payson, AZ
Posts:
1,075
Plugin Contributions:
7

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

PanZC2020:

So I somehow managed to do it, modified on tpl_login_default.php file (in /includes/templates/[TEMPLATE NAME]/templates)

By moving whole block of the COWOA 2 of 2 up... along with the IF statement where it check cart empty or not...

So the file became this way...

<?php /** * Page Template * * @package templateSystem * @copyright Copyright 2003-2011 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: tpl_login_default.php 18695 2011-05-04 05:24:19Z drbyte $ * @version $Id: Integrated COWOA v2.4 - 2007 - 2013 */ ?>
> 
> I will keep update if there is any problems.
> 
> -PanZC2020
I see you are using COWOA v2.4... in version 2.7 this was changed so COWOA was on top of the split page.. not sure what's in the download, github is the v2.7 which has not been updated for over 2 years.

I use COWAA so didn't catch the version issue until now.
28 Nov 2017, 5:11 PM
#807
shopville avatar

shopville

Zen Follower

Join Date:
Aug 2012
Posts:
331
Plugin Contributions:
0

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

I'm looking for something a bit different, wondering if anyone has done that,

Instead of allowing "guest" checkout (where no account is created) I want to skip the "account creation" step, customer will add to cart, proceed to checkout, will be prompted to enter email and billing/shipping address, when customer completes the order an account will automatically be created using the entered details and perhaps a temporary password emailed to the customer.

TIA!

28 Nov 2017, 9:01 PM
#808
davewest avatar

davewest

Totally Zenned

Join Date:
Dec 2007
Location:
Payson, AZ
Posts:
1,075
Plugin Contributions:
7

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

ShopVille:

I'm looking for something a bit different, wondering if anyone has done that,

Instead of allowing "guest" checkout (where no account is created) I want to skip the "account creation" step, customer will add to cart, proceed to checkout, will be prompted to enter email and billing/shipping address, when customer completes the order an account will automatically be created using the entered details and perhaps a temporary password emailed to the customer.

TIA!

What your asking is already done in standard COWOA behavior, with the exception that the password is created and encrypted during the database edits.. You would have to capture the password before encryption to email it.

With COWAA, a password field is offered during shipping/billing user info gathering, if password added then account is knowingly created by the customer… standard account behavior. If left blank, then COWOA side creates an account unknowingly by the customer.

28 Nov 2017, 9:06 PM
#809
shopville avatar

shopville

Zen Follower

Join Date:
Aug 2012
Posts:
331
Plugin Contributions:
0

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

davewest:

What your asking is already done in standard COWOA behavior, with the exception that the password is created and encrypted during the database edits.. You would have to capture the password before encryption to email it.

With COWAA, a password field is offered during shipping/billing user info gathering, if password added then account is knowingly created by the customer… standard account behavior. If left blank, then COWOA side creates an account unknowingly by the customer.

In either case customer can just go to the site and hi forgot password and will get a new temporary one?

28 Nov 2017, 10:20 PM
#810
davewest avatar

davewest

Totally Zenned

Join Date:
Dec 2007
Location:
Payson, AZ
Posts:
1,075
Plugin Contributions:
7

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

ShopVille:

In either case customer can just go to the site and hi forgot password and will get a new temporary one?

As standard accounts, yes you can be there password safe.

As COWOA or Guest accounts, no they are blocked as none account holders.

28 Nov 2017, 10:38 PM
#811
shopville avatar

shopville

Zen Follower

Join Date:
Aug 2012
Posts:
331
Plugin Contributions:
0

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

davewest:

As standard accounts, yes you can be there password safe.

As COWOA or Guest accounts, no they are blocked as none account holders.

This is my concern... I want them checked out as guests but essentialy create an account.

Basically the user skips the "step" for account creation but the anyways enter all details we need for their account (besides password)

2 Jan 2018, 7:36 PM
#812
dk_scully avatar

dk_scully

Zen Follower

Join Date:
Jan 2011
Posts:
339
Plugin Contributions:
0

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

I just installed COWOA on https://www.alanachurch.com/library and it totally messed up the site appearance. The main box is now blue, the logo has disappeared, text links have appeared where none should be, and none of the listings fit in the main box anymore.

I took the precaution of downloading the entire site first before I very carefully installed the module, so when this happened, I re-uploaded all the files and then ran the Uninstall_COWOA.sql in the SQL Query Executor as instructed. It keeps telling me "WARNING: An Error occurred, please refresh the page and try again." And the errors have not been corrected.

The site owner is REALLY upset, and this needs to be fixed immediately. Please help?? Thank you!

Update: Okay, that's really strange...five minutes later, and we didn't do a single thing to it...suddenly the site is showing up properly again. Could anyone please explain why installing the script messed things up that way? We'd really like to get it installed, and don't know what we did wrong. Thanks!

2 Jan 2018, 8:42 PM
#813
davewest avatar

davewest

Totally Zenned

Join Date:
Dec 2007
Location:
Payson, AZ
Posts:
1,075
Plugin Contributions:
7

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

DK_Scully:

I just installed COWOA on www.alanachurch.com/library and it totally messed up the site appearance. The main box is now blue, the logo has disappeared, text links have appeared where none should be, and none of the listings fit in the main box anymore.

I took the precaution of downloading the entire site first before I very carefully installed the module, so when this happened, I re-uploaded all the files and then ran the Uninstall_COWOA.sql in the SQL Query Executor as instructed. It keeps telling me "WARNING: An Error occurred, please refresh the page and try again." And the errors have not been corrected.

The site owner is REALLY upset, and this needs to be fixed immediately. Please help?? Thank you!

Update: Okay, that's really strange...five minutes later, and we didn't do a single thing to it...suddenly the site is showing up properly again. Could anyone please explain why installing the script messed things up that way? We'd really like to get it installed, and don't know what we did wrong. Thanks!

COWOA has many changes to template and core files. I would not suggest drag and drop. Use a compare program and edit to match your site design. Editing a copy of the site on a testing server or a sub-domain would help.

Your browser cache it or cached on a server until the cached copy was refreshed you would not see the changes. Another reason to design and test local before going live.

Much of the template edits are based on the default ZC design.

It keeps telling me "WARNING: An Error occurred, please refresh the page and try again." And the errors have not been corrected.The SQL error could be many things.. Without access to the site or more info not allot to go on.

I've not used COWOA sense designing COWAA.

3 Jan 2018, 4:53 PM
#814
lankeeyankee avatar

lankeeyankee

Totally Zenned

Join Date:
Jan 2007
Posts:
1,514
Plugin Contributions:
1

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

DK_Scully:

The site owner is REALLY upset, and this needs to be fixed immediately.
A great lesson in doing every site change, even little tiny ones, on a cloned test site and never a live site!!! You may need to omit or change CSS rules in the stylesheet so they match your site's style. Also, pay attention to all element classes and IDs in the new code in case your template is using non-standard-zen-cart classes and IDs.

20 Jan 2018, 1:05 AM
#815
tmccaff avatar

tmccaff

Zen Follower

Join Date:
Jan 2018
Posts:
157
Plugin Contributions:
0

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

trying to figure this out how to use this for one page checkout if possible. I am guessing don't use no_account page but go to one page checkout page. Anyone?

20 Jan 2018, 3:53 AM
#816
tmccaff avatar

tmccaff

Zen Follower

Join Date:
Jan 2018
Posts:
157
Plugin Contributions:
0

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

got that fixed. Weird thing is COWOA settings not being displayed on configuration but when I Enter GID it goes to that. Any Ideas why?

20 Jan 2018, 2:05 PM
#817
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

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

tmccaff:

trying to figure this out how to use this for one page checkout if possible. I am guessing don't use no_account page but go to one page checkout page. Anyone?
It's not (currently) supported.

13 Mar 2018, 3:52 PM
#818
targetmarts avatar

targetmarts

Zen Follower

Join Date:
Jan 2018
Posts:
122
Plugin Contributions:
0

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

countrycharm:

This is for Zen Cart v1.5.x
This is the NEW thread for the latest version COWOA Updated and Combined for Zen Cart v1.5.x.

If you are using Zen Cart v1.3.x:
**Please DO NOT post questions regarding the ****v1.3.x versions of this add-on in this support thread. **
Questions regarding the v1.3.x versions of this add-on should be directed to this support thread HERE:http://www.zen-cart.com/showthread.php?156174-COWOA-Updated-and-Combined

I'm not providing any support for this add-on I'm just being a good zen cart member and opening another thread for the updated version of COWOA....

COWOA is in the plugins area here: http://www.zen-cart.com/downloads.php?do=file&id=1416

get the words "var-type undefined: stringIgnoreNull" when submit.
http://www.targetmarts.com/index.php...gister_account
help me please,used 1.5.4

15 Aug 2018, 3:29 PM
#819
seadog avatar

seadog

New Zenner

Join Date:
Aug 2018
Location:
Tucson, AZ
Posts:
3
Plugin Contributions:
0

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

My client is running ZC V1.5.1. When I told them I could configure their store site so that customers could buy and not have to register, they were thrilled.

I downloaded the plugin and unzipped. As I was reading through the cowoa-readme.html file I discovered what seem to be some GLARING errors in the installation tab involving directory structure and file name errors. Here they are:

Core Zen Cart files Modified (APPARENT ERRORS):
1. YOUR_ADMIN/orders.php
2. YOUR_ADMIN/customers.php
3. YOUR_ADMIN/index.php
4. includes/classes/order.php
5. includes/languages/YOUR_TEMPLATE/english.php
6. includes/languages/english/YOUR_TEMPLATE/checkout_confirmation.php
7. includes/languages/english/YOUR_TEMPLATE/checkout_payment.php
8. includes/languages/english/YOUR_TEMPLATE/checkout_process <-- Filename incorrect!!!
9. includes/languages/english/YOUR_TEMPLATE/checkout_shipping.php
10. includes/languages/english/YOUR_TEMPLATE/gv_redeem.php
11. includes/languages/english/YOUR_TEMPLATE/login.php
12. includes/languages/english/YOUR_TEMPLATE/logoff.php
13. includes/languages/english/YOUR_TEMPLATE/time_out.php
14. includes/modules/YOUR_TEMPLATE/create_account.php
15. includes/modules/pages/checkout_shipping/header_php <-- Filename incorrect!!!
16. includes/modules/pages/gv_redeem/header <-- Filename incorrect!!!
17. includes/modules/pages/login/header <-- Filename incorrect!!!
18. includes/modules/pages/password_forgotten/header_php <-- Filename incorrect!!!
19. includes/templates/YOUR_TEMPLATE/common/tpl_header.php
20. includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_confirmation_default.php
21. includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_payment_default.php
22. includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_shipping.php
23. includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_success.php
24. includes/templates/YOUR_TEMPLATE/templates/tpl_login_default.php
25. includes/filenames.php

And this is how it seems it should be to match my directory structure:
1. YOUR_ADMIN/orders.php
2. YOUR_ADMIN/customers.php
3. YOUR_ADMIN/index.php
4. includes/classes/order.php
5. includes/languages/english.php Corrected!!
6. includes/languages/english/checkout_confirmation.php Corrected!!
7. includes/languages/english/checkout_payment.php Corrected!!
8. includes/languages/english/checkout_process.php Corrected!!
9. includes/languages/english/checkout_shipping.php Corrected!!
10. includes/languages/english/gv_redeem.php Corrected!!
11. includes/languages/english/login.php Corrected!!
12. includes/languages/english/logoff.php Corrected!!
13. includes/languages/english/time_out.php Corrected!!
14. includes/modules/create_account.php Corrected!!
15. includes/modules/pages/checkout_shipping/header_php.php Corrected!!
16. includes/modules/pages/gv_redeem/header_php.php Corrected!!
17. includes/modules/pages/login/header_php.php Corrected!!
18. includes/modules/pages/password_forgotten/header_php.php Corrected!!
19. includes/templates/YOUR_TEMPLATE/common/tpl_header.php
20. includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_confirmation_default.php
21. includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_payment_default.php
22. includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_shipping.php
23. includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_success.php
24. includes/templates/YOUR_TEMPLATE/templates/tpl_login_default.php
25. includes/filenames.php

Under the Core COWOA Files setion it looks like a couple lines are not correct:
1. YOUR_ADMIN/includes/languages/english/extra_definitions/COWOA.php
2. includes/extra_datafiles/no_account_filenames.php
3. includes/extra_datafiles/order_status_filenames.php
4. includes/language/english/extra_definitions/checkout_process.php
5. includes/language/english/extra_definitions/order_status.php
6. includes/language/english/extra_definitions/order_steps_defines.php
7. includes/languages/english/YOUR_TEMPLATE/no_account.php Does not match my directory structure (no "YOUR_TEMPLATE") and I'm not sure where these should go. Do I create the YOUR_TEMPLATE/ directory?
8. includes/languages/english/YOUR_TEMPLATE/order_status.php Does not match my directory structure (no "YOUR_TEMPLATE") and I'm not sure where these should go. Do I create the YOUR_TEMPLATE/ directory?
9. includes/modules/YOUR_TEMPLATE/no_account.php
10. includes/modules/YOUR_TEMPLATE/os_downloads.php
11. includes/modules/pages/no_account/header_php.php
12. includes/modules/pages/no_account/jscript_addr_pulldowns.php
13. includes/modules/pages/no_account/jscript_form_check.php
14. includes/modules/pages/no_account/on_load_main.js
15. includes/modules/pages/order_status/header_php.php
16. includes/modules/pages/order_status/jscript_main.php
17. includes/templates/YOUR_TEMPLATE/css/checkout_confirmation.css
18. includes/templates/YOUR_TEMPLATE/css/checkout_payment.css
19. includes/templates/YOUR_TEMPLATE/css/checkout_shipping.css
20. includes/templates/YOUR_TEMPLATE/css/checkout_success.css
21. includes/templates/YOUR_TEMPLATE/css/no_account.css
22. includes/templates/YOUR_TEMPLATE/images/arrow_checkout.gif
23. includes/templates/YOUR_TEMPLATE/images/orderstep.png
24. includes/templates/YOUR_TEMPLATE/templates/tpl_modules_no_account.php
25. includes/templates/YOUR_TEMPLATE/templates/tpl_modules/os_downloads.php
26. includes/templates/YOUR_TEMPLATE/templates/tpl_no_account_default.php
27. includes/templates/YOUR_TEMPLATE/templates/tpl_order_status_default.php

Since I'm testing this in a dev environment I'm going to do the install as it matches my directory structure. But I'd like some feedback on this to see if my assumptions are correct. If this document, that came with the download is, indeed, incorrect, it would be nice to see a correction.

--
Bob

15 Aug 2018, 5:09 PM
#820
davewest avatar

davewest

Totally Zenned

Join Date:
Dec 2007
Location:
Payson, AZ
Posts:
1,075
Plugin Contributions:
7

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

seadog:

My client is running ZC V1.5.1. When I told them I could configure their store site so that customers could buy and not have to register, they were thrilled.

I downloaded the plugin and unzipped. As I was reading through the cowoa-readme.html file I discovered what seem to be some GLARING errors in the installation tab involving directory structure and file name errors. Here they are:

Since I'm testing this in a dev environment I'm going to do the install as it matches my directory structure. But I'd like some feedback on this to see if my assumptions are correct. If this document, that came with the download is, indeed, incorrect, it would be nice to see a correction.

--
Bob

Not errors.. YOUR_ADMIN is to be replaced with what ever the admin folder was named! With YOUR_TEMPLATE changed to what ever you named the template folder to... The names are only place holders as the install instructions point out...