Page 65 of 123 FirstFirst ... 1555636465666775115 ... LastLast
Results 641 to 650 of 1222
  1. #641
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Is this mod compatible with PayPal Express Checkout?

  2. #642
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

    help question Re: My Checkout Without Account Mod

    Sorry another question.

    Since a shopper can shop multiple times using this mod without explicitly creating an account, can they also use a coupon designed to be used one one time for each customer, a welcome coupon for instance.

  3. #643
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by shocker View Post
    Sorry another question.

    Since a shopper can shop multiple times using this mod without explicitly creating an account, can they also use a coupon designed to be used one one time for each customer, a welcome coupon for instance.
    I do not use PEC, but as far as I know, this mod will not affect (effect??? I always have issues with that!) it.

    A customer that uses COWOA will not receive a welcome email. But yes, a customer who COWOA will be able to use one time only coupons multiple times.

  4. #644
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Thanks again craftzombie.
    This mod will not give me the effect I want. Since it will allow shoppers to use the coupon multiple times, it will affect the way the I manage discounts.

    thanks

  5. #645
    Join Date
    Apr 2008
    Posts
    38
    Plugin Contributions
    0

    red flag Re: My Checkout Without Account Mod

    I am testing this mod in my eshop, I did every steps according to the instruction. Everything goes well but one problem as following:

    /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 } ?>
    ====================================================================

    1,if i override the tpl_header.php with the page comes with this mod, the whole page was in disorder.
    2,if i override the above code , page is the same as usual, no COWOA displays when customer checkout.

    My zen-cart 1.38 uses Atheme Template
    Last edited by newuser123; 27 Aug 2008 at 08:30 AM. Reason: wrong

  6. #646
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod


    1,if i override the tpl_header.php with the page comes with this mod, the whole page was in disorder.


    That is because the code changes were done with the standard template that comes with Zen. If you have a special template you are using, you need to make the manual changes instead of just overriding the whole file.

    2,if i override the above code , page is the same as usual, no COWOA displays when customer checkout.

    That code change has to do with the "My Account" link on the top of your site. COWOA should appear on the login page (when there are items in the cart) whether or not you make that code change. It has no affect on the entire COWOA, it just makes "My Account" disappear if a customer is checking out with COWOA.

    Your problem lies somewhere else.

    The first thing to check....

    Do you have split-login turned on??
    Admin>Configuration>Layout Settings>Use split-login page

    If you do have split-login on, what happens when you type in:
    http://www.YOURSITE.com/index.php?main_page=no_account
    (replacing YOURSITE.com with your actual site name of course)

    If that page does appear, your problem is probably with the login page itself, missing the correct code changes to make the COWOA section appear. Let me know what you find out. We'll get to the bottom of it!

  7. #647
    Join Date
    Apr 2008
    Posts
    38
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by craftzombie View Post

    1,if i override the tpl_header.php with the page comes with this mod, the whole page was in disorder.


    That is because the code changes were done with the standard template that comes with Zen. If you have a special template you are using, you need to make the manual changes instead of just overriding the whole file.

    2,if i override the above code , page is the same as usual, no COWOA displays when customer checkout.

    That code change has to do with the "My Account" link on the top of your site. COWOA should appear on the login page (when there are items in the cart) whether or not you make that code change. It has no affect on the entire COWOA, it just makes "My Account" disappear if a customer is checking out with COWOA.

    Your problem lies somewhere else.

    The first thing to check....

    Do you have split-login turned on??
    Admin>Configuration>Layout Settings>Use split-login page

    If you do have split-login on, what happens when you type in:
    http://www.YOURSITE.com/index.php?main_page=no_account
    (replacing YOURSITE.com with your actual site name of course)

    If that page does appear, your problem is probably with the login page itself, missing the correct code changes to make the COWOA section appear. Let me know what you find out. We'll get to the bottom of it!

    thank you .

    1,i have turned on the split-login
    2,http://www.nowsweet.com/index.php?main_page=no_account works

    what sould i do next?
    Last edited by newuser123; 27 Aug 2008 at 09:44 AM. Reason: wrong

  8. #648
    Join Date
    Apr 2008
    Posts
    38
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    checked /includes/languages/english/iC_AthemeV1.3/login.php

    Code:
    define('HEADING_RETURNING_CUSTOMER', 'Returning Customers: Please Log In');
    define('HEADING_RETURNING_CUSTOMER_SPLIT', 'Returning Customers');
    
    define('TEXT_RATHER_COWOA', 'For a faster checkout experience, we offer the option to checkout without creating an account.<br />');
    define('COWOA_HEADING', 'Checkout Without An Account');
    
    define('TEXT_RETURNING_CUSTOMER_SPLIT', '<strong>' . STORE_NAME . '</strong> account holders may login below.');
    
    define('TEXT_PASSWORD_FORGOTTEN', 'Forgot your password?');

  9. #649
    Join Date
    Apr 2008
    Posts
    38
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I found the mistake I MADE after reviewing pre posts.I fogot to upload the three files @ \install\overrides-writes\includes\templates\YOUR_TEMPLATE\templates.

    Thank you
    Last edited by newuser123; 27 Aug 2008 at 10:50 AM. Reason: wrong

  10. #650
    Join Date
    Jun 2008
    Location
    Colorado
    Posts
    145
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I recently installed COWOA. I customer made a purchase using COWOA and later created an account. He now has two accounts in admin. Same email. I thought the mod was supposed to combine the account. Did I miss something here?

 

 

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