Modify text module_shoppingcartsummary
hey guys,
i'm bit new bc (switching on solution). know of way modify text in module_shoppingcartsummary? rather "total: $" have dollar ammount.
i have right now:
but more this:
help appreciated!!
there isn't 1 apparently - http://support.muse.adobe.com/message/4669176
as explained, can effect css images seem have figured out.
you have use javascript (or jquery) make changes want.
if want change "view cart" "checkout" use can use jquery:
<script type="text/javascript">
$(".cartsummarylink").each( function() {
$(this).text('checkout')
});
</script>
and remove "total: " can use this, in testing removed view cart link:
<script type="text/javascript">
$(".cartsummaryitem").each( function() {
var text = $(this).text();
$(this).text(text.replace('total: ', ''));
});
</script>
maybe understands javascript/jquery can explain how better.
sources:
http://www.dreamincode.net/forums/topic/123002-replace-all-text-in-a-class/
http://stackoverflow.com/questions/8146648/jquery-find-text-and-replace
More discussions in Business Catalyst
adobe
Comments
Post a Comment