Commit 6d11a0dc by dhn

修改虚拟产品结算方式可见

parent cc6a87d8
...@@ -19,9 +19,11 @@ ...@@ -19,9 +19,11 @@
<input data-bind='attr: {value: getFormKey()}' type="hidden" name="form_key"/> <input data-bind='attr: {value: getFormKey()}' type="hidden" name="form_key"/>
<fieldset class="fieldset"> <fieldset class="fieldset">
<p class="step-title no-border"> <p class="step-title no-border">
<!-- ko ifnot: (quoteIsVirtual) -->
<span class="number"> <span class="number">
<span translate="'3'" /> <span translate="'3'" />
</span> </span>
<!--/ko-->
<span translate="'Payment Method'" /> <span translate="'Payment Method'" />
</p> </p>
...@@ -30,11 +32,22 @@ ...@@ -30,11 +32,22 @@
<!-- ko foreach: getRegion('beforeMethods') --> <!-- ko foreach: getRegion('beforeMethods') -->
<!-- ko template: getTemplate() --><!-- /ko --> <!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko --> <!-- /ko -->
<!-- ko if: (quoteIsVirtual) -->
<div id="checkout-payment-method-load" class="opc-payment" data-bind="visible: isPaymentMethodsAvailable"> <div id="checkout-payment-method-load" class="opc-payment" data-bind="visible: isPaymentMethodsAvailable">
<!-- ko foreach: getRegion('payment-methods-list') --> <!-- ko foreach: getRegion('payment-methods-list') -->
<!-- ko template: getTemplate() --><!-- /ko --> <!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko --> <!-- /ko -->
</div> </div>
<!--/ko-->
<!-- ko ifnot: (quoteIsVirtual) -->
<div id="checkout-payment-method-load" class="opc-payment dispay-solid" data-bind="visible: isPaymentMethodsAvailable">
<!-- ko foreach: getRegion('payment-methods-list') -->
<!-- ko template: getTemplate() --><!-- /ko -->
<!-- /ko -->
</div>
<!--/ko-->
<div class="no-quotes-block" data-bind="visible: isPaymentMethodsAvailable() == false"> <div class="no-quotes-block" data-bind="visible: isPaymentMethodsAvailable() == false">
<!-- ko i18n: 'No Payment method available.'--><!-- /ko --> <!-- ko i18n: 'No Payment method available.'--><!-- /ko -->
</div> </div>
......
...@@ -271,7 +271,7 @@ $full_free_ship = $_helper->currency($full_free, true, false); ...@@ -271,7 +271,7 @@ $full_free_ship = $_helper->currency($full_free, true, false);
} }
/****************************************payment begin********************************************************/ /****************************************payment begin********************************************************/
#checkout-step-shipping_method,#checkout-payment-method-load{ #checkout-step-shipping_method,.dispay-solid{
display:none; display:none;
} }
#shipping-text{ #shipping-text{
...@@ -966,6 +966,11 @@ $full_free_ship = $_helper->currency($full_free, true, false); ...@@ -966,6 +966,11 @@ $full_free_ship = $_helper->currency($full_free, true, false);
transition: all .3s ease; transition: all .3s ease;
box-shadow: 0 0 50px rgba(0,0,0,0.8); box-shadow: 0 0 50px rgba(0,0,0,0.8);
} }
#customer-email-fieldset input[type="email"]{
border:1px solid #ddd;
padding: 0;
}
/********************************************address from end****************************************************/ /********************************************address from end****************************************************/
</style> </style>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment