Page 30 of 123 FirstFirst ... 2028293031324080 ... LastLast
Results 291 to 300 of 1222
  1. #291
    Join Date
    Aug 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Update: Turns out it wasn't an issue with the Mod at all. I needed to set 'Session Settings - Recreate Sessions' to false.

  2. #292
    Join Date
    Feb 2005
    Location
    New Jersey
    Posts
    646
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Where is the correct and current download for this?

    Thanks,
    Kelly

  3. #293
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: My Checkout Without Account Mod

    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  4. #294
    Join Date
    Jun 2007
    Posts
    167
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I have this installed and it works like a champ! I do, however, have an astetics issue. It the customer uses cowoa the step/arrow indicator works great. If yhe customer creates an account the step/arrow indicator is not so neatly displayed. The last step gets pushed underneath the first step. Any idea what I should do to correct? Thanks!

  5. #295
    Join Date
    Sep 2005
    Location
    Adelaide South Australia
    Posts
    31
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Hi PastGenToys,

    You could try changing the padding around line 9 in the all the COWA css files from 3 to 0, it seems to have worked for others. You could also play around wih the margin spacings (margin: 10px 10px;) around line 11. :)

    Has anyone had trouble displaying the 'Order Status' link in the information box? Is there a switch setting to display it or is it supposed to appear once the mod is installed.

  6. #296
    Join Date
    Sep 2005
    Location
    Adelaide South Australia
    Posts
    31
    Plugin Contributions
    0

    Default COWA Order Status link

    Hi Guys,

    If you want to display the COWA 'Order Status' link in your information box...

    in:
    includes/languages/english/YOUR_TEMPLATE/english.php

    add the following to the bottom of the define list:
    // information box text in sideboxes/information.php:

    define('BOX_INFORMATION_ORDER_STATUS', 'Order Status');

    then in the sidebox module:

    /includes/modules/sideboxes/YOUR_TEMPLATE/information.php

    add the code after: unset($information); - found at about line 12 - where you want the link to appear:

    if (DEFINE_ORDER_STATUS <= 1) {
    $information[] = '<a href="' . zen_href_link(FILENAME_ORDER_STATUS) . '">' . BOX_INFORMATION_ORDER_STATUS . '</a>';
    }

    upload the edited files and the link should appear in the Information side box.

    Hope it helps. :)
    Last edited by webman; 16 Sep 2007 at 03:11 AM. Reason: Fixed typos! :)

  7. #297
    Join Date
    Jun 2007
    Posts
    167
    Plugin Contributions
    0

    red flag Re: My Checkout Without Account Mod

    Quote Originally Posted by webman View Post
    Hi PastGenToys,

    You could try changing the padding around line 9 in the all the COWA css files from 3 to 0, it seems to have worked for others. You could also play around wih the margin spacings (margin: 10px 10px;) around line 11. :)

    Has anyone had trouble displaying the 'Order Status' link in the information box? Is there a switch setting to display it or is it supposed to appear once the mod is installed.

    Perfect! Thank you!

  8. #298
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I have COWA installed and it works great, except the customers are not receiving an email order confirmation upon checkout. They enter their email address during COWA checkout so I how do I get it to send them an email order confirmation???

    Thanks!

  9. #299
    Join Date
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I'm having the same problem. The buyers are not receiving a email confirmation, and it has to do with the period at the end of their email address.

    So when they click "Confirm Order" it goes to a white page that reads "Email Error: Could not instantiate mail function."

    Is there a fix for this???

    Also, in the admin, when I try to use the "email customer" button, it cannot send to them, cos the of the address with the period.

  10. #300
    Join Date
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I have given up on the COWOA mod, and modified the current login page to give the customer the appearance of not creating an account.

    By modifying the login page 'Sign Up' button and text.

    You can see an example of what I did here: https://northcountrychapel.com/shop/...ain_page=login

    I edited these files

    ~~~~~~~~~~~~~~~~
    includes/languages/english/button_names.php

    Line 67, I changed this:

    define('BUTTON_CREATE_ACCOUNT_ALT', 'Sign Up');

    to be this:

    define('BUTTON_CREATE_ACCOUNT_ALT', ' Continue Check Out &raquo; ');

    ~~~~~~~~~~~~~~~~


    ~~~~~~~~~~~~~~~~
    includes/languages/english/login.php

    Line 19, I changed this:

    define('TEXT_NEW_CUSTOMER_POST_INTRODUCTION_SPLIT', 'Create a Customer Profile with <strong>' . STORE_NAME . '</strong> which allows you to shop faster, track the status of your current orders, review your previous orders and take advantage of our other member\'s benefits.');

    to be this:

    define('TEXT_NEW_CUSTOMER_POST_INTRODUCTION_SPLIT', 'New customers click Continue Check Out.');

    ~~~~~~~~~~~~~~~~


    ~~~~~~~~~~~~~~~~
    includes/templates/MY_TEMPLATE/templates/tpl_login_default.php

    Around Line 19, beneath "Use Split Login" code, I styled the 2 options to stack on top of each other. This way the "New Customer" box was on top of the "Returning Customers".

    NOTE - Be sure to remove the old COWOA box


    Code:
    <fieldset class="centerColumn" id="">
    <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 ** ?>
    <?php echo zen_draw_form('create', zen_href_link(FILENAME_CREATE_ACCOUNT, 'action=process', 'SSL')); ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CREATE_ACCOUNT, BUTTON_CREATE_ACCOUNT_ALT); ?></div>
    </form>
    <div class="information"><?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_SPLIT; ?></div>
    </fieldset>
    
    
    
    <fieldset class="">
    <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')); ?>
    <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>
    ~~~~~~~~~~~~~~~~


    Hopefully this will help other people who are having issues with the COWOA and are looking for another option.

    The obvious draw back to this, is if a customer just decides to create an account, while nothing is in their shopping cart, the Sign up page appears to be a check out page. As I very rarely have anyone decide to just create an account, I think this benefit out weighs the drawback.
    Last edited by ft11; 16 Oct 2007 at 08:26 PM.

 

 
Page 30 of 123 FirstFirst ... 2028293031324080 ... 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

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