php - How to edit the Checkout button to Order Now -
i need change text of checkout button viewed once hovered on cart if product in cart, need rename order now instead of checkout.
please suggest me answer...
below link image... click here view screenshot
since want update checkout
word order now
in header cart => mini cart, following:
assuming using rwd theme, navigate app/design/frontend/rwd/default/template/checkout/cart/minicart/items.phtml
line no: 94 & 95 from:
<a title="<?php echo $this->quoteescape($this->__('checkout')) ?>" class="button checkout-button" href="<?php echo $this->getcheckouturl() ?>"> <?php echo $this->__('checkout') ?> </a>
update to:
<a title="<?php echo $this->quoteescape($this->__('order now')) ?>" class="button checkout-button" href="<?php echo $this->getcheckouturl() ?>"> <?php echo $this->__('order now') ?> </a>
screenshot:
let me know if helps.
happy coding...
Comments
Post a Comment