Skip to content

Commit

Permalink
checkout revisions to all properly show 'call for shipping'
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Lyczko committed Apr 2, 2013
1 parent f1aec9b commit 648ab19
Show file tree
Hide file tree
Showing 7 changed files with 149 additions and 71 deletions.
181 changes: 116 additions & 65 deletions .idea/workspace.xml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Snippets/CartItem.html
Expand Up @@ -33,3 +33,10 @@
</td>
<td align="right" class="CartItemTotalPrice"><em class="ProductPrice">%%GLOBAL_ProductTotal%%</em></td>
</tr>
<script type="text/javascript">
$(function() {
$('em:contains("$0.00")').each(function() {
$(this).html("Call for Shipping");
});
});
</script>
2 changes: 1 addition & 1 deletion Snippets/EstimatedShippingQuote.html
Expand Up @@ -8,4 +8,4 @@
<tbody>
%%GLOBAL_ShippingQuoteRow%%
</tbody>
</table>
</table>
9 changes: 8 additions & 1 deletion Snippets/EstimatedShippingQuoteList.html
Expand Up @@ -2,4 +2,11 @@
<p class="Submit">
<input type="button" value="%%LNG_UpdateShippingCost%%" onclick="Cart.UpdateShippingCost();" />
</p>
%%GLOBAL_DeliveryDisclaimer%%
%%GLOBAL_DeliveryDisclaimer%%
<script type="text/javascript">
$(function() {
$('em:contains("$0.00")').each(function() {
$(this).html("Call for Shipping");
});
});
</script>
9 changes: 8 additions & 1 deletion Snippets/ExpressCheckoutConfirmation.html
Expand Up @@ -135,4 +135,11 @@ <h3>%%LNG_HearFromUsViaEmail%%</h3>
}
});
</script>
</form>
</form>
<script type="text/javascript">
$(function() {
$('em:contains("$0.00")').each(function() {
$(this).html("Call for Shipping");
});
});
</script>
9 changes: 8 additions & 1 deletion Snippets/ExpressCheckoutShippingMethod.html
@@ -1,3 +1,10 @@
<li>
<label id="shippingMethod_%%GLOBAL_AddressId%%_%%GLOBAL_ShippingQuoteId%%"><input type="radio" name="selectedShippingMethod[%%GLOBAL_AddressId%%]" id="shippingCheck_%%GLOBAL_AddressId%%" value="%%GLOBAL_ShippingQuoteId%%" /> <span class="ShipperName">%%GLOBAL_ShipperName%%</span> %%GLOBAL_TransitTime%% <em class="ShipperPrice ProductPrice">%%GLOBAL_ShippingPrice%%</em></label>
</li>
</li>
<script type="text/javascript">
$(function() {
$('em:contains("$0.00")').each(function() {
$(this).html("Call for Shipping");
});
});
</script>
3 changes: 1 addition & 2 deletions checkout_express.html
Expand Up @@ -156,7 +156,7 @@ <h3 class="ExpressCheckoutTitle">
%%LNG_ExpressCheckoutStep%% %%GLOBAL_ExpressCheckoutStepShippingProvider%%: %%LNG_ExpressCheckoutStepShippingMethod%%
<span class="ExpressCheckoutCompletedContent"></span>
</h3>
<div class="ExpressCheckoutContent">
<div class="ExpressCheckoutContent">
</div>
</div>

Expand All @@ -179,7 +179,6 @@ <h3 class="ExpressCheckoutTitle">
</div>
</div>
</div>
<br class="Clear"/>
</div>
%%Panel.Footer%%
</div>
Expand Down

0 comments on commit 648ab19

Please sign in to comment.