Version Notes
Did we add new features?
Yes
Did you fix a bunch of Bugs?
Yes
Well then, what in funkytown did you do?
* You can now decide which checkout steps are skipped.
* Fixed a bug preventing progress if the customer decided to chose an alternative shipping address.
* Fixed final step JS error.
Download this release
Release Info
| Developer | Gareth Price |
| Extension | Clearandfizzy_Reducedcheckout |
| Version | 1.2.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.2.1 to 1.2.2
app/code/community/Clearandfizzy/Reducedcheckout/controllers/OnepageController.php
CHANGED
|
@@ -314,7 +314,6 @@ class Clearandfizzy_Reducedcheckout_OnepageController extends Mage_Checkout_Onep
|
|
| 314 |
|
| 315 |
case "payment":
|
| 316 |
$result['goto_section'] = 'review';
|
| 317 |
-
$result['allow_sections'] = array('review');
|
| 318 |
$result['update_section'] = array(
|
| 319 |
'name' => 'review',
|
| 320 |
'html' => $this->_getReviewHtml()
|
| 314 |
|
| 315 |
case "payment":
|
| 316 |
$result['goto_section'] = 'review';
|
|
|
|
| 317 |
$result['update_section'] = array(
|
| 318 |
'name' => 'review',
|
| 319 |
'html' => $this->_getReviewHtml()
|
app/design/frontend/base/default/template/clearandfizzy/reducedcheckout/onepage.phtml
CHANGED
|
@@ -6,6 +6,15 @@
|
|
| 6 |
<input type="hidden" name="suite_ms_payment_method" id="suite_ms_payment_method" value="<?php echo Mage::helper('clearandfizzy_reducedcheckout')->getPaymentMethod(); ?>" />
|
| 7 |
<?php /* -- END SAGEPAY INTEGRATION -- */ ?>
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
<script type="text/javascript">
|
| 10 |
//<![CDATA[
|
| 11 |
var checkout = new Checkout(accordion,{
|
| 6 |
<input type="hidden" name="suite_ms_payment_method" id="suite_ms_payment_method" value="<?php echo Mage::helper('clearandfizzy_reducedcheckout')->getPaymentMethod(); ?>" />
|
| 7 |
<?php /* -- END SAGEPAY INTEGRATION -- */ ?>
|
| 8 |
|
| 9 |
+
|
| 10 |
+
<!-- REQUIRED -->
|
| 11 |
+
<form action="" id="co-payment-form">
|
| 12 |
+
<fieldset>
|
| 13 |
+
<input name="payment[method]" type="hidden" value="<?php echo Mage::helper('clearandfizzy_reducedcheckout')->getPaymentMethod(); ?>" checked="checked" />
|
| 14 |
+
<span id="payment-buttons-container"></span>
|
| 15 |
+
</fieldset>
|
| 16 |
+
</form>
|
| 17 |
+
|
| 18 |
<script type="text/javascript">
|
| 19 |
//<