Mike-
Couple quick items. For conversion.
1.) Add the add to cart button below the products, customers don't always intuitively know to enter the quantity and then go either up/down to click add to cart.
2.) Remove the email salutation Configuration->Customer Details, this really serves little purpose anymore and is nothing more than a frustration to customers when the form doesn't validate.
3.) I suspect part of your issues might be related to your SEO module, It shouldn't rewrite checkout pages.
ok, you removed the other versions of jQuery, so you aren't loading duplicates on checkout, but now you aren't loading it at all on the rest of the site.
to fix this
Create a file: includes/templates/abbington_mega/auto_loaders/loader_sitewide.php
PHP Code:
<?php
$loaders[] = array('conditions' => array('pages' => array('*)),
'jscript_files' => array(
'jquery/jquery-1.10.2.min.js' => 1,
'jquery/jquery-migrate-1.2.1.min.js' => 2
)
);
Bookmarks