Version Notes
This is the beta version release for up the one step checkout ext.
Download this release
Release Info
Developer | Fontis |
Extension | Clarion_OnestepCheckout |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- app/code/community/Clarion/OnestepCheckout/etc/config.xml +1 -1
- app/design/frontend/base/default/template/onestepcheckout/onepage/billing.phtml +1 -1
- app/design/frontend/base/default/template/onestepcheckout/onepage/review/info.phtml +2 -3
- app/design/frontend/base/default/template/onestepcheckout/onepage/review/totals.phtml +7 -1
- app/design/frontend/base/default/template/onestepcheckout/onepage/shipping.phtml +5 -11
- app/design/frontend/base/default/template/onestepcheckout/onestepcheckout.phtml +2 -6
- package.xml +4 -4
app/code/community/Clarion/OnestepCheckout/etc/config.xml
CHANGED
@@ -31,7 +31,7 @@
|
|
31 |
<config>
|
32 |
<modules>
|
33 |
<Clarion_OnestepCheckout>
|
34 |
-
<version>1.0.
|
35 |
</Clarion_OnestepCheckout>
|
36 |
</modules>
|
37 |
|
31 |
<config>
|
32 |
<modules>
|
33 |
<Clarion_OnestepCheckout>
|
34 |
+
<version>1.0.2</version>
|
35 |
</Clarion_OnestepCheckout>
|
36 |
</modules>
|
37 |
|
app/design/frontend/base/default/template/onestepcheckout/onepage/billing.phtml
CHANGED
@@ -115,7 +115,7 @@ $has_addr = $this->customerHasAddresses();
|
|
115 |
$('billing:region_id').setAttribute('defaultValue', "<?php echo $this->getBillAddress()->getRegionId() ?>");
|
116 |
//]]>
|
117 |
</script>
|
118 |
-
<input type="text" id="billing:region" name="billing[region]" value="<?php echo $this->htmlEscape($this->getBillAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="validate-alpha t1
|
119 |
</div>
|
120 |
</div>
|
121 |
</div>
|
115 |
$('billing:region_id').setAttribute('defaultValue', "<?php echo $this->getBillAddress()->getRegionId() ?>");
|
116 |
//]]>
|
117 |
</script>
|
118 |
+
<input type="text" id="billing:region" name="billing[region]" value="<?php echo $this->htmlEscape($this->getBillAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="validate-alpha t1" maxlength="20" style="display:none;" />
|
119 |
</div>
|
120 |
</div>
|
121 |
</div>
|
app/design/frontend/base/default/template/onestepcheckout/onepage/review/info.phtml
CHANGED
@@ -41,10 +41,9 @@
|
|
41 |
<col width="1" />
|
42 |
<?php endif; ?>
|
43 |
<thead>
|
44 |
-
<tr>
|
45 |
-
|
46 |
<th style="width: 70px;"><?php echo $this->__('Product Name') ?></th>
|
47 |
-
<th style="min-width: 288px;" rowspan="
|
48 |
<th class="a-center"><?php echo $this->__('Qty') ?></th>
|
49 |
<th class="a-right" colspan="<?php echo $colspan ?>"><?php echo $this->__('Subtotal') ?></th>
|
50 |
</tr>
|
41 |
<col width="1" />
|
42 |
<?php endif; ?>
|
43 |
<thead>
|
44 |
+
<tr>
|
|
|
45 |
<th style="width: 70px;"><?php echo $this->__('Product Name') ?></th>
|
46 |
+
<th style="min-width: 288px;" rowspan=""> </th><!-- Here's the empty col for the image -->
|
47 |
<th class="a-center"><?php echo $this->__('Qty') ?></th>
|
48 |
<th class="a-right" colspan="<?php echo $colspan ?>"><?php echo $this->__('Subtotal') ?></th>
|
49 |
</tr>
|
app/design/frontend/base/default/template/onestepcheckout/onepage/review/totals.phtml
CHANGED
@@ -27,7 +27,13 @@
|
|
27 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
28 |
*/
|
29 |
?>
|
30 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
<?php if ($this->getTotals()): ?>
|
32 |
<tfoot>
|
33 |
<?php $_colspan = $this->helper('tax')->displayCartBothPrices() ? 4 : 3; ?>
|
27 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
28 |
*/
|
29 |
?>
|
30 |
+
<?php
|
31 |
+
$gift_wrap_checked_user='';
|
32 |
+
if(isset($_POST['giftwrap'])):
|
33 |
+
$gift_wrap_checked_user=($_POST['giftwrap']);
|
34 |
+
endif;
|
35 |
+
?>
|
36 |
+
|
37 |
<?php if ($this->getTotals()): ?>
|
38 |
<tfoot>
|
39 |
<?php $_colspan = $this->helper('tax')->displayCartBothPrices() ? 4 : 3; ?>
|
app/design/frontend/base/default/template/onestepcheckout/onepage/shipping.phtml
CHANGED
@@ -78,9 +78,9 @@ if (!$this->getQuote()->isVirtual() && Mage::helper('onestepcheckout')->isShippi
|
|
78 |
<label>
|
79 |
<?php echo $this->__('Address') ?>
|
80 |
</label>
|
81 |
-
|
82 |
<div class="data_area">
|
83 |
-
<input type="text" title="<?php echo $this->__('Street Address') ?>" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->htmlEscape($this->getShipAddress()->getStreet(1)) ?>" class="t1
|
84 |
</div>
|
85 |
</div>
|
86 |
<?php
|
@@ -95,7 +95,7 @@ if (!$this->getQuote()->isVirtual() && Mage::helper('onestepcheckout')->isShippi
|
|
95 |
<?php
|
96 |
}
|
97 |
?>
|
98 |
-
<div class="two_fields"
|
99 |
<div class="short">
|
100 |
<label class="required">
|
101 |
<?php echo $this->__('City') ?>
|
@@ -106,7 +106,7 @@ if (!$this->getQuote()->isVirtual() && Mage::helper('onestepcheckout')->isShippi
|
|
106 |
<input type="text" name="shipping[city]" id="shipping:city" title="<?php echo $this->__('City') ?>" value="<?php echo $this->htmlEscape($this->getShipAddress()->getCity()) ?>" class="validate-alpha t1 required-entry" onchange="shipping.setSameAsBilling(false);" maxlength="20" />
|
107 |
</div>
|
108 |
</div>
|
109 |
-
<div class="short"
|
110 |
<label class="required">
|
111 |
<?php echo $this->__('State / Province') ?>
|
112 |
</label>
|
@@ -155,9 +155,6 @@ if (!$this->getQuote()->isVirtual() && Mage::helper('onestepcheckout')->isShippi
|
|
155 |
</div>
|
156 |
</div>
|
157 |
|
158 |
-
<?php
|
159 |
-
if ($fax_r !== 'hidden') :
|
160 |
-
?>
|
161 |
<div lang="two_fields">
|
162 |
<div class="short">
|
163 |
<label>
|
@@ -170,10 +167,7 @@ if (!$this->getQuote()->isVirtual() && Mage::helper('onestepcheckout')->isShippi
|
|
170 |
</div>
|
171 |
</div>
|
172 |
<div class='clr'></div>
|
173 |
-
|
174 |
-
endif;
|
175 |
-
|
176 |
-
?>
|
177 |
<ul>
|
178 |
<?php
|
179 |
if ($logged && $has_addr){
|
78 |
<label>
|
79 |
<?php echo $this->__('Address') ?>
|
80 |
</label>
|
81 |
+
|
82 |
<div class="data_area">
|
83 |
+
<input type="text" title="<?php echo $this->__('Street Address') ?>" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->htmlEscape($this->getShipAddress()->getStreet(1)) ?>" class="t1" onchange="shipping.setSameAsBilling(false);" />
|
84 |
</div>
|
85 |
</div>
|
86 |
<?php
|
95 |
<?php
|
96 |
}
|
97 |
?>
|
98 |
+
<div class="two_fields">
|
99 |
<div class="short">
|
100 |
<label class="required">
|
101 |
<?php echo $this->__('City') ?>
|
106 |
<input type="text" name="shipping[city]" id="shipping:city" title="<?php echo $this->__('City') ?>" value="<?php echo $this->htmlEscape($this->getShipAddress()->getCity()) ?>" class="validate-alpha t1 required-entry" onchange="shipping.setSameAsBilling(false);" maxlength="20" />
|
107 |
</div>
|
108 |
</div>
|
109 |
+
<div class="short">
|
110 |
<label class="required">
|
111 |
<?php echo $this->__('State / Province') ?>
|
112 |
</label>
|
155 |
</div>
|
156 |
</div>
|
157 |
|
|
|
|
|
|
|
158 |
<div lang="two_fields">
|
159 |
<div class="short">
|
160 |
<label>
|
167 |
</div>
|
168 |
</div>
|
169 |
<div class='clr'></div>
|
170 |
+
|
|
|
|
|
|
|
171 |
<ul>
|
172 |
<?php
|
173 |
if ($logged && $has_addr){
|
app/design/frontend/base/default/template/onestepcheckout/onestepcheckout.phtml
CHANGED
@@ -45,15 +45,11 @@
|
|
45 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
46 |
|
47 |
<?php
|
48 |
-
$seq_http = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS']==='on');
|
49 |
-
//$mag_version = Mage::helper('onestepcheckout')->getMagentoVersion();
|
50 |
-
//$mod_version = Mage::helper('onestepcheckout')->getOPCVersion();
|
51 |
?>
|
52 |
<script type="text/javascript">
|
53 |
-
var http_type = '<?php if($seq_http){echo 'https';}else{echo 'http';}?>';
|
54 |
|
55 |
-
//var mag_ver = '<?php echo $mag_version;?>';
|
56 |
-
//var mod_ver = '<?php echo $mod_version;?>';
|
57 |
</script>
|
58 |
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/onestepcheckout.js') ?>"></script>
|
59 |
|
45 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
46 |
|
47 |
<?php
|
48 |
+
$seq_http = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS']==='on');
|
|
|
|
|
49 |
?>
|
50 |
<script type="text/javascript">
|
51 |
+
var http_type = '<?php if($seq_http){echo 'https';}else{echo 'http';}?>';
|
52 |
|
|
|
|
|
53 |
</script>
|
54 |
<script type="text/javascript" src="<?php echo $this->getSkinUrl('js/onestepcheckout.js') ?>"></script>
|
55 |
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Clarion_OnestepCheckout</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
@@ -25,9 +25,9 @@ Why you should use the one step checkout extension?
|
|
25 |
Number of customers abandon the cart because of the lengthy checkout and complex process. With Magento One Step checkout extension customers will see all checkout steps on a single step. It can simplify the shopping experience and could help to increase sales.</description>
|
26 |
<notes>This is the beta version release for up the one step checkout ext.</notes>
|
27 |
<authors><author><name>Dattatray Yadav</name><user>magento</user><email>magento@clariontechnologies.co.in</email></author><author><name>Dattatray Yadav</name><user>dattayadav03</user><email>dattayadav03@gmail.com</email></author></authors>
|
28 |
-
<date>2015-01-
|
29 |
-
<time>08:
|
30 |
-
<contents><target name="magecommunity"><dir name="Clarion"><dir name="OnestepCheckout"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="AddressOptions.php" hash="a976f32a15d5ab8a5bcd20c4c19c9f1e"/><file name="AgreementOptions.php" hash="7fd8eac4098ad87f76ab8a476030006b"/></dir></dir></dir></dir></dir><dir name="Block"><file name="Agreements.php" hash="54575c16fadb8f36e3f2298e1f42fb13"/><file name="Links.php" hash="77e3a3baab884f2ff1acd08abeda0c8a"/><dir name="Onepage"><file name="Billship.php" hash="69232720f104cf90ce050f4939fb8fed"/><file name="Link.php" hash="90241c24e7d11503e703babd1a49935d"/></dir><dir name="Widget"><file name="Dob.php" hash="876534ef908585713657416130d117f0"/><file name="Gender.php" hash="8d4f2e8f92c9cb8e14fbf7c44cb12d81"/><file name="Name.php" hash="e28aed105026ef8ab47e63d3efe91c5e"/><file name="Taxvat.php" hash="c40457a46492a63e2f15ec4675185a6b"/></dir></dir><dir name="Helper"><file name="Data.php" hash="fc851fa2fb6793721a5ab918c2a115f0"/><file name="Url.php" hash="958e4af787dad2f9e95a63d41b6bf4da"/></dir><dir name="Model"><file name="Observer.php" hash="e52387adf1f04aaafc4bbe70f868e7fb"/><dir name="Service"><file name="Quote.php" hash="6dd960ecc466937b4b45ace036056a19"/></dir><dir name="Type"><file name="Geo.php" hash="7bccd649941629cda0035dc8b7048c74"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="fb44b703f7ecfa9d88678a625981899a"/></dir><dir name="etc"><file name="config.xml" hash="
|
31 |
<compatible/>
|
32 |
<dependencies><required><php><min>1.0.0</min><max>9.9.99</max></php></required></dependencies>
|
33 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Clarion_OnestepCheckout</name>
|
4 |
+
<version>1.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
25 |
Number of customers abandon the cart because of the lengthy checkout and complex process. With Magento One Step checkout extension customers will see all checkout steps on a single step. It can simplify the shopping experience and could help to increase sales.</description>
|
26 |
<notes>This is the beta version release for up the one step checkout ext.</notes>
|
27 |
<authors><author><name>Dattatray Yadav</name><user>magento</user><email>magento@clariontechnologies.co.in</email></author><author><name>Dattatray Yadav</name><user>dattayadav03</user><email>dattayadav03@gmail.com</email></author></authors>
|
28 |
+
<date>2015-01-19</date>
|
29 |
+
<time>09:08:32</time>
|
30 |
+
<contents><target name="magecommunity"><dir name="Clarion"><dir name="OnestepCheckout"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="AddressOptions.php" hash="a976f32a15d5ab8a5bcd20c4c19c9f1e"/><file name="AgreementOptions.php" hash="7fd8eac4098ad87f76ab8a476030006b"/></dir></dir></dir></dir></dir><dir name="Block"><file name="Agreements.php" hash="54575c16fadb8f36e3f2298e1f42fb13"/><file name="Links.php" hash="77e3a3baab884f2ff1acd08abeda0c8a"/><dir name="Onepage"><file name="Billship.php" hash="69232720f104cf90ce050f4939fb8fed"/><file name="Link.php" hash="90241c24e7d11503e703babd1a49935d"/></dir><dir name="Widget"><file name="Dob.php" hash="876534ef908585713657416130d117f0"/><file name="Gender.php" hash="8d4f2e8f92c9cb8e14fbf7c44cb12d81"/><file name="Name.php" hash="e28aed105026ef8ab47e63d3efe91c5e"/><file name="Taxvat.php" hash="c40457a46492a63e2f15ec4675185a6b"/></dir></dir><dir name="Helper"><file name="Data.php" hash="fc851fa2fb6793721a5ab918c2a115f0"/><file name="Url.php" hash="958e4af787dad2f9e95a63d41b6bf4da"/></dir><dir name="Model"><file name="Observer.php" hash="e52387adf1f04aaafc4bbe70f868e7fb"/><dir name="Service"><file name="Quote.php" hash="6dd960ecc466937b4b45ace036056a19"/></dir><dir name="Type"><file name="Geo.php" hash="7bccd649941629cda0035dc8b7048c74"/></dir></dir><dir name="controllers"><file name="IndexController.php" hash="fb44b703f7ecfa9d88678a625981899a"/></dir><dir name="etc"><file name="config.xml" hash="e01246b0039f7adcdfd44d53804e454e"/><file name="system.xml" hash="09a5dfaf3891e8c8ed965f9763c52094"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Clarion_OnestepCheckout.xml" hash="7dc741e30accf8109dacf4a07196632d"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="onestepcheckout"><dir name="cart"><file name="noItems.phtml" hash="99c67ab07036d943a80712cbd5c9234f"/></dir><file name="forgotpassword.phtml" hash="d99eb3f83588a3e1f7bd7accbec05db4"/><file name="login.phtml" hash="71c9b4127073678323163ccce7358afd"/><dir name="onepage"><file name="agreements.phtml" hash="f1b31ef73766fb9657c491cd3a52a516"/><file name="billing.phtml" hash="46ad17c7e2b3455de226286087fb6477"/><file name="coupon.phtml" hash="9ddb95fbb812436bcd0581a1ff0525a4"/><file name="link.phtml" hash="c40b5e623ec222aa373a901f48e3fafc"/><dir name="payment"><file name="methods.phtml" hash="f20bb660c50ede4c4393875c52c95f72"/></dir><file name="payment.phtml" hash="d5da5a1f71d609760880c01c77e29bb6"/><dir name="review"><file name="info.phtml" hash="4e07869cabf8a4b690f7df5a78b0acca"/><file name="item.phtml" hash="cebc6461f234c546e1a8de266cb65e74"/><file name="totals.phtml" hash="8d4b4a95acda05a67022a9cbc8b4bfb3"/></dir><file name="review.phtml" hash="ccbbd930a6c70692b3daf71ae44b4beb"/><file name="shipping.phtml" hash="cf00e0e9168681a3f04085a72cbfb2fb"/><file name="shipping_method.phtml" hash="19fa754b6e2aa3ee82cdd4670cf92500"/></dir><file name="onestepcheckout.phtml" hash="e09625e6462badf6e2da5b7265595945"/><dir name="widget"><file name="dob.phtml" hash="4309ac2a4a5746d871ce4a45f3c41a0d"/><file name="gender.phtml" hash="fe864b33611b819a0d969d69f5f4196c"/><file name="name.phtml" hash="da9c98c1c440274093dab38068e13d2e"/><file name="taxvat.phtml" hash="71751fda0bcba0cd5dbb774eced85c9a"/></dir></dir></dir><dir name="layout"><file name="onestepcheckout.xml" hash="533e81569ae7e9713fa72e3fac271239"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><file name="onestepcheckout.css" hash="b6b4bab28df33604c9f9121c37890c92"/></dir><dir name="images"><dir name="onestepcheckout"><file name="ajax-loader_onestepcheckout.gif" hash="bd3e2ae2399bb24f0499eba2e1f4aa42"/><file name="buttononestepcheckoutbg.gif" hash="e8a5524c5758be01bed7a97860785174"/><file name="buttononestepcheckoutbgsmall.gif" hash="c623c2e433f68170aba4e3d4e9a1e113"/><file name="cancel_round_onestepcheckout.png" hash="afcb08c1bdcdb7f9922ea289906fdfbf"/><file name="cancelonestepcheckout.png" hash="52882817381a5cecc72b77b9579d4d2b"/><file name="close_onestepcheckout.png" hash="0aa9c71e1e00deb929514c3b004e30c2"/><file name="facilecheckout_medium_onestepcheckout.png" hash="1c85643035d7b3bffc06f9b4a4f92417"/><file name="loader_onestepcheckout.gif" hash="bd3e2ae2399bb24f0499eba2e1f4aa42"/><file name="number1.png" hash="62767e7af8c1554ee3ae457540e75c13"/><file name="number2.png" hash="d91fee94d1d9c4e8694d188f131fa286"/><file name="number3.png" hash="3e17748413ff5a1c8ae066df584a8366"/><file name="opc-ajax-loader_onestepcheckout.gif" hash="bd3e2ae2399bb24f0499eba2e1f4aa42"/><file name="place-order.jpg" hash="fd9e10e234dd1cb4f59f24ba6fd6b435"/><file name="tick.png" hash="d4c03f6d9b172a088e701e0c7238e2d5"/></dir></dir><dir name="js"><file name="onestepcheckout.js" hash="6122e641dc7f20982c821729bb77d0d3"/></dir></dir></dir></dir></target></contents>
|
31 |
<compatible/>
|
32 |
<dependencies><required><php><min>1.0.0</min><max>9.9.99</max></php></required></dependencies>
|
33 |
</package>
|