responsive - Version 0.0.6

Version Notes

- fix bug on Account Page
- popupcart

Download this release

Release Info

Developer tony vu
Extension responsive
Version 0.0.6
Comparing to
See all releases


Code changes from version 0.0.5 to 0.0.6

app/design/frontend/default/responsive/template/checkout/cart/shipping.phtml CHANGED
@@ -90,7 +90,7 @@
90
  <?php if ($_rate->getErrorMessage()): ?>
91
  <?php echo $this->escapeHtml($_rate->getErrorMessage()) ?>
92
  <?php else: ?>
93
- <input name="estimate_method" type="radio" value="<?php echo $this->escapeHtml($_rate->getCode()) ?>" id="s_method_<?php echo $_rate->getCode() ?>"<?php if($_rate->getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> class="radio form-control" />
94
  <label for="s_method_<?php echo $_rate->getCode() ?>"><?php echo $this->escapeHtml($_rate->getMethodTitle()) ?>
95
  <?php $_excl = $this->getShippingPrice($_rate->getPrice(), $this->helper('tax')->displayShippingPriceIncludingTax()); ?>
96
  <?php $_incl = $this->getShippingPrice($_rate->getPrice(), true); ?>
@@ -107,7 +107,7 @@
107
  <?php endforeach; ?>
108
  </dl>
109
  <div class="buttons-set">
110
- <button type="submit" title="<?php echo $this->__('Update Total') ?>" class="button btn btn-default btn-xs" name="do" value="<?php echo $this->__('Update Total') ?>"><span><span><?php echo $this->__('Update Total') ?></span></span></button>
111
  </div>
112
  </form>
113
  <?php endif; ?>
90
  <?php if ($_rate->getErrorMessage()): ?>
91
  <?php echo $this->escapeHtml($_rate->getErrorMessage()) ?>
92
  <?php else: ?>
93
+ <input name="estimate_method" type="radio" value="<?php echo $this->escapeHtml($_rate->getCode()) ?>" id="s_method_<?php echo $_rate->getCode() ?>"<?php if($_rate->getCode()===$this->getAddressShippingMethod()) echo ' checked="checked"' ?> class="radio" />
94
  <label for="s_method_<?php echo $_rate->getCode() ?>"><?php echo $this->escapeHtml($_rate->getMethodTitle()) ?>
95
  <?php $_excl = $this->getShippingPrice($_rate->getPrice(), $this->helper('tax')->displayShippingPriceIncludingTax()); ?>
96
  <?php $_incl = $this->getShippingPrice($_rate->getPrice(), true); ?>
107
  <?php endforeach; ?>
108
  </dl>
109
  <div class="buttons-set">
110
+ <button type="submit" title="<?php echo $this->__('Update Total') ?>" class="button btn btn-success" name="do" value="<?php echo $this->__('Update Total') ?>"><?php echo $this->__('Update Total') ?></button>
111
  </div>
112
  </form>
113
  <?php endif; ?>
app/design/frontend/default/responsive/template/checkout/onepage/review/button.phtml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <button type="submit" title="<?php echo $this->__('Place Order') ?>" class="button btn-checkout btn btn-danger" onclick="review.save();"><?php echo $this->__('Place Order') ?></button>
app/design/frontend/default/responsive/template/checkout/onepage/shipping.phtml ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <form action="" id="co-shipping-form">
28
+ <ul class="form-list">
29
+ <?php if ($this->customerHasAddresses()): ?>
30
+ <li class="wide">
31
+ <label for="shipping-address-select"><?php echo $this->__('Select a shipping address from your address book or enter a new address.') ?></label>
32
+ <div class="input-box">
33
+ <?php echo $this->getAddressesHtmlSelect('shipping') ?>
34
+ </div>
35
+ </li>
36
+ <?php endif ?>
37
+ <li id="shipping-new-address-form"<?php if ($this->customerHasAddresses()): ?> style="display:none;"<?php endif ?>>
38
+ <fieldset>
39
+ <input type="hidden" name="shipping[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="shipping:address_id" />
40
+ <ul>
41
+ <li class="fields"><?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getAddress())->setFieldIdFormat('shipping:%s')->setFieldNameFormat('shipping[%s]')->setFieldParams('onchange="shipping.setSameAsBilling(false)"')->toHtml() ?></li>
42
+ <li class="fields">
43
+ <div class="fields">
44
+ <label for="shipping:company"><?php echo $this->__('Company') ?></label>
45
+ <div class="input-box">
46
+ <input type="text" id="shipping:company" name="shipping[company]" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" onchange="shipping.setSameAsBilling(false);" />
47
+ </div>
48
+ </div>
49
+ </li>
50
+ <?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
51
+ <li class="wide">
52
+ <label for="shipping:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
53
+ <div class="input-box">
54
+ <input type="text" title="<?php echo $this->__('Street Address') ?>" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" class="form-control input-text <?php echo $_streetValidationClass ?>" onchange="shipping.setSameAsBilling(false);" />
55
+ </div>
56
+ </li>
57
+ <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
58
+ <?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
59
+ <li class="wide">
60
+ <div class="input-box">
61
+ <input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="shipping[street][]" id="shipping:street<?php echo $_i ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" class="form-control input-text <?php echo $_streetValidationClass ?>" onchange="shipping.setSameAsBilling(false);" />
62
+ </div>
63
+ </li>
64
+ <?php endfor; ?>
65
+ <?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
66
+ <li class="wide">
67
+ <label for="billing:vat_id"><?php echo $this->__('VAT Number'); ?></label>
68
+ <div class="input-box">
69
+ <input type="text" id="shipping:vat_id" name="shipping[vat_id]" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()); ?>" title="<?php echo $this->__('VAT Number'); ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
70
+ </div>
71
+ </li>
72
+ <?php endif; ?>
73
+ <li class="fields">
74
+ <div class="field">
75
+ <label for="shipping:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
76
+ <div class="input-box">
77
+ <input type="text" title="<?php echo $this->__('City') ?>" name="shipping[city]" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="shipping:city" onchange="shipping.setSameAsBilling(false);" />
78
+ </div>
79
+ </div>
80
+ <div class="field">
81
+ <label for="shipping:region" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
82
+ <div class="input-box">
83
+ <select id="shipping:region_id" name="shipping[region_id]" title="<?php echo $this->__('State/Province') ?>" class="form-control validate-select" style="display:none;">
84
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
85
+ </select>
86
+ <script type="text/javascript">
87
+ //<![CDATA[
88
+ $('shipping:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
89
+ //]]>
90
+ </script>
91
+ <input type="text" id="shipping:region" name="shipping[region]" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
92
+ </div>
93
+ </div>
94
+ </li>
95
+ <li class="fields">
96
+ <div class="field">
97
+ <label for="shipping:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
98
+ <div class="input-box">
99
+ <input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="shipping[postcode]" id="shipping:postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" class="form-control input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" onchange="shipping.setSameAsBilling(false);" />
100
+ </div>
101
+ </div>
102
+ <div class="field">
103
+ <label for="shipping:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
104
+ <div class="input-box">
105
+ <?php echo $this->getCountryHtmlSelect('shipping') ?>
106
+ </div>
107
+ </div>
108
+ </li>
109
+ <li class="fields">
110
+ <div class="field">
111
+ <label for="shipping:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
112
+ <div class="input-box">
113
+ <input type="text" name="shipping[telephone]" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="shipping:telephone" onchange="shipping.setSameAsBilling(false);" />
114
+ </div>
115
+ </div>
116
+ <div class="field">
117
+ <label for="shipping:fax"><?php echo $this->__('Fax') ?></label>
118
+ <div class="input-box">
119
+ <input type="text" name="shipping[fax]" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" id="shipping:fax" onchange="shipping.setSameAsBilling(false);" />
120
+ </div>
121
+ </div>
122
+ </li>
123
+ <?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
124
+ <li class="control">
125
+ <input type="checkbox" name="shipping[save_in_address_book]" value="1" title="<?php echo $this->__('Save in address book') ?>" id="shipping:save_in_address_book" onchange="shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()):?> checked="checked"<?php endif;?> class="checkbox" /><label for="shipping:save_in_address_book"><?php echo $this->__('Save in address book') ?></label></li>
126
+ <?php else:?>
127
+ <li class="no-display"><input type="hidden" name="shipping[save_in_address_book]" value="1" /></li>
128
+ <?php endif;?>
129
+ </ul>
130
+ </fieldset>
131
+ </li>
132
+ <li class="control">
133
+ <input type="checkbox" name="shipping[same_as_billing]" id="shipping:same_as_billing" value="1"<?php if($this->getAddress()->getSameAsBilling()): ?> checked="checked"<?php endif; ?> title="<?php echo $this->__('Use Billing Address') ?>" onclick="shipping.setSameAsBilling(this.checked)" class="checkbox" /><label for="shipping:same_as_billing"><?php echo $this->__('Use Billing Address') ?></label>
134
+ </li>
135
+ </ul>
136
+ <div class="buttons-set" id="shipping-buttons-container">
137
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
138
+ <p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
139
+ <button type="button" class="button" title="<?php echo $this->__('Continue') ?>" onclick="shipping.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
140
+ <span id="shipping-please-wait" class="please-wait" style="display:none;">
141
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
142
+ </span>
143
+ </div>
144
+ </form>
145
+ <script type="text/javascript">
146
+ //<![CDATA[
147
+ var shipping = new Shipping('co-shipping-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveShipping') ?>',
148
+ '<?php echo $this->getUrl('checkout/onepage/shippingMethod') ?>');
149
+ var shippingForm = new VarienForm('co-shipping-form');
150
+ shippingForm.extraChildParams = ' onchange="shipping.setSameAsBilling(false);"';
151
+ //shippingForm.setElementsRelation('shipping:country_id', 'shipping:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
152
+ $('shipping-address-select') && shipping.newAddress(!$('shipping-address-select').value);
153
+
154
+ var shippingRegionUpdater = new RegionUpdater('shipping:country_id', 'shipping:region', 'shipping:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'shipping:postcode');
155
+ //]]>
156
+ </script>
app/design/frontend/default/responsive/template/checkout/success.phtml ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <div class="page-title">
28
+ <h1><?php echo $this->__('Your order has been received.') ?></h1>
29
+ </div>
30
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
31
+ <h2 class="sub-title"><?php echo $this->__('Thank you for your purchase!') ?></h2>
32
+
33
+ <?php if ($this->getOrderId()):?>
34
+ <?php if ($this->getCanViewOrder()) :?>
35
+ <p><?php echo $this->__('Your order # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getViewOrderUrl()), $this->escapeHtml($this->getOrderId()))) ?></p>
36
+ <?php else :?>
37
+ <p><?php echo $this->__('Your order # is: %s.', $this->escapeHtml($this->getOrderId())) ?></p>
38
+ <?php endif;?>
39
+ <p><?php echo $this->__('You will receive an order confirmation email with details of your order and a link to track its progress.') ?></p>
40
+ <?php if ($this->getCanViewOrder() && $this->getCanPrintOrder()) :?>
41
+ <p>
42
+ <?php echo $this->__('Click <a href="%s" onclick="this.target=\'_blank\'">here to print</a> a copy of your order confirmation.', $this->getPrintUrl()) ?>
43
+ <?php echo $this->getChildHtml() ?>
44
+ </p>
45
+ <?php endif;?>
46
+ <?php endif;?>
47
+
48
+ <?php if ($this->getAgreementRefId()): ?>
49
+ <p><?php echo $this->__('Your billing agreement # is: %s.', sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getAgreementUrl()), $this->escapeHtml($this->getAgreementRefId())))?></p>
50
+ <?php endif;?>
51
+
52
+ <?php if ($profiles = $this->getRecurringProfiles()):?>
53
+ <p><?php echo $this->__('Your recurring payment profiles:'); ?></p>
54
+ <ul class="disc">
55
+ <?php foreach($profiles as $profile):?>
56
+ <?php $profileIdHtml = ($this->getCanViewProfiles() ? sprintf('<a href="%s">%s</a>', $this->escapeHtml($this->getProfileUrl($profile)), $this->escapeHtml($this->getObjectData($profile, 'reference_id'))) : $this->escapeHtml($this->getObjectData($profile, 'reference_id')));?>
57
+ <li><?php echo $this->__('Payment profile # %s: "%s".', $profileIdHtml, $this->escapeHtml($this->getObjectData($profile, 'schedule_description')))?></li>
58
+ <?php endforeach;?>
59
+ </ul>
60
+ <?php endif;?>
61
+
62
+ <div class="buttons-set">
63
+ <button type="button" class="button btn btn-success" title="<?php echo $this->__('Continue Shopping') ?>" onclick="window.location='<?php echo $this->getUrl() ?>'"><?php echo $this->__('Continue Shopping') ?></button>
64
+ </div>
app/design/frontend/default/responsive/template/customer/address/book.phtml ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Temlate for Mage_Customer_Block_Address_Book block
30
+ * @var $test Mage_Customer_Block_Address_Book
31
+ */
32
+ ?>
33
+ <div class="page-title title-buttons">
34
+ <h1><?php echo $this->__('Address Book') ?></h1>
35
+ <button type="button" title="<?php echo $this->__('Add New Address') ?>" class="button btn btn-info" onclick="window.location='<?php echo $this->getAddAddressUrl() ?>';"><?php echo $this->__('Add New Address') ?></button>
36
+ </div>
37
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
38
+ <div class="addresses-list row">
39
+ <div class="addresses-primary col-sm-6 col-xs-12">
40
+ <h2><?php echo $this->__('Default Addresses') ?></h2>
41
+ <ol>
42
+ <?php if($_pAddsses = Mage::getSingleton('customer/session')->getCustomer()->getDefaultBilling()): ?>
43
+ <li class="item">
44
+ <h3><?php echo $this->__('Default Billing Address') ?></h3>
45
+ <address>
46
+ <?php echo $this->getAddressHtml(Mage::getSingleton('customer/session')->getCustomer()->getAddressById($_pAddsses)) ?>
47
+ </address>
48
+ <p><a href="<?php echo $this->getAddressEditUrl(Mage::getSingleton('customer/session')->getCustomer()->getAddressById($_pAddsses)) ?>"><?php echo $this->__('Change Billing Address') ?></a></p>
49
+ </li>
50
+ <?php else: ?>
51
+ <li class="item">
52
+ <h3><?php echo $this->__('Default Billing Address') ?></h3>
53
+ <?php echo $this->__('You have no default billing address in your address book.') ?>
54
+ </li>
55
+ <?php endif ?>
56
+
57
+ <?php if($_pAddsses = Mage::getSingleton('customer/session')->getCustomer()->getDefaultShipping()): ?>
58
+ <li class="item">
59
+ <h3><?php echo $this->__('Default Shipping Address') ?></h3>
60
+ <address>
61
+ <?php echo $this->getAddressHtml(Mage::getSingleton('customer/session')->getCustomer()->getAddressById($_pAddsses)) ?>
62
+ </address>
63
+ <p><a href="<?php echo $this->getAddressEditUrl(Mage::getSingleton('customer/session')->getCustomer()->getAddressById($_pAddsses)) ?>"><?php echo $this->__('Change Shipping Address') ?></a></p>
64
+ </li>
65
+ <?php else: ?>
66
+ <li class="item empty">
67
+ <h3><?php echo $this->__('Default Shipping Address') ?></h3>
68
+ <p><?php echo $this->__('You have no default shipping address in your address book.') ?></p>
69
+ </li>
70
+ <?php endif ?>
71
+ </ol>
72
+ </div>
73
+ <div class="addresses-additional col-sm-6 col-xs-12">
74
+ <h2><?php echo $this->__('Additional Address Entries') ?></h2>
75
+ <ol>
76
+ <?php if($_pAddsses = $this->getAdditionalAddresses()): ?>
77
+ <?php foreach($_pAddsses as $_address): ?>
78
+ <li class="item">
79
+ <address>
80
+ <?php echo $this->getAddressHtml($_address) ?>
81
+ </address>
82
+ <p><a href="<?php echo $this->getUrl('customer/address/edit', array('id'=>$_address->getId())) ?>"><?php echo $this->__('Edit Address') ?></a> <span class="separator">|</span> <a href="#" class="link-remove" onclick="return deleteAddress('<?php echo $_address->getId() ?>');"><?php echo $this->__('Delete Address') ?></a></p>
83
+ </li>
84
+ <?php endforeach; ?>
85
+ <?php else: ?>
86
+ <li class="item empty">
87
+ <p><?php echo $this->__('You have no additional address entries in your address book.') ?></p>
88
+ </li>
89
+ <?php endif ?>
90
+ </ol>
91
+ </div>
92
+ </div>
93
+ <div class="buttons-set">
94
+ <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
95
+ </div>
96
+ <script type="text/javascript">
97
+ //<![CDATA[
98
+ function deleteAddress(addressId) {
99
+ if(confirm('<?php echo $this->__('Are you sure you want to delete this address?') ?>')) {
100
+ window.location='<?php echo $this->getDeleteUrl() ?>id/'+addressId;
101
+ }
102
+ return false;
103
+ }
104
+ //]]>
105
+ </script>
app/design/frontend/default/responsive/template/customer/address/edit.phtml ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Edit customer address template
30
+ *
31
+ * @see Mage_Customer_Block_Address_Edit
32
+ */
33
+ ?>
34
+ <?php if($this->getTitle()): ?>
35
+ <div class="page-title">
36
+ <h1><?php echo $this->getTitle() ?></h1>
37
+ </div>
38
+ <?php endif; ?>
39
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
40
+ <form action="<?php echo $this->getSaveUrl() ?>" method="post" id="form-validate">
41
+ <div class="fieldset">
42
+ <?php echo $this->getBlockHtml('formkey')?>
43
+ <input type="hidden" name="success_url" value="<?php echo $this->getSuccessUrl() ?>" />
44
+ <input type="hidden" name="error_url" value="<?php echo $this->getErrorUrl() ?>" />
45
+ <h2 class="legend"><?php echo $this->__('Contact Information') ?></h2>
46
+ <ul class="form-list">
47
+ <li class="fields">
48
+ <?php echo $this->getNameBlockHtml() ?>
49
+ </li>
50
+ <li class="wide">
51
+ <label for="company"><?php echo $this->__('Company') ?></label>
52
+ <div class="input-box">
53
+ <input type="text" name="company" id="company" title="<?php echo $this->__('Company') ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" />
54
+ </div>
55
+ </li>
56
+ <li class="fields">
57
+ <div class="field">
58
+ <label for="telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
59
+ <div class="input-box">
60
+ <input type="text" name="telephone" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="telephone" />
61
+ </div>
62
+ </div>
63
+ <div class="field">
64
+ <label for="fax"><?php echo $this->__('Fax') ?></label>
65
+ <div class="input-box">
66
+ <input type="text" name="fax" id="fax" title="<?php echo $this->__('Fax') ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" />
67
+ </div>
68
+ </div>
69
+ </li>
70
+ </ul>
71
+ </div>
72
+ <div class="fieldset">
73
+ <h2 class="legend"><?php echo $this->__('Address') ?></h2>
74
+ <ul class="form-list">
75
+ <?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
76
+ <li class="wide">
77
+ <label for="street_1" class="required"><em>*</em><?php echo $this->__('Street Address') ?></label>
78
+ <div class="input-box">
79
+ <input type="text" name="street[]" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" title="<?php echo $this->__('Street Address') ?>" id="street_1" class="form-control input-text <?php echo $_streetValidationClass ?>" />
80
+ </div>
81
+ </li>
82
+ <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
83
+ <?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
84
+ <li class="wide">
85
+ <div class="input-box">
86
+ <input type="text" name="street[]" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" title="<?php echo $this->__('Street Address %s', $_i) ?>" id="street_<?php echo $_i ?>" class="form-control input-text <?php echo $_streetValidationClass ?>" />
87
+ </div>
88
+ </li>
89
+ <?php endfor; ?>
90
+ <?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
91
+ <li class="wide">
92
+ <label for="vat_id"><?php echo $this->__('VAT Number') ?></label>
93
+ <div class="input-box">
94
+ <input type="text" name="vat_id" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()) ?>" title="<?php echo $this->__('VAT Number') ?>" id="vat_id" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
95
+ </div>
96
+ </li>
97
+ <?php endif; ?>
98
+ <li class="fields">
99
+ <div class="field">
100
+ <label for="city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
101
+ <div class="input-box">
102
+ <input type="text" name="city" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" title="<?php echo $this->__('City') ?>" class="form-control input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="city" />
103
+ </div>
104
+ </div>
105
+ <div class="field">
106
+ <label for="region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
107
+ <div class="input-box">
108
+ <select id="region_id" name="region_id" title="<?php echo $this->__('State/Province') ?>" class="form-control validate-select" style="display:none;">
109
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
110
+ </select>
111
+ <script type="text/javascript">
112
+ //<![CDATA[
113
+ $('region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
114
+ //]]>
115
+ </script>
116
+ <input type="text" id="region" name="region" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" />
117
+ </div>
118
+ </div>
119
+ </li>
120
+ <li class="fields">
121
+ <div class="field">
122
+ <label for="zip" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
123
+ <div class="input-box">
124
+ <input type="text" name="postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" title="<?php echo $this->__('Zip/Postal Code') ?>" id="zip" class="form-control input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" />
125
+ </div>
126
+ </div>
127
+ <div class="field">
128
+ <label for="country" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
129
+ <div class="input-box">
130
+ <?php echo $this->getCountryHtmlSelect() ?>
131
+ </div>
132
+ </div>
133
+ </li>
134
+ <li<?php if($this->canSetAsDefaultBilling()) echo ' class="control"' ?>>
135
+ <?php if($this->isDefaultBilling()): ?>
136
+ <strong><?php echo $this->__('Default Billing Address') ?></strong>
137
+ <?php elseif($this->canSetAsDefaultBilling()): ?>
138
+ <input type="checkbox" id="primary_billing" name="default_billing" value="1" title="<?php echo $this->__('Use as My Default Billing Address') ?>" class="checkbox" /><label for="primary_billing"><?php echo $this->__('Use as my default billing address') ?></label>
139
+ <?php else: ?>
140
+ <input type="hidden" name="default_billing" value="1" />
141
+ <?php endif; ?>
142
+ </li>
143
+ <li<?php if($this->canSetAsDefaultShipping()) echo ' class="control"' ?>>
144
+ <?php if($this->isDefaultShipping()): ?>
145
+ <strong><?php echo $this->__('Default Shipping Address') ?></strong>
146
+ <?php elseif($this->canSetAsDefaultShipping()): ?>
147
+ <input type="checkbox" id="primary_shipping" name="default_shipping" value="1" title="<?php echo $this->__('Use as My Default Shipping Address') ?>" class="checkbox" /><label for="primary_shipping"><?php echo $this->__('Use as my default shipping address') ?></label>
148
+ <?php else: ?>
149
+ <input type="hidden" name="default_shipping" value="1" />
150
+ <?php endif; ?>
151
+ </li>
152
+ </ul>
153
+ </div>
154
+ <div class="buttons-set">
155
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
156
+ <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
157
+ <button type="submit" title="<?php echo $this->__('Save Address') ?>" class="button btn btn-info"><?php echo $this->__('Save Address') ?></button>
158
+ </div>
159
+ </form>
160
+ <script type="text/javascript">
161
+ //<![CDATA[
162
+ var dataForm = new VarienForm('form-validate', true);
163
+ new RegionUpdater('country', 'region', 'region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'zip');
164
+ //]]>
165
+ </script>
app/design/frontend/default/responsive/template/customer/form/edit.phtml CHANGED
@@ -67,20 +67,20 @@
67
  <div class="input-box">
68
  <!-- This is a dummy hidden field to trick firefox from auto filling the password -->
69
  <input type="text" class="input-text no-display" name="dummy" id="dummy" />
70
- <input type="password" title="<?php echo $this->__('Current Password') ?>" class="input-text" name="current_password" id="current_password" />
71
  </div>
72
  </li>
73
  <li class="fields">
74
  <div class="field">
75
  <label for="password" class="required"><em>*</em><?php echo $this->__('New Password') ?></label>
76
  <div class="input-box">
77
- <input type="password" title="<?php echo $this->__('New Password') ?>" class="input-text validate-password" name="password" id="password" />
78
  </div>
79
  </div>
80
  <div class="field">
81
  <label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm New Password') ?></label>
82
  <div class="input-box">
83
- <input type="password" title="<?php echo $this->__('Confirm New Password') ?>" class="input-text validate-cpassword" name="confirmation" id="confirmation" />
84
  </div>
85
  </div>
86
  </li>
@@ -89,7 +89,7 @@
89
  <div class="buttons-set">
90
  <p class="required"><?php echo $this->__('* Required Fields') ?></p>
91
  <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
92
- <button type="submit" title="<?php echo $this->__('Save') ?>" class="button btn btn-default btn-xs"><?php echo $this->__('Save') ?></button>
93
  </div>
94
  </form>
95
  <script type="text/javascript">
67
  <div class="input-box">
68
  <!-- This is a dummy hidden field to trick firefox from auto filling the password -->
69
  <input type="text" class="input-text no-display" name="dummy" id="dummy" />
70
+ <input type="password" title="<?php echo $this->__('Current Password') ?>" class="form-control input-text" name="current_password" id="current_password" />
71
  </div>
72
  </li>
73
  <li class="fields">
74
  <div class="field">
75
  <label for="password" class="required"><em>*</em><?php echo $this->__('New Password') ?></label>
76
  <div class="input-box">
77
+ <input type="password" title="<?php echo $this->__('New Password') ?>" class="form-control input-text validate-password" name="password" id="password" />
78
  </div>
79
  </div>
80
  <div class="field">
81
  <label for="confirmation" class="required"><em>*</em><?php echo $this->__('Confirm New Password') ?></label>
82
  <div class="input-box">
83
+ <input type="password" title="<?php echo $this->__('Confirm New Password') ?>" class="form-control input-text validate-cpassword" name="confirmation" id="confirmation" />
84
  </div>
85
  </div>
86
  </li>
89
  <div class="buttons-set">
90
  <p class="required"><?php echo $this->__('* Required Fields') ?></p>
91
  <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
92
+ <button type="submit" title="<?php echo $this->__('Save') ?>" class="button btn btn-info"><?php echo $this->__('Save') ?></button>
93
  </div>
94
  </form>
95
  <script type="text/javascript">
app/design/frontend/default/responsive/template/customer/form/newsletter.phtml ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <div class="page-title">
28
+ <h1><?php echo $this->__('Newsletter Subscription') ?></h1>
29
+ </div>
30
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
31
+ <?php echo $this->getChildHtml('form_before')?>
32
+ <form action="<?php echo $this->getAction() ?>" method="post" id="form-validate">
33
+ <div class="fieldset">
34
+ <?php echo $this->getBlockHtml('formkey')?>
35
+ <h2 class="legend"><?php echo $this->__('Newsletter Subscription') ?></h2>
36
+ <ul class="form-list">
37
+ <li class="control"><input type="checkbox" name="is_subscribed" id="subscription" value="1" title="<?php echo $this->__('General Subscription') ?>"<?php if($this->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox" /><label for="subscription"><?php echo $this->__('General Subscription') ?></label></li>
38
+ <?php /* Extensions placeholder */ ?>
39
+ <?php echo $this->getChildHtml('customer.form.newsletter.extra')?>
40
+ </ul>
41
+ </div>
42
+ <div class="buttons-set">
43
+ <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
44
+ <button type="submit" title="<?php echo $this->__('Save') ?>" class="button btn btn-info"><?php echo $this->__('Save') ?></button>
45
+ </div>
46
+ </form>
47
+ <?php /* Extensions placeholder */ ?>
48
+ <?php echo $this->getChildHtml('customer.form.newsletter.extra2')?>
49
+ <script type="text/javascript">
50
+ //<![CDATA[
51
+ var dataForm = new VarienForm('form-validate', true);
52
+ //]]>
53
+ </script>
app/design/frontend/default/responsive/template/page/html/header.phtml CHANGED
@@ -46,8 +46,14 @@
46
  <script type="text/javascript">
47
  jQuery(document).ready(function(){
48
  jQuery('.showminicart').click(function(e){
49
- e.preventDefault();
 
50
  jQuery('#popupcart').slideToggle("fast");
51
  });
 
 
 
 
 
52
  })
53
  </script>
46
  <script type="text/javascript">
47
  jQuery(document).ready(function(){
48
  jQuery('.showminicart').click(function(e){
49
+ e.preventDefault();
50
+ e.stopPropagation();
51
  jQuery('#popupcart').slideToggle("fast");
52
  });
53
+
54
+ /* close the popupcart wherever you click on the paage */
55
+ jQuery(document).click(function(){
56
+ jQuery('#popupcart').slideUp("fast");
57
+ });
58
  })
59
  </script>
app/design/frontend/default/responsive/template/sales/order/history.phtml ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
28
+ <?php $_orders = $this->getOrders(); ?>
29
+ <div class="page-title">
30
+ <h1><?php echo $this->__('My Orders') ?></h1>
31
+ </div>
32
+ <?php echo $this->getPagerHtml(); ?>
33
+ <?php if($_orders->getSize()): ?>
34
+ <table class="data-table" id="my-orders-table">
35
+ <col width="1" />
36
+ <col width="1" />
37
+ <col />
38
+ <col width="1" />
39
+ <col width="1" />
40
+ <col width="1" />
41
+ <thead>
42
+ <tr>
43
+ <th><?php echo $this->__('Order #') ?></th>
44
+ <th class="col-order-date"><?php echo $this->__('Date') ?></th>
45
+ <th class="col-ship-to"><?php echo $this->__('Ship To') ?></th>
46
+ <th><span class="nobr"><?php echo $this->__('Order Total') ?></span></th>
47
+ <th><span class="nobr"><?php echo $this->__('Order Status') ?></span></th>
48
+ <th>&nbsp;</th>
49
+ </tr>
50
+ </thead>
51
+ <tbody>
52
+ <?php $_odd = ''; ?>
53
+ <?php foreach ($_orders as $_order): ?>
54
+ <tr>
55
+ <td><?php echo $_order->getRealOrderId() ?></td>
56
+ <td class="col-order-date"><span class="nobr"><?php echo $this->formatDate($_order->getCreatedAtStoreDate()) ?></span></td>
57
+ <td class="col-ship-to"><?php echo $_order->getShippingAddress() ? $this->escapeHtml($_order->getShippingAddress()->getName()) : '&nbsp;' ?></td>
58
+ <td><?php echo $_order->formatPrice($_order->getGrandTotal()) ?></td>
59
+ <td><em><?php echo $_order->getStatusLabel() ?></em></td>
60
+ <td class="a-center">
61
+ <span class="nobr"><a href="<?php echo $this->getViewUrl($_order) ?>"><?php echo $this->__('View Order') ?></a>
62
+ <?php /*<span class="separator">|</span><a href="<?php echo $this->getTrackUrl($_order) ?>"><?php echo $this->__('Track Order') ?></a>&nbsp;*/ ?>
63
+ <?php if ($this->helper('sales/reorder')->canReorder($_order)) : ?>
64
+ <span class="separator">|</span> <a href="<?php echo $this->getReorderUrl($_order) ?>" class="link-reorder"><?php echo $this->__('Reorder') ?></a>
65
+ <?php endif ?>
66
+ </span>
67
+ </td>
68
+ </tr>
69
+ <?php endforeach; ?>
70
+ </tbody>
71
+ </table>
72
+ <script type="text/javascript">decorateTable('my-orders-table');</script>
73
+ <?php echo $this->getPagerHtml(); ?>
74
+ <?php else: ?>
75
+ <p><?php echo $this->__('You have placed no orders.'); ?></p>
76
+ <?php endif ?>
app/design/frontend/default/responsive/template/sales/order/info.phtml ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php /** @var $this Mage_Sales_Block_Order_Info */ ?>
28
+ <?php $_order = $this->getOrder() ?>
29
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
30
+ <div class="row page-title">
31
+ <div class="col-sm-8 col-xs-12">
32
+ <h1><?php echo $this->__('Order #%s - %s', $_order->getRealOrderId(), $_order->getStatusLabel()) ?></h1>
33
+ </div>
34
+ <div class="title-buttons col-sm-4 col-xs-12">
35
+ <?php echo $this->getChildHtml('buttons') ?>
36
+ </div>
37
+ </div>
38
+ <?php echo $this->getStatusHistoryRssUrl($_order) ?>
39
+ <dl class="order-info">
40
+ <dt><?php echo $this->__('About This Order:') ?></dt>
41
+ <dd>
42
+ <?php $_links = $this->getLinks(); ?>
43
+ <ul id="order-info-tabs">
44
+ <?php foreach ($_links as $_link): ?>
45
+ <?php if($_link->getUrl()): ?>
46
+ <li><a href="<?php echo $_link->getUrl() ?>"><?php echo $_link->getLabel() ?></a></li>
47
+ <?php else: ?>
48
+ <li class="current"><?php echo $_link->getLabel() ?></li>
49
+ <?php endif; ?>
50
+ <?php endforeach; ?>
51
+ </ul>
52
+ <script type="text/javascript">decorateGeneric($('order-info-tabs').select('LI'),['first','last']);</script>
53
+ </dd>
54
+ </dl>
55
+ <p class="order-date"><?php echo $this->__('Order Date: %s', $this->formatDate($_order->getCreatedAtStoreDate(), 'long')) ?></p>
56
+ <?php if (!$_order->getIsVirtual()): ?>
57
+ <div class="order-info-box row">
58
+ <div class="col-sm-6 col-xs-12">
59
+ <div class="box-title">
60
+ <h2><?php echo $this->__('Shipping Address') ?></h2>
61
+ </div>
62
+ <div class="box-content">
63
+ <address><?php echo $_order->getShippingAddress()->format('html') ?></address>
64
+ </div>
65
+ </div>
66
+ <div class="col-sm-6 col-xs-12">
67
+ <div class="box-title">
68
+ <h2><?php echo $this->__('Shipping Method') ?></h2>
69
+ </div>
70
+ <div class="box-content">
71
+ <?php if ($_order->getShippingDescription()): ?>
72
+ <?php echo $this->escapeHtml($_order->getShippingDescription()) ?>
73
+ <?php else: ?>
74
+ <p><?php echo $this->helper('sales')->__('No shipping information available'); ?></p>
75
+ <?php endif; ?>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ <?php endif; ?>
80
+ <div class="order-info-box row">
81
+ <div class="col-sm-6 col-xs-12">
82
+ <div class="box-title">
83
+ <h2><?php echo $this->__('Billing Address') ?></h2>
84
+ </div>
85
+ <div class="box-content">
86
+ <address><?php echo $_order->getBillingAddress()->format('html') ?></address>
87
+ </div>
88
+ </div>
89
+ <div class="col-sm-6 col-xs-12">
90
+ <div class="box-title">
91
+ <h2><?php echo $this->__('Payment Method') ?></h2>
92
+ </div>
93
+ <div class="box-content">
94
+ <?php echo $this->getPaymentInfoHtml() ?>
95
+ </div>
96
+ </div>
97
+ </div>
app/design/frontend/default/responsive/template/sales/order/recent.phtml ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <div class="box-account box-recent">
28
+ <?php $_orders = $this->getOrders(); ?>
29
+ <div class="box-head">
30
+ <h2><?php echo $this->__('Recent Orders') ?></h2>
31
+ <?php if( sizeof($_orders->getItems()) > 0 ): ?><a href="<?php echo $this->getUrl('sales/order/history') ?>"><?php echo $this->__('View All') ?></a><?php endif; ?>
32
+ </div>
33
+ <?php if( sizeof($_orders->getItems()) > 0 ): ?>
34
+ <table class="data-table" id="my-orders-table">
35
+ <col width="1" />
36
+ <col width="1" />
37
+ <col />
38
+ <col width="1" />
39
+ <col width="1" />
40
+ <col width="1" />
41
+ <thead>
42
+ <tr>
43
+ <th><?php echo $this->__('Order #') ?></th>
44
+ <th class="col-order-date"><?php echo $this->__('Date') ?></th>
45
+ <th class="col-ship-to"><?php echo $this->__('Ship To') ?></th>
46
+ <th class="col-order-total"><span class="nobr"><?php echo $this->__('Order Total') ?></span></th>
47
+ <th><?php echo $this->__('Status') ?></th>
48
+ <th>&nbsp;</th>
49
+ </tr>
50
+ </thead>
51
+ <tbody>
52
+ <?php foreach ($_orders as $_order): ?>
53
+ <tr>
54
+ <td><?php echo $_order->getRealOrderId() ?></td>
55
+ <td class="col-order-date"><span class="nobr"><?php echo $this->formatDate($_order->getCreatedAtStoreDate()) ?></span></td>
56
+ <td class="col-ship-to"><?php echo $_order->getShippingAddress() ? $this->escapeHtml($_order->getShippingAddress()->getName()) : '&nbsp;' ?></td>
57
+ <td class="col-order-total"><?php echo $_order->formatPrice($_order->getGrandTotal()) ?></td>
58
+ <td><em><?php echo $_order->getStatusLabel() ?></em></td>
59
+ <td class="a-center">
60
+ <span class="nobr">
61
+ <a href="<?php echo $this->getViewUrl($_order) ?>"><?php echo $this->__('View Order') ?></a>
62
+ <?php if ($this->helper('sales/reorder')->canReorder($_order)) : ?>
63
+ <span class="separator">|</span> <a href="<?php echo $this->getReorderUrl($_order) ?>" class="link-reorder"><?php echo $this->__('Reorder') ?></a>
64
+ <?php endif ?>
65
+ </span>
66
+ </td>
67
+ </tr>
68
+ <?php endforeach; ?>
69
+ </tbody>
70
+ </table>
71
+ <script type="text/javascript">decorateTable('my-orders-table')</script>
72
+ <?php else: ?>
73
+ <p><?php echo $this->__('You have placed no orders.'); ?></p>
74
+ <?php endif; ?>
75
+ </div>
app/design/frontend/default/responsive/template/sales/reorder/sidebar.phtml ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Last order sidebar
30
+ *
31
+ * @see Mage_Sale_Block_Reorder_Sidebar
32
+ */
33
+ ?>
34
+ <?php $_items = $this->getItems()?>
35
+ <?php if($_items): ?>
36
+ <div class="block block-reorder">
37
+ <div class="block-title">
38
+ <strong><span><?php echo $this->__('My Orders') ?></span></strong>
39
+ </div>
40
+ <form method="post" action="<?php echo $this->getFormActionUrl() ?>" id="reorder-validate-detail">
41
+ <?php echo $this->getBlockHtml('formkey'); ?>
42
+ <div class="block-content">
43
+ <p class="block-subtitle"><?php echo $this->__('Last Ordered Items') ?></p>
44
+ <ol id="cart-sidebar-reorder">
45
+ <?php $_showAddButtonFlag = false ?>
46
+ <?php foreach ($_items as $_item): ?>
47
+ <li class="item">
48
+ <?php if ($this->isItemAvailableForReorder($_item)): ?>
49
+ <?php $_showAddButtonFlag = true ?>
50
+ <input type="checkbox" name="order_items[]" id="reorder-item-<?php echo $_item->getId() ?>" value="<?php echo $_item->getId() ?>" title="<?php echo $this->__('Add to Cart') ?>" class="checkbox validate-one-required-by-name" />
51
+ <script type="text/javascript">
52
+ //<![CDATA[
53
+ $('reorder-item-<?php echo $_item->getId() ?>').advaiceContainer = 'cart-sidebar-reorder-advice-container';
54
+ //]]>
55
+ </script>
56
+ <?php endif; ?>
57
+ <p class="product-name"><a href="<?php echo $_item->getProduct()->getProductUrl() ?>"><?php echo $this->escapeHtml($_item->getName()) ?></a></p>
58
+ </li>
59
+ <?php endforeach; ?>
60
+ </ol>
61
+ <script type="text/javascript">decorateList('cart-sidebar-reorder')</script>
62
+ <div id="cart-sidebar-reorder-advice-container"></div>
63
+ <div class="actions">
64
+ <?php if ($_showAddButtonFlag): ?>
65
+ <button type="submit" title="<?php echo $this->__('Add to Cart') ?>" class="button btn-cart btn btn-danger btn-xs"><?php echo $this->__('Add to Cart') ?></button>
66
+ <?php endif; ?>
67
+ <a href="<?php echo $this->getUrl('customer/account') ?>"><?php echo $this->__('View All'); ?></a>
68
+ </div>
69
+ </div>
70
+ </form>
71
+ </div>
72
+ <?php echo $this->getPagerHtml(); ?>
73
+ <script type="text/javascript">
74
+ //<![CDATA[
75
+ var reorderFormDetail = new VarienForm('reorder-validate-detail');
76
+ //]]>
77
+ </script>
78
+ <?php endif ?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>responsive</name>
4
- <version>0.0.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -27,11 +27,12 @@ It support &#xD;
27
  - 479px+ Mobile devices&#xD;
28
  &#xD;
29
  -iPhone, Android, Windows phone and other smartphones</description>
30
- <notes>- more config theme at the backend</notes>
 
31
  <authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
32
- <date>2013-12-29</date>
33
- <time>22:04:29</time>
34
- <contents><target name="magelocal"><dir name="Tvcom"><dir name="Page"><dir name="Block"><dir name="Html"><file name="Topmenu.php" hash="352187a84b23bf49e13729b35c83a3d4"/></dir></dir><dir name="etc"><file name="config.xml" hash="b44a7f3ece8afeb85ddb3a8d4e1ea692"/></dir></dir><dir name="Themecustom"><dir name="Helper"><file name="Data.php" hash="07559e4fa8223efcb10bd0795458c765"/></dir><dir name="Model"><file name="Custom.php" hash="bff5f52f606c33ada097641e6e2970bf"/><dir name="Option"><file name="Narbar.php" hash="35f4c30272e466a31d81efca71f73ab8"/><file name="Repeat.php" hash="b1f08bac80e215209e45fe8456b964f8"/></dir></dir><dir name="etc"><file name="config.xml" hash="de2cf6d9e20493e77747b83ba6e7dc2c"/><file name="system.xml" hash="2c8efd4c564aeba8d9de700681afe4ef"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tvcom_Page.xml" hash="6eb34161b3a13e001b1af7dea977f484"/><file name="Tvcom_Themecustom.xml" hash="742cda5cce51b8cb0cfebfe3075a06d9"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="layout"><file name="catalog.xml" hash="640975004551c7430aa338a8308a9b9c"/><file name="catalogsearch.xml" hash="e78dcf8c3211ec8a42252331087d1be1"/><file name="checkout.xml" hash="ebd8515f1888b36fc6545d4f3896d17f"/><file name="page.xml" hash="3ef588c9f2288861def36dc69dfe2e09"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="view.phtml" hash="cceafbc47607415df40308f862f34df0"/></dir><dir name="layer"><file name="state.phtml" hash="4bf29ca4ce76d4f56a1f298f916dbc2e"/></dir><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="615efb37c43f4e6099dc4c869ea70d22"/></dir><dir name="list"><file name="toolbar.phtml" hash="434efbf05a25ad66e08617102f2acb84"/><file name="upsell.phtml" hash="dd53151b6b5cc8a97bfa1957370b5570"/></dir><file name="list.phtml" hash="5afa6ac1016aa199ec4d33aa96aeb19b"/><dir name="view"><file name="attributes.phtml" hash="069cfe613294d042a930865d24f8d1ce"/></dir><file name="view.phtml" hash="22bdbd648cebdc15fc130fecd02270f2"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="da5a91141a34f6dab2f60ec72de0cd12"/></dir><file name="form.mini.phtml" hash="3be8cbc8ba6b9efda2540306a405af16"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="3c8d5da75a8b74a0b65237398a31faa1"/><file name="crosssell.phtml" hash="1700a70387393e29eddd97c6e96c6b10"/><dir name="item"><file name="default.phtml" hash="a09cd9fd47311cbcec3a5df9269e0c3a"/></dir><file name="shipping.phtml" hash="eb2582cb28f52f33489c143b7e907187"/><dir name="sidebar"><file name="default.phtml" hash="5b64bb75c39984829140dd7265025d75"/></dir><file name="sidebar.phtml" hash="9a14973934e91c8cfbef11b28d2ad5ec"/></dir><file name="cart.phtml" hash="1f21f5d44cc71b4ddef172b71eb87ab3"/><dir name="onepage"><file name="link.phtml" hash="5dc65b59514b034c4af5a914134a9485"/></dir></dir><dir name="contacts"><file name="form.phtml" hash="5b209a14afb46dfdc35a4d8b9cd8a742"/></dir><dir name="customblock"><dir name="socialnetwork"><file name="networkshare.phtml" hash="7899986c90dbbddb55c62e0e7d274ea8"/></dir></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="d39ddf7d3dea541b3c08bd1717356a9f"/><file name="info.phtml" hash="9a0afc6868754390a9eb66f470ddafc3"/></dir></dir><dir name="form"><file name="edit.phtml" hash="46948a88aef6ba3a1e7ee46ab54c4727"/><file name="forgotpassword.phtml" hash="33d71a5f207dd942f14202d4cf915981"/></dir><dir name="widget"><file name="name.phtml" hash="3aa7a542339bf2d64eddcb382ff85f45"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="5d09d74355d196f44024dfef9e9a7f49"/></dir><dir name="page"><file name="1column.phtml" hash="8f2578c19ae57f70ee3141d31f9f1a22"/><file name="2columns-left.phtml" hash="6ead24530145d1f7f9750b25dcf83d88"/><file name="2columns-right.phtml" hash="69012716b9e773a5357cc4be01159a4e"/><file name="3columns.phtml" hash="1fbf4e3a5c3bc3c6414bf28c9c57bc13"/><dir name="html"><file name="breadcrumbs.phtml" hash="f9747a7825936ce7fdd5a79336fab0e5"/><file name="head.phtml" hash="882bceee3d6c945a8956f6253e24540a"/><file name="header.phtml" hash="234750241ec25e7775e6f34804418c6a"/><file name="pager.phtml" hash="19bf607119a013bb4797c5182c3e0380"/><file name="topmenu.phtml" hash="7dcffcd9a29560769ef83a7e77a5eb18"/></dir><dir name="template"><file name="links.phtml" hash="00466dab494b53c8c764e38215876812"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="f26b21cac8c142ba35ded5b08cdd6f05"/><file name="login.phtml" hash="7122df5630b7437e4da4e2c8713a8efd"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="217361603f19a2c4fd6a8becb19a5232"/><file name="register.phtml" hash="4fb1808b870414a32b71b65b83dc5605"/></dir></dir></dir><dir name="poll"><file name="active.phtml" hash="cbaa4cf06b173ab28a5879e76016ca5e"/></dir><dir name="review"><file name="form.phtml" hash="184175fb22afaacfcd588aabf6380c74"/></dir><dir name="sales"><dir name="guest"><file name="form.phtml" hash="3a8f1de79b1e226d8a48d9ea1006625e"/></dir></dir><dir name="tag"><file name="list.phtml" hash="d35d9598af9b5bb51414cad0e88700e6"/></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="0eb3cbc7aa19ec3c562fdf60f9c1ce05"/><file name="tocart.phtml" hash="80bb9191492b246287388215e32f9b35"/><file name="update.phtml" hash="8d51bc2ce1229e86b925e393120f407b"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="beb2c8db67cd7f4ab707e9fc9cb5b725"/><file name="image.phtml" hash="6c01f5e8e925ac7224c1ecb9f7ddcb3b"/><file name="info.phtml" hash="014767f1334d5d9d73f2afaab104374e"/><file name="remove.phtml" hash="09cbe88cb373ccb9a61a5c76781abfbf"/></dir><file name="list.phtml" hash="55cdcb13a576b84498af79347dffc796"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="responsive"><dir name="layout"><file name="colorpicker.xml" hash="a7e0375e1a9c6715ef7955157202a6d3"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="css"><file name="extension.php" hash="f7a3840b2495768bd9c7efb84824b097"/><file name="homepage-example.php" hash="f8ee9d5edfee69f63f742b5b4c56ea99"/><file name="responsive.css" hash="254eab4b7069918afba2e83ede00e8c3"/><file name="styles.css" hash="ffe1b3320e3ba74f627657079ee412a2"/><file name="styles.php" hash="93f148706602a928b9b1959352efdc64"/></dir><dir name="images"><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="prototype"><file name="prototype_bootstrap.js" hash="3fcb2fb515a2b67ee70fe53afbd2775f"/></dir></dir></target></contents>
35
  <compatible/>
36
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
37
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>responsive</name>
4
+ <version>0.0.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
27
  - 479px+ Mobile devices&#xD;
28
  &#xD;
29
  -iPhone, Android, Windows phone and other smartphones</description>
30
+ <notes>- fix bug on Account Page&#xD;
31
+ - popupcart </notes>
32
  <authors><author><name>tony vu</name><user>vuductrung</user><email>vuductrung2003@gmail.com</email></author></authors>
33
+ <date>2014-01-06</date>
34
+ <time>06:12:11</time>
35
+ <contents><target name="magelocal"><dir name="Tvcom"><dir name="Page"><dir name="Block"><dir name="Html"><file name="Topmenu.php" hash="352187a84b23bf49e13729b35c83a3d4"/></dir></dir><dir name="etc"><file name="config.xml" hash="b44a7f3ece8afeb85ddb3a8d4e1ea692"/></dir></dir><dir name="Themecustom"><dir name="Helper"><file name="Data.php" hash="07559e4fa8223efcb10bd0795458c765"/></dir><dir name="Model"><file name="Custom.php" hash="bff5f52f606c33ada097641e6e2970bf"/><dir name="Option"><file name="Narbar.php" hash="35f4c30272e466a31d81efca71f73ab8"/><file name="Repeat.php" hash="b1f08bac80e215209e45fe8456b964f8"/></dir></dir><dir name="etc"><file name="config.xml" hash="de2cf6d9e20493e77747b83ba6e7dc2c"/><file name="system.xml" hash="2c8efd4c564aeba8d9de700681afe4ef"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Tvcom_Page.xml" hash="6eb34161b3a13e001b1af7dea977f484"/><file name="Tvcom_Themecustom.xml" hash="742cda5cce51b8cb0cfebfe3075a06d9"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="layout"><file name="catalog.xml" hash="640975004551c7430aa338a8308a9b9c"/><file name="catalogsearch.xml" hash="e78dcf8c3211ec8a42252331087d1be1"/><file name="checkout.xml" hash="ebd8515f1888b36fc6545d4f3896d17f"/><file name="page.xml" hash="3ef588c9f2288861def36dc69dfe2e09"/></dir><dir name="template"><dir name="catalog"><dir name="category"><file name="view.phtml" hash="cceafbc47607415df40308f862f34df0"/></dir><dir name="layer"><file name="state.phtml" hash="4bf29ca4ce76d4f56a1f298f916dbc2e"/></dir><dir name="product"><dir name="compare"><file name="sidebar.phtml" hash="615efb37c43f4e6099dc4c869ea70d22"/></dir><dir name="list"><file name="toolbar.phtml" hash="434efbf05a25ad66e08617102f2acb84"/><file name="upsell.phtml" hash="dd53151b6b5cc8a97bfa1957370b5570"/></dir><file name="list.phtml" hash="5afa6ac1016aa199ec4d33aa96aeb19b"/><dir name="view"><file name="attributes.phtml" hash="069cfe613294d042a930865d24f8d1ce"/></dir><file name="view.phtml" hash="22bdbd648cebdc15fc130fecd02270f2"/></dir></dir><dir name="catalogsearch"><dir name="advanced"><file name="form.phtml" hash="da5a91141a34f6dab2f60ec72de0cd12"/></dir><file name="form.mini.phtml" hash="3be8cbc8ba6b9efda2540306a405af16"/></dir><dir name="checkout"><dir name="cart"><file name="coupon.phtml" hash="3c8d5da75a8b74a0b65237398a31faa1"/><file name="crosssell.phtml" hash="1700a70387393e29eddd97c6e96c6b10"/><dir name="item"><file name="default.phtml" hash="a09cd9fd47311cbcec3a5df9269e0c3a"/></dir><file name="shipping.phtml" hash="c985cdf397a55cc3bffa62d7f381a4a8"/><dir name="sidebar"><file name="default.phtml" hash="5b64bb75c39984829140dd7265025d75"/></dir><file name="sidebar.phtml" hash="9a14973934e91c8cfbef11b28d2ad5ec"/></dir><file name="cart.phtml" hash="1f21f5d44cc71b4ddef172b71eb87ab3"/><dir name="onepage"><file name="link.phtml" hash="5dc65b59514b034c4af5a914134a9485"/><dir name="review"><file name="button.phtml" hash="08ced3ff77fe2a821291adfbfb550aed"/></dir><file name="shipping.phtml" hash="b250285eefc4925f9bdb4b9d5f6c27f1"/></dir><file name="success.phtml" hash="10ac42a5bfc041f65228ea192081b6ab"/></dir><dir name="contacts"><file name="form.phtml" hash="5b209a14afb46dfdc35a4d8b9cd8a742"/></dir><dir name="customblock"><dir name="socialnetwork"><file name="networkshare.phtml" hash="7899986c90dbbddb55c62e0e7d274ea8"/></dir></dir><dir name="customer"><dir name="account"><dir name="dashboard"><file name="address.phtml" hash="d39ddf7d3dea541b3c08bd1717356a9f"/><file name="info.phtml" hash="9a0afc6868754390a9eb66f470ddafc3"/></dir></dir><dir name="address"><file name="book.phtml" hash="cb8beb5f539e7b942ee1820a2f800251"/><file name="edit.phtml" hash="2ab899d81183651eb86d1616c7e47dec"/></dir><dir name="form"><file name="edit.phtml" hash="dab5bb72d61cdcac15b9354ad54cefd7"/><file name="forgotpassword.phtml" hash="33d71a5f207dd942f14202d4cf915981"/><file name="newsletter.phtml" hash="6b49b91d1cb6a2182362b137bb00103a"/></dir><dir name="widget"><file name="name.phtml" hash="3aa7a542339bf2d64eddcb382ff85f45"/></dir></dir><dir name="newsletter"><file name="subscribe.phtml" hash="5d09d74355d196f44024dfef9e9a7f49"/></dir><dir name="page"><file name="1column.phtml" hash="8f2578c19ae57f70ee3141d31f9f1a22"/><file name="2columns-left.phtml" hash="6ead24530145d1f7f9750b25dcf83d88"/><file name="2columns-right.phtml" hash="69012716b9e773a5357cc4be01159a4e"/><file name="3columns.phtml" hash="1fbf4e3a5c3bc3c6414bf28c9c57bc13"/><dir name="html"><file name="breadcrumbs.phtml" hash="f9747a7825936ce7fdd5a79336fab0e5"/><file name="head.phtml" hash="882bceee3d6c945a8956f6253e24540a"/><file name="header.phtml" hash="3c2ef79ad839ce7e809dee3c7a1fd923"/><file name="pager.phtml" hash="19bf607119a013bb4797c5182c3e0380"/><file name="topmenu.phtml" hash="7dcffcd9a29560769ef83a7e77a5eb18"/></dir><dir name="template"><file name="links.phtml" hash="00466dab494b53c8c764e38215876812"/></dir></dir><dir name="persistent"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="f26b21cac8c142ba35ded5b08cdd6f05"/><file name="login.phtml" hash="7122df5630b7437e4da4e2c8713a8efd"/></dir></dir><dir name="customer"><dir name="form"><file name="login.phtml" hash="217361603f19a2c4fd6a8becb19a5232"/><file name="register.phtml" hash="4fb1808b870414a32b71b65b83dc5605"/></dir></dir></dir><dir name="poll"><file name="active.phtml" hash="cbaa4cf06b173ab28a5879e76016ca5e"/></dir><dir name="review"><file name="form.phtml" hash="184175fb22afaacfcd588aabf6380c74"/></dir><dir name="sales"><dir name="guest"><file name="form.phtml" hash="3a8f1de79b1e226d8a48d9ea1006625e"/></dir><dir name="order"><file name="history.phtml" hash="9fd12e237a9d991e69c0c7a6a8e5dd84"/><file name="info.phtml" hash="8dfda74e14c78f05edae029b174aa7b6"/><file name="recent.phtml" hash="3aeaa3626e4001545d9b3073fdda0edd"/></dir><dir name="reorder"><file name="sidebar.phtml" hash="3183a9cf029313d803990083201f8636"/></dir></dir><dir name="tag"><file name="list.phtml" hash="d35d9598af9b5bb51414cad0e88700e6"/></dir><dir name="wishlist"><dir name="button"><file name="share.phtml" hash="0eb3cbc7aa19ec3c562fdf60f9c1ce05"/><file name="tocart.phtml" hash="80bb9191492b246287388215e32f9b35"/><file name="update.phtml" hash="8d51bc2ce1229e86b925e393120f407b"/></dir><dir name="item"><dir name="column"><file name="cart.phtml" hash="beb2c8db67cd7f4ab707e9fc9cb5b725"/><file name="image.phtml" hash="6c01f5e8e925ac7224c1ecb9f7ddcb3b"/><file name="info.phtml" hash="014767f1334d5d9d73f2afaab104374e"/><file name="remove.phtml" hash="09cbe88cb373ccb9a61a5c76781abfbf"/></dir><file name="list.phtml" hash="55cdcb13a576b84498af79347dffc796"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="responsive"><dir name="layout"><file name="colorpicker.xml" hash="a7e0375e1a9c6715ef7955157202a6d3"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="responsive"><dir name="css"><file name="extension.php" hash="82c758e88b2cecaeb8d6c490e4e12a8f"/><file name="homepage-example.php" hash="f8ee9d5edfee69f63f742b5b4c56ea99"/><file name="responsive.css" hash="d60d37bd7a08febd46fdb808c18eb636"/><file name="styles.css" hash="ffe1b3320e3ba74f627657079ee412a2"/><file name="styles.php" hash="81df5c366e48c8ad628786417bc3a17b"/></dir><dir name="images"><file name="bkg_rating.gif" hash="0a8777c815350ddf1e316a537ad0c335"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="prototype"><file name="prototype_bootstrap.js" hash="3fcb2fb515a2b67ee70fe53afbd2775f"/></dir></dir></target></contents>
36
  <compatible/>
37
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
38
  </package>
skin/frontend/default/responsive/css/extension.php CHANGED
@@ -1,9 +1,8 @@
1
  <h3>Overview</h3>
2
  <p>The responsive theme is written above the Magento community base theme. </p>
3
- <p>demo link <a href="http://responsive.asmarket.com.au/" target="_blank">http://responsive.asmarket.com.au/</a></p>
4
- <p>Please let me know If you have some issue to install.</p>
5
- <p>email to <a href="mailto:vuductrung2003@gmail.com">vuductrung2003@gmail.com</a></p>
6
- <p><a href="https://www.facebook.com/tonyvu2003">Facebook</a></p>
7
  <h3>Feature</h3>
8
  <p>+ Support all different devices such as large computer, laptop, all tablets and mobile phone</p>
9
  <p>+ Theme custom is at the Admin backend</p>
1
  <h3>Overview</h3>
2
  <p>The responsive theme is written above the Magento community base theme. </p>
3
+ <!--<p>Demo <a href="http://www.asmarket.com.au/responsive">Bootstrap Theme</a></p>-->
4
+ <p>Read <a href="https://www.facebook.com/notes/tvcom-magento-addon/how-to-set-up-magento-bootstrap-theme/643891698985373">How to install bootstrap theme</a></p>
5
+ <p>If you have any issue to install, let us know <a href="https://www.facebook.com/tvcom.addon">here</a></p>
 
6
  <h3>Feature</h3>
7
  <p>+ Support all different devices such as large computer, laptop, all tablets and mobile phone</p>
8
  <p>+ Theme custom is at the Admin backend</p>
skin/frontend/default/responsive/css/responsive.css CHANGED
@@ -48,6 +48,9 @@
48
  /* custoner login */
49
  .registered-customer .required{text-align: left; margin-top: 10px}
50
 
 
 
 
51
  /* checkout /cart */
52
  .cart .totals{margin-top: 20px}
53
  #shopping-cart-table .item-editable{display: none}
@@ -67,6 +70,9 @@
67
 
68
  /* wishlist */
69
  #wishlist-table .row0{display: none}
 
 
 
70
  }
71
 
72
  /* Landscape phones and down */
48
  /* custoner login */
49
  .registered-customer .required{text-align: left; margin-top: 10px}
50
 
51
+ /* My Dashboard */
52
+ .col-order-date, .col-ship-to, .col-order-total{display: none !important}
53
+ /*.title-buttons{text-align: left}*/
54
  /* checkout /cart */
55
  .cart .totals{margin-top: 20px}
56
  #shopping-cart-table .item-editable{display: none}
70
 
71
  /* wishlist */
72
  #wishlist-table .row0{display: none}
73
+
74
+ /* left bar */
75
+ .col-left.sidebar{margin-top: 20px;}
76
  }
77
 
78
  /* Landscape phones and down */
skin/frontend/default/responsive/css/styles.php CHANGED
@@ -143,8 +143,8 @@ select option { padding-right:10px; }
143
  select.multiselect option { border-bottom:1px solid #b6b6b6; padding:2px 5px; }
144
  select.multiselect option:last-child { border-bottom:0; }
145
  textarea { overflow:auto; }
146
- input.radio { margin-right:3px; }
147
- input.checkbox { margin-right:3px; }
148
  input.qty { width:2.5em !important; }
149
  button.button::-moz-focus-inner { /*padding:0; border:0; */} /* FF Fix */
150
  /*button.button { -webkit-border-fit:lines; } *//* <- Safari & Google Chrome Fix */
@@ -332,7 +332,7 @@ p.required { font-size:11px; text-align:right; color:#EB340A; }
332
  .breadcrumbs li strong { font-weight:bold; }
333
 
334
  /* Page Heading */
335
- .page-title { width:100%; overflow:hidden; border-bottom:1px solid #ccc; margin:0 0 25px; }
336
  .page-title h1,
337
  .page-title h2 { margin:0; font-size:20px; color:#0a263c; }
338
  .page-title .separator { margin:0 3px; }
@@ -519,7 +519,7 @@ tr.summary-details-excluded { font-style:italic; }
519
  .header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
520
  /*.header h1.logo { margin:0; }*/
521
  .header .quick-access { /*float:right; width:600px; padding:28px 10px 0 0; */}
522
- .header .welcome-msg {/* margin:0; text-align:right; */color:#fff; }
523
  .header .welcome-msg a { color:#ebbc58; }
524
  .header .form-search { /*position:absolute; top:0; right:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:1px 0 0 16px; */}
525
  .header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
@@ -538,7 +538,7 @@ tr.summary-details-excluded { font-style:italic; }
538
  .header .form-language select { padding:0; }
539
  .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
540
  .header .links { float:right;/* margin:0 0 6px; */}
541
- .header .links li { float:left; font-size:11px;/* background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat;*/ padding:0 8px 0 7px; }
542
  .header .links a { color:#ebbc58; }
543
  .header .links .top-link-cart i{margin-left: 5px; color: #fff}
544
  .header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
@@ -1240,6 +1240,7 @@ tr.summary-details-excluded { font-style:italic; }
1240
  .cart .shipping .buttons-set { margin:10px 0 0; border:0; padding:0; text-align:left; }
1241
  .cart .discount .buttons-set button.button,
1242
  .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
 
1243
 
1244
  .cart .discount h2 { background-image:url(../images/i_discount.gif); }
1245
  .cart .discount .input-box { margin:8px 0 0; /*width:260px; */}
@@ -1542,6 +1543,7 @@ tr.summary-details-excluded { font-style:italic; }
1542
  /* My Account ============================================================================= */
1543
  .my-account .title-buttons .link-rss { float:none; margin:0; }
1544
  .my-account .checkbox{display: inline-block}
 
1545
  /********** < Dashboard */
1546
  .dashboard .welcome-msg { margin:0 0 1.5em 0; }
1547
  .dashboard .welcome-msg p { margin:0; }
@@ -1606,7 +1608,7 @@ tr.summary-details-excluded { font-style:italic; }
1606
 
1607
  .order-date { margin:10px 0; }
1608
 
1609
- .order-info-box { background:#fff url(../images/bkg_block-title.gif) 0 0 repeat-x; border:1px solid #d0cbc1; padding:12px 15px; margin:0 0 15px; }
1610
  .order-info-box h2 { font-weight:bold; font-size:13px; }
1611
  .order-info-box .box-payment p { margin:0 0 3px; }
1612
  .order-info-box .box-payment th { font-weight:bold; padding-right:7px; }
@@ -1864,6 +1866,7 @@ tr.summary-details-excluded { font-style:italic; }
1864
  /* custom CSS */
1865
  /* checkout onepage */
1866
  #checkout-step-login .radio, #checkoutSteps .radio{display: inline-block}
 
1867
 
1868
  /* social network block */
1869
  #divnetworkshare{margin-top: 10px; text-align: left}
143
  select.multiselect option { border-bottom:1px solid #b6b6b6; padding:2px 5px; }
144
  select.multiselect option:last-child { border-bottom:0; }
145
  textarea { overflow:auto; }
146
+ input.radio {/* margin-right:3px; */}
147
+ input.checkbox {/* margin-right:3px; */}
148
  input.qty { width:2.5em !important; }
149
  button.button::-moz-focus-inner { /*padding:0; border:0; */} /* FF Fix */
150
  /*button.button { -webkit-border-fit:lines; } *//* <- Safari & Google Chrome Fix */
332
  .breadcrumbs li strong { font-weight:bold; }
333
 
334
  /* Page Heading */
335
+ .page-title { width:100%; overflow:hidden; border-bottom:1px solid #ccc; margin:0 0 25px; padding-bottom:5px;}
336
  .page-title h1,
337
  .page-title h2 { margin:0; font-size:20px; color:#0a263c; }
338
  .page-title .separator { margin:0 3px; }
519
  .header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
520
  /*.header h1.logo { margin:0; }*/
521
  .header .quick-access { /*float:right; width:600px; padding:28px 10px 0 0; */}
522
+ .header .welcome-msg { margin-bottom:0; /*text-align:right; */color:#fff; }
523
  .header .welcome-msg a { color:#ebbc58; }
524
  .header .form-search { /*position:absolute; top:0; right:29px; width:315px; height:30px; background:url(../images/bkg_form-search.gif) 0 0 no-repeat; padding:1px 0 0 16px; */}
525
  .header .form-search label { float:left; width:24px; height:21px; text-align:left; text-indent:-999em; overflow:hidden; }
538
  .header .form-language select { padding:0; }
539
  .header .form-language select.flags option { background-position:4px 50%; background-repeat:no-repeat; padding-left:25px; }
540
  .header .links { float:right;/* margin:0 0 6px; */}
541
+ .header .links li { float:left; font-size:11px;/* background:url(../images/bkg_pipe1.gif) 100% 60% no-repeat;*/ padding:10px 15px 0 0px; }
542
  .header .links a { color:#ebbc58; }
543
  .header .links .top-link-cart i{margin-left: 5px; color: #fff}
544
  .header-container .top-container { clear:both; padding:5px 10px 0 12px; text-align:right; }
1240
  .cart .shipping .buttons-set { margin:10px 0 0; border:0; padding:0; text-align:left; }
1241
  .cart .discount .buttons-set button.button,
1242
  .cart .shipping .buttons-set button.button { float:none; margin-left:0; }
1243
+ .cart .shipping .radio{display:inline-block}
1244
 
1245
  .cart .discount h2 { background-image:url(../images/i_discount.gif); }
1246
  .cart .discount .input-box { margin:8px 0 0; /*width:260px; */}
1543
  /* My Account ============================================================================= */
1544
  .my-account .title-buttons .link-rss { float:none; margin:0; }
1545
  .my-account .checkbox{display: inline-block}
1546
+ .my-account .limiter{text-align:right}
1547
  /********** < Dashboard */
1548
  .dashboard .welcome-msg { margin:0 0 1.5em 0; }
1549
  .dashboard .welcome-msg p { margin:0; }
1608
 
1609
  .order-date { margin:10px 0; }
1610
 
1611
+ .order-info-box {border:1px solid #d0cbc1; padding:12px 0px 0px 0px; margin:0 0 15px; }
1612
  .order-info-box h2 { font-weight:bold; font-size:13px; }
1613
  .order-info-box .box-payment p { margin:0 0 3px; }
1614
  .order-info-box .box-payment th { font-weight:bold; padding-right:7px; }
1866
  /* custom CSS */
1867
  /* checkout onepage */
1868
  #checkout-step-login .radio, #checkoutSteps .radio{display: inline-block}
1869
+ #checkout-step-shipping input[type="checkbox"] {display:inline-block}
1870
 
1871
  /* social network block */
1872
  #divnetworkshare{margin-top: 10px; text-align: left}