cancel
Showing results for 
Search instead for 
Did you mean: 

VERSION 1.8.1.0 checkout broken

VERSION 1.8.1.0 checkout broken

mysticcitycorsets.com

 

when i remove this foundation 3 based framework the checkout works, but when active it doesnt. i attempted to delete all files in "checkout" /app/design/frontend/magento-foundation/default/template/checkout and it didnt change anything. i attempted to change the code as stated in other threads.

1)

Go to /app/design/frontend/base/default/template/checkout/onepage/ file payment.phtml open it, line 36

<fieldset>
    <?php echo $this->getChildHtml('methods') ?>
</fieldset>

add id to fieldset

<fieldset id="checkout-payment-method-load">
    <?php echo $this->getChildHtml('methods') ?>

 

2)

in /template/checkout/onepage/review/info.phtml (at the end)

replace

review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder') ?>', '<?php echo $this->getUrl('checkout/onepage/success') ?>', $('checkout-agreements'));

by

review = new Review('<?php echo $this->getUrl('checkout/onepage/saveOrder', array('f

 

i even attempted to copy the checkout.xml file from both the default modern theme, and base files and replaced the theme files.

at app/design/frontend/magento-foundation/default/layout.

 

im not sure what else i can do or how to find the source of the problem. how do you troubleshoot to find the problem? im very new at this and just trying to learn. thank you for any help you can offer