Page 109 of 123 FirstFirst ... 95999107108109110111119 ... LastLast
Results 1,081 to 1,090 of 1222
  1. #1081
    Join Date
    Feb 2006
    Location
    NM
    Posts
    750
    Plugin Contributions
    1

    Default Re: My Checkout Without Account Mod

    I've backed out of the installation as the files are too different from 1.3.9h

    there is no notation especially in the ordered_steps (table-less). I have ordered steps already installed, no notation on whether the other code in the page is essential to it all running smoothly.

    thank goodness for Dreamweaver tracking and syncing my files.

  2. #1082
    Join Date
    Feb 2010
    Posts
    16
    Plugin Contributions
    0

    application error Re: My Checkout Without Account Mod

    Since COWOA in incompatible with my payment module, I have decided to uninstall it. But I have run into some difficulties.

    First of all I removed the COWOA code on the login page, just so customers won't be able to use it. So far, so good.

    I then went on to check if you could create an account as usual. You couldn't. You also can't get your lost password.

    Here is the site: sogrenibikes (dot) com

    The only thing I did after removing the COWOA code on the login page was to try and run the uninstall.sql

    That didn't go smoothly... When done through the admin part by uploading it:

    "054 Unknown column 'query_builder.query_name' in 'where clause'
    in:
    [DELETE FROM zen_query_builder WHERE query_builder.query_name = 'Permanent Account Holders Only' LIMIT 1;]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields."


    The message I get after entering account information while signing up is this:

    1054 Unknown column 'COWOA_account' in 'where clause'
    in:
    [select count(*) as total from zen_customers where customers_email_address = '[email protected]' and COWOA_account != 1]


    Help, please?
    It kind of sucks not to be able to uninstall it, since it has made my site go out of function!

    Thank you so much,
    Alex

  3. #1083
    Join Date
    Apr 2010
    Posts
    20
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Since installing this mod on 1.3.8 two things occur:

    1 - There is an image over the top left of my header image (Within the logo wrapper)
    I have searched and found a solution that fixed this issue for other folk but it does not help with my site - woodandknifesupply.com
    Have managed to get rid of the logo image BUT!! it obviously leaves a logo placeholder and mouseover web link....
    Would be great to get rid of the image placeholder and weblink on mouseover.


    Potentially isolated the issue to the following code within tpl_header.php
    However I do not know how to fix it...

    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>

    <div id="headerWrapper">


    <!--bof-branding display-->
    <div id="logoWrapper">
    <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?></div>
    <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
    <div id="taglineWrapper">
    <?php
    if (HEADER_SALES_TEXT != '') {
    ?>
    <div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
    <?php
    }
    ?>
    <?php
    if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
    <?php
    }
    }
    ?>
    </div>
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
    </div>
    <br class="clearBoth" />
    <!--eof-branding display-->


    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

  4. #1084
    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

  5. #1085
    Join Date
    Feb 2010
    Posts
    16
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    My problem has been solved.

  6. #1086
    Join Date
    Apr 2011
    Posts
    2
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Where can I download the latest version of this mod?

  7. #1087
    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.

  8. #1088
    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.

  9. #1089
    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

  10. #1090
    Join Date
    Apr 2010
    Posts
    20
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by countrycharm View Post
    For all who are having trouble installing this module try COWOA - Updated and Combined.
    Does this work with 1.3.8?

 

 

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

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