Page 58 of 123 FirstFirst ... 848565758596068108 ... LastLast
Results 571 to 580 of 1222
  1. #571
    Join Date
    Jun 2008
    Posts
    255
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    I am not a programmer but I learned some tricks and tips while creating websites for our company.

    In order to disable the other customer details that you don't need. First you have to get the no telephone required mod. Once you download that, go to Admin-->minimum values and make telephone number minimum value 0. While you are there, go to the other details you DON'T need and turn them to 0 (like street address).

    Then open up your includes/templates/your template/templates/tpl_modules_create_account.php

    This is where you comment out the customer details you DON'T need. To comment out just put a <!-- in the beginning of the code and a --> on the end of the code e.g:

    <!-- commented out I don't need this info from customer
    <label class="inputLabel" for="street-address"><?php echo ENTRY_STREET_ADDRESS; ?></label>
    <?php echo zen_draw_input_field('street_address', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_street_address', '40') . ' id="street-address"') . (zen_not_null(ENTRY_STREET_ADDRESS_TEXT) ? '<span class="alert">' . ENTRY_STREET_ADDRESS_TEXT . '</span>': ''); ?>
    <br class="clearBoth" />

    <?php
    if (ACCOUNT_SUBURB == 'true') {
    ?>
    <label class="inputLabel" for="suburb"><?php echo ENTRY_SUBURB; ?></label>
    <?php echo zen_draw_input_field('suburb', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_suburb', '40') . ' id="suburb"') . (zen_not_null(ENTRY_SUBURB_TEXT) ? '<span class="alert">' . ENTRY_SUBURB_TEXT . '</span>': ''); ?>
    <br class="clearBoth" />
    <?php
    }
    ?>
    -->

    save the file in your custom template templates file. Refresh your login page and you should now see a shorter version of the login.

    The other thing you should do is to go to your login.php file and rephrase the wordings on your login. I put in "Enter information below for checkout" instead of the standard wording.

    Unfortunately I can't get rid of the password since this requires some coding..but you can word it to say "enter password (needed to track your order)"

    This will work with downloads, gift certificates and pop up invoice at checkout success.

    The only other thing I just thought of that would conflict with this is that if a customer tries to add a review and not logged in, they are taken to the login page which is now rephrased for checkout and this might confuse them. I'm thinking of commenting the whole button out and just installing the testimonial manager now renamed review. See the renaming of the testimonial manager here

    I would show you a working link of my website but it's currently on my localhost under development and ready soon!!!

    Hope this helps! :)

  2. #572
    Join Date
    Jun 2008
    Posts
    627
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Hi sunflowertami

    it does help. Thanks for taking the time. I'll reread again later. I'd like to view your site when it's ready. I always like to see what others come up with for their designs.

    thanks again for your time

    buildingblocks

  3. #573
    Join Date
    May 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Hi, I'm hoping someone here can help.

    We've attempted to install this module, yet had little success.

    Our site is stored on the server in /1to1music.co.uk

    We've uploaded /includes to /1to1music.co.uk/includes (having replaced the 'Your Template' with our own)

    Second, regarding overrides, the cowoa code, outlined in overrides.txt is already present.

    Third, we've installed the SQL and, finally, set to 'true' the split screen value.

    However, when we access our test site the cowoa module isn't present.

    Does anyone have any advice?

    Thanks

    Ciaran

  4. #574
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by Ciaran121music View Post
    Hi, I'm hoping someone here can help.

    We've attempted to install this module, yet had little success.

    Our site is stored on the server in /1to1music.co.uk

    We've uploaded /includes to /1to1music.co.uk/includes (having replaced the 'Your Template' with our own)

    Second, regarding overrides, the cowoa code, outlined in overrides.txt is already present.

    Third, we've installed the SQL and, finally, set to 'true' the split screen value.

    However, when we access our test site the cowoa module isn't present.

    Does anyone have any advice?

    Thanks

    Ciaran
    I can't find any products on your site (http://84.51.237.128/index.php) that are not "sold out". COWOA will not appear unless there are items in the cart. Have you tested with products that are in stock?

  5. #575
    Join Date
    May 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Hi, thanks for your reply.

    Our starter electric guitar package - the sun burst model - is in stock. Here's a link: http://84.51.237.128/index.php?main_...products_id=20


    Thank you

    Ciaran

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

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by Ciaran121music View Post
    Hi, thanks for your reply.

    Our starter electric guitar package - the sun burst model - is in stock. Here's a link: http://84.51.237.128/index.php?main_...products_id=20


    Thank you

    Ciaran
    If you type in http://84.51.237.128/index.php?main_page=no_account, the page does appear.... so COWOA is installed. I was able to get to the next step of COWOA, but couldn't complete checkout because of issues with shipping to my location. So everything looks fine except for the fact that its not appearing on your login page. The file may not have transfered properly or the correct code was not entered if you added the COWOA code manually to /includes/templates/YOUR_TEMPLATE/templates/tpl_login_default.php.

  7. #577
    Join Date
    May 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Craftzombie,

    Again, thanks for your help. We've re dragged the tpl_modules_no_account.php and tpl_no_account_default.php into the

    /includes/templates/YOUR_TEMPLATE/templates/ folder, yet at checkout there is still no cowoa link.

    Any ideas?

    Ciaran

  8. #578
    Join Date
    Mar 2008
    Posts
    148
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    YOUR_TEMPLATE needs to be what you have defined as your template folder, ex. classic.

  9. #579
    Join Date
    Jul 2006
    Posts
    496
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Quote Originally Posted by Ciaran121music View Post
    Craftzombie,

    Again, thanks for your help. We've re dragged the tpl_modules_no_account.php and tpl_no_account_default.php into the

    /includes/templates/YOUR_TEMPLATE/templates/ folder, yet at checkout there is still no cowoa link.

    Any ideas?

    Ciaran
    I'm not talking about tpl_modules_no_account.php or tpl_no_account_default.php, I said tpl_login_default.php.

    tpl_modules_no_account.php & tpl_no_account_default.php are already working, thats why I was able to go to http://84.51.237.128/index.php?main_page=no_account

  10. #580
    Join Date
    May 2008
    Posts
    33
    Plugin Contributions
    0

    Default Re: My Checkout Without Account Mod

    Thanks, that worked perfectly. In future we'll check to ensure all files copied correctly.

    Thanks very much for your help!

    Ciaran

 

 

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