Change Destination Of Add To Cart

Hi all!!

See image below. Currently, if you click on the image it takes me to the product. If i click the add to cart then it adds to the cart.

What I would like to do is whether you click the image or the add to cart button, I am directed to the product itself. I want to change text of ADD TO CART also to BUY NOW

I think it is to do with the mulitcoumns product temaplte but not sure...any pointers would be greatly received

thanks

Screen Shot 2016-11-29 at 14.58.49.png

Administration -> Languages -> Translations

Search for "Add to Cart" and change it to "Buy Now".

What I would like to do is whether you click the image or the add to cart button, I am directed to the product itself.

design/themes/TEMA/templates/common/product_data.tpl

replace:

{if $product.has_options && !$show_product_options && !$details_page}

with

{if !$details_page}

Then change the value of the select_options language variable to Buy now and clear cache

design/themes/TEMA/templates/common/product_data.tpl

replace:

{if $product.has_options && !$show_product_options && !$details_page}

with

{if !$details_page}

Then change the value of the select_options language variable to Buy now and clear cache

thanks for that, it works perfectly!!!

You are welcome!