Page 2 of 2

Re: open cart tips

Posted: Mon Jul 01, 2013 5:47 am
by Stevyn
remove breadcrumbs

edit stylesheet.css, find .breadcrumb and add the display none so it looks like this

Code: Select all

.breadcrumb {
	color: #CCCCCC;
	margin-bottom: 10px;
 display: none;
}

Re: open cart tips

Posted: Mon Jul 01, 2013 5:55 am
by Stevyn
How can I make the "postcode" required when registering?

Admin -> System -> Localization -> Country -> United States -> Zip Code Required

Re: open cart tips

Posted: Tue Jul 02, 2013 6:01 am
by Stevyn
remove product compare, sort options and display options etc in the

template/products/catagories.tpl

for cleaner layout

Re: open cart tips

Posted: Wed Jul 03, 2013 4:00 am
by Stevyn
be sure to clean up the order outgoing status update language :

admin/language/english/mail/order.php

note that it is in the admin area

also clean the one in:

catalog/language/english/mail/order.php

Re: open cart tips

Posted: Wed Jul 03, 2013 4:19 am
by Stevyn
after the CONTACT US form is submitted it goes to the success.tpl which is designed for success of a completed order

so change this to make the contact us form return to the cart:

catalog/controller/information/contact.php

change around line 20 or so:

link('information/contact/success'));

to:

link('common/home'));

Re: open cart tips

Posted: Fri Jul 12, 2013 10:55 am
by Stevyn
if using paypal standard be sure to:

ADMIN -> EXTENSIONS -> PAYMENTS -> edit PAYPAL STANDARD

make sure Transaction Method: is set to SALE

for more info see:

http://forum.opencart.com/viewtopic.php?t=12839

Re: open cart tips

Posted: Tue Jul 16, 2013 11:25 am
by Stevyn
remove field in checkout:

http://ffct.cc/removing-checkout-fields-in-opencart/

example:
to remove the FAX field in the checkout

edit template checkout/guest.tpl

remove the header that prints FAX and use CSS to hide the input:

Code: Select all

<!--
 <?php echo $entry_fax; ?><br />
 
  <input type="text" name="fax" value="<?php echo $fax; ?>" class="large-field" />
  -->
  
  <input class="large-field" style="display: none;" type="text" name="fax" value="" />


if the field is required you will need to edit another file, will post that solution soon

Re: open cart tips

Posted: Mon Aug 12, 2013 3:09 am
by Stevyn
remove COMPANY ID from checkout

admin > sales > customers > customer group and set to no.

Re: open cart tips

Posted: Wed Jun 17, 2015 1:24 pm
by Stevyn
adding a new field to customer account?

read:

http://forum.opencart.com/viewtopic.php?t=2514

and remember to create the new field in the data base:

Code: Select all

     ALTER TABLE `order` ADD `new_variable` VARCHAR( 4 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL ;