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! :)
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
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
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Ciaran121music
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?
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
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Ciaran121music
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.
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
Re: My Checkout Without Account Mod
YOUR_TEMPLATE needs to be what you have defined as your template folder, ex. classic.
Re: My Checkout Without Account Mod
Quote:
Originally Posted by
Ciaran121music
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
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