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:

enter image description here

let me know if helps.

happy coding...


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -