Page 12 of 13 FirstFirst ... 210111213 LastLast
Results 111 to 120 of 1222

Hybrid View

  1. #1
    Join Date
    Apr 2010
    Posts
    20
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Problem 1 is resolved

    Restored the original file as described below and as per manual install guidelines modded the original file.....no more problem with issue 1
    /includes/templates/YOUR_TEMPLATE/common/tpl_header.php

    ====================================================================

    FIND:
    -

    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>


    -

    REPLACE WITH:
    -

    <?php if (!($_SESSION['COWOA'])) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li><?php } ?>


    Still need help please with issue two

    2 - From within Admin the default centre top box that lists customers (Modded by the COWOA sql script so it lists COWOA customers) is a bit agricultural...any thoughts re tidying this up would be appreciated.

    i.e. displays the sql names
    BOX_TITLE_CUSTOMERS
    BOX_ENTRY_CUSTOMERS_TOTAL 147
    BOX_ENTRY_CUSTOMERS_NORMAL 146
    BOX_ENTRY_CUSTOMERS_COWOA 1

    BOX_ENTRY_CUSTOMERS_TOTAL_DISTINCT 147
    BOX_ENTRY_CUSTOMERS_NORMAL 146
    BOX_ENTRY_CUSTOMERS_COWOA_DISTINCT 1

  2. #2
    Join Date
    Apr 2010
    Posts
    20
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by Mammoth View Post

    Still need help please with issue two

    2 - From within Admin the default centre top box that lists customers (Modded by the COWOA sql script so it lists COWOA customers) is a bit agricultural...any thoughts re tidying this up would be appreciated.

    i.e. displays the sql names
    BOX_TITLE_CUSTOMERS
    BOX_ENTRY_CUSTOMERS_TOTAL 147
    BOX_ENTRY_CUSTOMERS_NORMAL 146
    BOX_ENTRY_CUSTOMERS_COWOA 1

    BOX_ENTRY_CUSTOMERS_TOTAL_DISTINCT 147
    BOX_ENTRY_CUSTOMERS_NORMAL 146
    BOX_ENTRY_CUSTOMERS_COWOA_DISTINCT 1

    Any pointers appreciated.

  3. #3
    Join Date
    Apr 2011
    Posts
    1
    Plugin Contributions
    0

    cart error Re: My Checkout Without Account Mod

    I have installed version 2-0c1 of COWOA on ZenCart version 1.3..9.

    When attempting to checkout without an account, I am having an issue.

    I have seen other with the same problem, but have seen no definitive fixes; I have attempted all the various suggestions supplied to no avail.

    This is the issue:
    On step 1, where the user enters their Billing information, upon submitting this form, instead of going to Step 2: Shipping, it just reloads the form.


    I have already verified all template folders were updated to my theme ("template_default").

    I have verfied that /includes/modules/template_default/no_account.php is on the server.

    PLEASE HELP!! Thanks.

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

    Default Re: My Checkout Without Account Mod

    For all who are having trouble installing this module try COWOA - Updated and Combined.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  5. #5
    Join Date
    Dec 2011
    Location
    Emmen, The Netherlands
    Posts
    85
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by Mammoth View Post
    2 - From within Admin the default centre top box that lists customers (Modded by the COWOA sql script so it lists COWOA customers) is a bit agricultural...any thoughts re tidying this up would be appreciated.

    i.e. displays the sql names
    BOX_TITLE_CUSTOMERS
    BOX_ENTRY_CUSTOMERS_TOTAL 147
    BOX_ENTRY_CUSTOMERS_NORMAL 146
    BOX_ENTRY_CUSTOMERS_COWOA 1

    BOX_ENTRY_CUSTOMERS_TOTAL_DISTINCT 147
    BOX_ENTRY_CUSTOMERS_NORMAL 146
    BOX_ENTRY_CUSTOMERS_COWOA_DISTINCT 1
    i had the same problem and got it fixed by copying COWOA.php
    to

    admin/includes/languages/dutch/extra_definitions/
    admin/includes/languages/english/extra_definitions/

    now its working ok !

    not sure if it has to go in both dirs but thats what i did

    1.3.8

  6. #6
    Join Date
    Jun 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Does anyone know if this mod works with newest zencart version 1.5?

    Trying a fresh install on a fresh 1.5 and so far I can't get it to even show up on the checkout page (split login is set to "true".) Wondering if it's because it's not compatible or because I did something incorrect.

    Thanks!

  7. #7
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: My Checkout Without Account Mod

    All mods that have admin control pages will need to take account of new v1.5 page registration methods. If this has not yet been done, it will probably not be usable.

  8. #8
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I am trying to install the COWA I have it loaded on my localhost, and it worked just fine, However when adding the sql on the hosted server I will not let me alter tables. I get I error that states something like can't alter table there is no table customers

    My site was down due to no connection to the database and it would not restore my backup. I had to add a new database - upload the backup to it and change configure files.

    I have downloaded a backup copy of my database and want to insert into the sql backup and then add the patch by pasting into the query window.

    The zen cart version on my hosted server is 1.3.8
    version on localhost is 1.3.9

    This is my table customer

    Code:
    DROP TABLE IF EXISTS `customers`;
    SET @saved_cs_client     = @@character_set_client;
    SET character_set_client = utf8;
    CREATE TABLE `customers` (
      `customers_id` int(11) NOT NULL auto_increment,
      `customers_gender` char(1) NOT NULL default '',
      `customers_firstname` varchar(32) NOT NULL default '',
      `customers_lastname` varchar(32) NOT NULL default '',
      `customers_dob` datetime NOT NULL default '0001-01-01 00:00:00',
      `customers_email_address` varchar(96) NOT NULL default '',
      `customers_nick` varchar(96) NOT NULL default '',
      `customers_default_address_id` int(11) NOT NULL default '0',
      `customers_telephone` varchar(32) NOT NULL default '',
      `customers_fax` varchar(32) default NULL,
      `customers_password` varchar(40) NOT NULL default '',
      `customers_newsletter` char(1) default NULL,
      `customers_group_pricing` int(11) NOT NULL default '0',
      `customers_email_format` varchar(4) NOT NULL default 'TEXT',
      `customers_authorization` int(1) NOT NULL default '0',
      `customers_referral` varchar(32) NOT NULL default '',
      PRIMARY KEY  (`customers_id`),
      KEY `idx_email_address_zen` (`customers_email_address`),
      KEY `idx_referral_zen` (`customers_referral`(10)),
      KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
      KEY `idx_nick_zen` (`customers_nick`),
      KEY `idx_newsletter_zen` (`customers_newsletter`)
    ) ENGINE=MyISAM AUTO_INCREMENT=274 DEFAULT CHARSET=utf8;
    SET character_set_client = @saved_cs_client;
    Would I just add to the code?

    COWOA_account tinyint(1) NOT NULL default 0;
    and would I need some commas around.

    and do the same for the orders and then what would I do with the code?

    Or is there a better suggestion?

  9. #9
    Join Date
    Jan 2008
    Posts
    39
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by ms paperlicious View Post
    Does anyone know if this mod works with newest zencart version 1.5?

    Trying a fresh install on a fresh 1.5 and so far I can't get it to even show up on the checkout page (split login is set to "true".) Wondering if it's because it's not compatible or because I did something incorrect.

    Thanks!
    I have the same issue...I am guessing that it's not compatible with the 1.5. Loved the mod in my last cart and am hoping that someone will update to make it usable with the new version!

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

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by BALCO View Post
    I have the same issue...I am guessing that it's not compatible with the 1.5. Loved the mod in my last cart and am hoping that someone will update to make it usable with the new version!
    Well since this mod doesn't really have an "owner/developer" it might be a while before it's updated for v1.5.. If it's vital to your business, you might consider investing in the cost of paying someone to update this mod for you.. or even having a crack at the updates yourself..
    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 12 of 13 FirstFirst ... 210111213 LastLast

Similar Threads

  1. Checkout without account problem
    By weblasomnath in forum Addon Templates
    Replies: 0
    Last Post: 23 Nov 2010, 02:56 PM
  2. Checkout without account
    By GDOrn in forum All Other Contributions/Addons
    Replies: 194
    Last Post: 14 Sep 2010, 08:05 PM
  3. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  4. question about the checkout without account mod
    By hxkknba in forum Addon Payment Modules
    Replies: 1
    Last Post: 12 Oct 2009, 05:48 PM
  5. Changing checkout flow with Checkout Without Account (COWOA)?
    By pe7er in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Feb 2008, 06:09 PM

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