xml SD4 Miva9更改==如果他们没有使用MIVA9优惠券,请删除优惠券==
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml SD4 Miva9更改==如果他们没有使用MIVA9优惠券,请删除优惠券==相关的知识,希望对你有一定的参考价值。
.image-row {text-align: center;}
.coupon-img i {font-size: 31px !important;}
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="title">Items in your order</h3>
<table class="table table-striped tcart">
<thead>
<tr>
<th> </th>
<th class="hidden-xs"> </th>
<th>Product Details</th>
<th>Status</th>
<th>Quantity</th>
<th>Unit Price</th>
<th>Total</th>
</tr>
</thead>
<tbody>
<mvt:foreach iterator="item" array="order:items">
<tr>
<td>
<mvt:if expr="l.settings:item:reorder EQ 1">
<a href="&mvt:global:sessionurl;&Store_Code=&mvta:store:code;&Screen=PROD&Product_Code=&mvta:item:code;" class="btn btn-default"><i class="icon-repeat"></i></a>
<mvt:else>
</mvt:if>
</td>
<td><img src="&mvte:item:imagetypes:main;" alt="&mvte:item:name;"/></td>
<td>
&mvt:item:name;
<mvt:if expr="l.settings:item:upsold">
(Special Offer)
</mvt:if>
<mvt:foreach iterator="discount" array="item:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="order-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:option_id">
&mvt:option:attr_code;: &mvt:option:opt_code;
<mvt:elseif expr="NOT ISNULL l.settings:option:data">
&mvt:option:attr_code;: &mvt:option:data;
<mvt:elseif expr="NOT ISNULL l.settings:option:data_long">
&mvt:option:attr_code;: &mvt:option:data_long;
<mvt:else>
&mvt:option:attr_code;
</mvt:if>
<mvt:foreach iterator="discount" array="option:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="order-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
</mvt:foreach>
</td>
<td class="item-input">&mvt:item:order_status;</td>
<td>&mvt:item:quantity;</td>
<td>
<mvt:if expr="l.settings:item:base_price NE l.settings:item:price">
<span style="text-decoration: line-through;">&mvt:item:formatted_base_price;</span>
</mvt:if>
&mvt:item:formatted_price;
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:base_price OR l.settings:option:price">
<mvt:if expr="l.settings:option:base_price NE l.settings:option:price">
<span style="text-decoration: line-through;">&mvt:option:formatted_base_price;</span>
</mvt:if>
&mvt:option:formatted_price;
<mvt:else>
</mvt:if>
</mvt:foreach>
</td>
<td>
&mvt:item:formatted_subtotal;
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:price">
&mvt:option:formatted_subtotal;
<mvt:else>
</mvt:if>
</mvt:foreach>
</td>
</tr>
</mvt:foreach>
<mvt:foreach iterator="coupon" array="order:coupons">
<tr class="order-charges">
<td class="order-reorder"> </td>
<td class="image-row hidden-xs col-md-1 coupon-img"><i class="icon-tag"></i></td>
<td class="order-description">
Coupon - &mvt:coupon:code;
<mvt:if expr="NOT ISNULL l.settings:coupon:descrip">
<div class="order-discount">&mvt:coupon:descrip;</div>
</mvt:if>
</td>
<td class="order-status"> </td>
<td class="order-quantity"> </td>
<td class="order-price"> </td>
<td class="order-total"> </td>
</tr>
</mvt:foreach>
<mvt:foreach iterator="charge" array="order:charges">
<tr class="basket-charges">
<td colspan="5"> </td>
<td class="charge-description">&mvt:charge:descrip;:</td>
<td class="formatted-charge">&mvt:charge:formatted_disp_amt;</td>
</tr>
</mvt:foreach>
<tr id="basket-totals">
<td colspan="5"> </td>
<td class="total-prompt">Total:</td>
<td class="formatted-total">&mvt:order:formatted_total;</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="title">Items in your cart</h3>
<table class="table table-striped tcart">
<thead>
<tr>
<th class="hidden-xs"> </th>
<th>Name</th>
<th class="text-center">Quantity</th>
<th class="text-right">Unit Price</th>
<th class="text-right">Total</th>
</tr>
</thead>
<tbody>
<mvt:foreach iterator="item" array="basket:items">
<tr>
<mvt:if expr="l.settings:item:imagetypes:main">
<td class="image-row hidden-xs col-md-1"><img src="&mvte:item:imagetypes:main;" alt="&mvt:item:name;" title="&mvt:item:name;" /></td>
<mvt:else>
<td class="image-row hidden-xs col-md-1"> </td>
</mvt:if>
<td class="name-row">
&mvt:item:name;
<mvt:if expr="l.settings:item:upsold">
(Special Offer)
</mvt:if>
<mvt:foreach iterator="discount" array="item:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="item-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:option_id">
&mvt:option:attr_code;: &mvt:option:opt_code;
<mvt:elseif expr="NOT ISNULL l.settings:option:data">
&mvt:option:attr_code;: &mvt:option:data;
<mvt:elseif expr="NOT ISNULL l.settings:option:data_long">
&mvt:option:attr_code;: &mvt:option:data_long;
<mvt:else>
&mvt:option:attr_code;
</mvt:if>
<mvt:foreach iterator="discount" array="option:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="item-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
</mvt:foreach>
</td>
<td class="item-input qty-row text-center">&mvt:item:quantity;</td>
<td class="price-row col-sm-1 text-right">
<mvt:if expr="l.settings:item:base_price NE l.settings:item:price">
<span style="text-decoration: line-through;">&mvt:item:formatted_base_price;</span>
</mvt:if>
&mvt:item:formatted_price;
<mvt:foreach iterator="option" array="item:options">
<mvt:if expr="l.settings:option:base_price OR l.settings:option:price">
<mvt:if expr="l.settings:option:base_price NE l.settings:option:price">
<span style="text-decoration: line-through;">&mvt:option:formatted_base_price;</span>
</mvt:if>
&mvt:option:formatted_price;
<mvt:else>
</mvt:if>
</mvt:foreach>
</td>
<td class="total-row col-sm-1 text-right">
&mvt:item:formatted_subtotal;
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:subtotal_base_price OR l.settings:option:subtotal_price">
&mvt:option:formatted_subtotal;
<mvt:else>
</mvt:if>
</mvt:foreach>
</td>
</tr>
</mvt:foreach>
<mvt:foreach iterator="coupon" array="basket:coupons">
<tr>
<td class="image-row hidden-xs col-md-1 coupon-img"><i class="icon-tag"></i></td>
<td class="item-name">
<div class="item-name">Coupon -
<span class="item-code">
&mvt:coupon:code;
</span>
<mvt:if expr="NOT ISNULL l.settings:coupon:descrip">
<div class="item-discount">&mvt:coupon:descrip;</div>
</mvt:if>
</div>
</td>
<td class="item-quantity">
</td>
<td class="item-price">
</td>
<td class="item-total">
</td>
</tr>
</mvt:foreach>
</tbody>
</table>
<div id="basket-footer">
<mvt:foreach iterator="charge" array="basket:charges">
<div class="basket-charges col-md-12">
<p class="formatted-charge text-right">&mvt:charge:descrip;: &mvt:charge:formatted_disp_amt;</p>
</div>
</mvt:foreach>
<div id="basket-totals" class="col-md-12">
<p class="formatted-total text-right">Total: &mvt:basket:formatted_total;</p>
</div>
</div>
</div>
</div>
</div>
<!-- Mini Basket modal Starts -->
<div id="cart" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4>Shopping Cart</h4>
</div>
<div class="modal-body cart-stuff">
<table class="table table-striped tcart">
<thead>
<tr>
<th class="hidden-xs"> </th>
<th>Name</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody class="text-left">
<mvt:foreach iterator="item" array="global_minibasket:items">
<tr>
<mvt:if expr="l.settings:item:imagetypes:main">
<td class="image-row hidden-xs col-md-1"><a href="&mvt:global:sessionurl;Screen=PROD&Store_Code=&mvta:global:Store_Code;&Product_Code=&mvta:item:code;"><img src="&mvte:item:imagetypes:main;" alt="&mvt:item:name;" title="&mvt:item:name;" /></a></td>
<mvt:else>
<td class="image-row hidden-xs col-sm-1"> </td>
</mvt:if>
<td>
<a href="&mvt:global:sessionurl;Screen=PROD&Store_Code=&mvta:store:code;&Product_Code=&mvta:item:code;">&mvt:item:name;</a>
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:option_id">
&mvt:option:attr_code;: &mvt:option:opt_code;
<mvt:elseif expr="NOT ISNULL l.settings:option:data">
&mvt:option:attr_code;: &mvt:option:data;
<mvt:elseif expr="NOT ISNULL l.settings:option:data_long">
&mvt:option:attr_code;: &mvt:option:data_long;
<mvt:else>
&mvt:option:attr_code;
</mvt:if>
<mvt:foreach iterator="discount" array="option:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="item-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
</mvt:foreach>
<mvt:foreach iterator="discount" array="item:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="item-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
</td>
<td>&mvte:item:quantity;</td>
<td>
<mvt:if expr="l.settings:item:subtotal_base_price OR l.settings:item:subtotal">
<mvt:if expr="l.settings:item:subtotal_base_price NE l.settings:item:subtotal">
<span style="text-decoration: line-through;">&mvt:item:formatted_subtotal_base_price;</span><br />
</mvt:if>
&mvt:item:formatted_subtotal;
<mvt:else>
</mvt:if>
</td>
</tr>
</mvt:foreach>
<mvt:foreach iterator="charge" array="global_minibasket:charges">
<tr class="basket-charges">
<td class="hidden-xs"> </td>
<td> </td>
<td class="charge-description">&mvt:charge:descrip;:</td>
<td class="formatted-charge">&mvt:charge:formatted_disp_amt;</td>
</tr>
</mvt:foreach>
<tr>
<th class="hidden-xs"> </th>
<th> </th>
<th>Total</th>
<th>&mvt:global_minibasket:formatted_total;</th>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<a href="&mvt:global:secure_sessionurl;Screen=BASK&Store_Code=&mvta:store:code;" class="btn btn-default">View Cart</a>
<mvt:if expr="l.settings:global_minibasket:orderminimum_met">
<a href="&mvt:global:secure_sessionurl;Screen=OINF&Store_Code=&mvta:store:code;" class="btn btn-primary">Checkout</a>
</mvt:if>
</div>
</div>
</div>
</div>
<!-- Mini Basket modal ends -->
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="title">Items in your cart</h3>
<table class="table table-striped tcart">
<thead>
<tr>
<th class="hidden-xs"> </th>
<th>Name</th>
<th class="text-center">Quantity</th>
<th class="text-right">Unit Price</th>
<th class="text-right">Total</th>
</tr>
</thead>
<tbody>
<mvt:foreach iterator="item" array="order:items">
<tr>
<mvt:if expr="l.settings:item:imagetypes:main">
<td class="image-row hidden-xs col-md-1"><img src="&mvte:item:imagetypes:main;" alt="&mvt:item:name;" title="&mvt:item:name;" /></td>
<mvt:else>
<td class="image-row hidden-xs col-md-1"> </td>
</mvt:if>
<td class="name-row">
&mvt:item:name;
<mvt:if expr="l.settings:item:upsold">
(Special Offer)
</mvt:if>
<mvt:foreach iterator="discount" array="item:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="item-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:option_id">
&mvt:option:attr_code;: &mvt:option:opt_code;
<mvt:elseif expr="NOT ISNULL l.settings:option:data">
&mvt:option:attr_code;: &mvt:option:data;
<mvt:elseif expr="NOT ISNULL l.settings:option:data_long">
&mvt:option:attr_code;: &mvt:option:data_long;
<mvt:else>
&mvt:option:attr_code;
</mvt:if>
<mvt:foreach iterator="discount" array="option:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="item-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
</mvt:foreach>
</td>
<td class="item-input qty-row text-center">&mvt:item:quantity;</td>
<td class="price-row col-sm-1 text-right">
<mvt:if expr="l.settings:item:base_price NE l.settings:item:price">
<span style="text-decoration: line-through;">&mvt:item:formatted_base_price;</span>
</mvt:if>
&mvt:item:formatted_price;
<mvt:foreach iterator="option" array="item:options">
<mvt:if expr="l.settings:option:base_price OR l.settings:option:price">
<mvt:if expr="l.settings:option:base_price NE l.settings:option:price">
<span style="text-decoration: line-through;">&mvt:option:formatted_base_price;</span>
</mvt:if>
&mvt:option:formatted_price;
<mvt:else>
</mvt:if>
</mvt:foreach>
</td>
<td class="total-row col-sm-1 text-right">
&mvt:item:formatted_subtotal;
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:subtotal_base_price OR l.settings:option:subtotal_price">
&mvt:option:formatted_subtotal;
<mvt:else>
</mvt:if>
</mvt:foreach>
</td>
</tr>
</mvt:foreach>
<mvt:foreach iterator="coupon" array="order:coupons">
<tr>
<td class="image-row hidden-xs col-md-1 coupon-img"><i class="icon-tag"></i></td>
<td class="item-name">
<div class="item-name">Coupon -
<span class="item-code">
&mvt:coupon:code;
</span>
<mvt:if expr="NOT ISNULL l.settings:coupon:descrip">
<div class="item-discount">&mvt:coupon:descrip;</div>
</mvt:if>
</div>
</td>
<td class="item-quantity">
</td>
<td class="item-price">
</td>
<td class="item-total">
</td>
</tr>
</mvt:foreach>
</tbody>
</table>
<div id="basket-footer">
<mvt:foreach iterator="charge" array="order:charges">
<div class="basket-charges col-md-12">
<p class="formatted-charge text-right">&mvt:charge:descrip;: &mvt:charge:formatted_disp_amt;</p>
</div>
</mvt:foreach>
<div id="basket-totals" class="col-md-12">
<p class="formatted-total text-right">Total: &mvt:order:formatted_total;</p>
</div>
</div>
</div>
</div>
</div>
<mvt:if expr="l.settings:basket:empty">
Your shopping basket is currently empty.
<p><mvt:item name="cssui_links" param="storefront">Home</mvt:item></p>
<mvt:exit />
</mvt:if>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h3 class="title">
<mvt:if expr="l.settings:global_minibasket:basket_count EQ 1">
&mvt:global_minibasket:basket_count; Item
<mvt:else>
&mvt:global_minibasket:basket_count; Items
</mvt:if>
in your cart</h3>
<br />
<div class="table-responsive">
<table class="table table-striped tcart table-condensed">
<thead>
<tr>
<th class="hidden-xs"> </th>
<th class="hidden-xs"> </th>
<th>Name</th>
<th>Quantity</th>
<th class="text-right">Unit Price</th>
<th class="text-right">Total</th>
</tr>
</thead>
<tbody>
<mvt:foreach iterator="item" array="basket:items">
<mvt:if expr="l.settings:item:option_count">
<mvt:assign name="l.settings:rowspan" value="l.settings:item:option_count + 1" />
<mvt:else>
<mvt:assign name="l.settings:rowspan" value="1" />
</mvt:if>
<tr>
<td class="remove-row hidden-xs col-sm-1">
<form method="post" action="&mvt:global:secure_sessionurl;Screen=BASK" class="form-inline remove-form" role="form">
<input type="hidden" name="Action" value="RPRD" />
<input type="hidden" name="Store_Code" value="&mvte:global:Store_Code;" />
<input type="hidden" name="Basket_Line" value="&mvte:item:line_id;" />
<input type="hidden" name="Offset" value="&mvte:global:Offset;" />
<input type="hidden" name="AllOffset" value="&mvte:global:AllOffset;" />
<input type="hidden" name="CatListingOffset" value="&mvte:global:CatListingOffset;" />
<input type="hidden" name="RelatedOffset" value="&mvte:global:RelatedOffset;" />
<input type="hidden" name="SearchOffset" value="&mvte:global:SearchOffset;" />
<div class="text-center">
<mvt:item name="buttons" param="Remove" />
</div>
</form>
</td>
<mvt:if expr="l.settings:item:imagetypes:main">
<td class="image-row hidden-xs col-md-1"><a href="&mvt:global:sessionurl;Screen=PROD&Store_Code=&mvta:global:Store_Code;&Product_Code=&mvta:item:code;"><img src="&mvte:item:imagetypes:main;" alt="&mvt:item:name;" title="&mvt:item:name;" /></a></td>
<mvt:else>
<td class="image-row hidden-xs col-sm-1"> </td>
</mvt:if>
<td class="name-row">
<a href="&mvt:global:sessionurl;Screen=PROD&Store_Code=&mvta:global:Store_Code;&Product_Code=&mvta:item:code;">&mvt:item:name;</a>
<mvt:if expr="l.settings:item:upsold">
(Special Offer)
</mvt:if>
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:option_id">
&mvt:option:attr_prompt;: &mvt:option:opt_code;
<mvt:elseif expr="NOT ISNULL l.settings:option:data">
&mvt:option:attr_prompt;: &mvt:option:data;
<mvt:elseif expr="NOT ISNULL l.settings:option:data_long">
&mvt:option:attr_prompt;: &mvt:option:data_long;
<mvt:else>
&mvt:option:attr_prompt;
</mvt:if>
<mvt:foreach iterator="discount" array="option:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="item-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
</mvt:foreach>
<mvt:foreach iterator="discount" array="item:discounts">
<mvt:if expr="l.settings:discount:display">
<div class="item-discount">&mvt:discount:descrip;: &mvt:discount:formatted_discount;</div>
</mvt:if>
</mvt:foreach>
</td>
<td class="item-input qty-row">
<div class="row">
<mvt:if expr="l.settings:item:upsold">
&mvt:item:quantity;
<mvt:else>
<form method="post" action="&mvt:global:secure_sessionurl;Screen=BASK" class="form-inline text-center clearfix update-cart" role="form">
<input type="hidden" name="Action" value="QNTY" />
<input type="hidden" name="Store_Code" value="&mvte:global:Store_Code;" />
<input type="hidden" name="Basket_Line" value="&mvte:item:line_id;" />
<input type="hidden" name="Old_Screen" value="BASK" />
<input type="hidden" name="Offset" value="&mvte:global:Offset;" />
<input type="hidden" name="AllOffset" value="&mvte:global:AllOffset;" />
<input type="hidden" name="CatListingOffset" value="&mvte:global:CatListingOffset;" />
<input type="hidden" name="RelatedOffset" value="&mvte:global:RelatedOffset;" />
<input type="hidden" name="SearchOffset" value="&mvte:global:SearchOffset;" />
<div class="form-group">
<div class="col-md-5 col-sm-6 col-xs-12">
<input type="text" name="Quantity" value="&mvt:item:quantity;" class="form-control text-center" />
<mvt:item name="buttons" param="Update" />
</div>
</div>
</form>
</mvt:if>
</div>
</td>
<td class="price-row col-sm-1 text-right">
<mvt:if expr="l.settings:item:base_price NE l.settings:item:price">
<span style="text-decoration: line-through;">&mvt:item:formatted_base_price;</span>
</mvt:if>
&mvt:item:formatted_price;
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:base_price OR l.settings:option:price">
<mvt:if expr="l.settings:option:base_price NE l.settings:option:price">
<span style="text-decoration: line-through;">&mvt:option:formatted_base_price;</span>
</mvt:if>
&mvt:option:formatted_price;
<mvt:else>
</mvt:if>
</mvt:foreach>
</td>
<td class="total-row col-sm-1 text-right">
&mvt:item:formatted_subtotal;
<mvt:foreach iterator="option" array="item:options">
<br />
<mvt:if expr="l.settings:option:price">
&mvt:option:formatted_subtotal;
<mvt:else>
</mvt:if>
</mvt:foreach>
</td>
</tr>
</mvt:foreach>
<mvt:foreach iterator="coupon" array="basket:coupons">
<tr>
<td class="remove-row hidden-xs col-sm-1">
<form method="post" action="&mvt:global:secure_sessionurl;Screen=BASK" class="form-inline remove-form">
<input type="hidden" name="Action" value="RCPN" />
<input type="hidden" name="Store_Code" value="&mvte:global:Store_Code;" />
<input type="hidden" name="Coupon_Code" value="&mvte:coupon:code;" />
<div class="text-center">
<button type="submit" class="btn"><i class="icon-remove"></i></button>
</div>
</form>
</td>
<td class="image-row hidden-xs col-md-1 coupon-img">
<i class="icon-tag"></i>
</td>
<td class="name-row">
<div class="item-name">Coupon -
<span class="item-code">
&mvt:coupon:code;
</span>
<mvt:if expr="NOT ISNULL l.settings:coupon:descrip">
<div class="item-discount">&mvt:coupon:descrip;</div>
</mvt:if>
</div>
</td>
<td class="item-input qty-row">
</td>
<td class="item-price">
</td>
<td class="item-total">
</td>
</tr>
</mvt:foreach>
</tbody>
</table>
</div>
<div id="basket-footer">
<mvt:foreach iterator="charge" array="basket:charges">
<div class="basket-charges col-md-12">
<p class="formatted-charge text-right">&mvt:charge:descrip;: &mvt:charge:formatted_disp_amt;</p>
</div>
</mvt:foreach>
<div id="basket-totals" class="col-md-12">
<p class="formatted-total text-right">Total: &mvt:basket:formatted_total;</p>
</div>
</div>
<div class="row">
<div class="col-md-8 col-sm-6 text-left hidden-xs">
<mvt:item name="shipestimate"></mvt:item>
</div>
<div class="col-md-4 col-sm-6 text-right">
<a href="&mvt:global:sessionurl;Screen=SFNT&Store_Code=&mvta:store:code;" class="btn btn-default">Continue Shopping</a>
<a href="&mvte:global:secure_sessionurl;Screen=OINF&Store_Code=&mvta:store:code;" class="btn btn-primary">Check Out</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix">
<form method="post" action="&mvt:global:secure_sessionurl;Screen=BASK">
<div class="form_row">
<input type="hidden" name="Action" value="ACPN" />
<input type="hidden" name="Store_Code" value="&mvte:global:Store_Code;" />
<div class="col-md-4 col-sm-6">
<label class="control-label" for="Coupon_Code">Coupon: </label>
<input type="text" name="Coupon_Code" class="form-control">
<div class="pull-right">
<mvt:item name="buttons" param="ApplyCoupon" />
</div>
</div>
</div>
</form>
</div>
以上是关于xml SD4 Miva9更改==如果他们没有使用MIVA9优惠券,请删除优惠券==的主要内容,如果未能解决你的问题,请参考以下文章
xml SD4 - 子类别的子类别产品的图像......什么
xml SD4 - 子类别的子类别产品的图像......什么