Hi Nicolas,
That isn't what I am looking for, I think maybe you misunderstood. I want my button to say 'Add to Cart $xx' with the price filled in by the appropriate Hikashop product price.
I think I perhaps need to edit this part of the hikashopproductinsert_view.php:
if($this->cart == 1 && $product->product_quantity!=0){
$params->set('price_with_tax',$config->get('price_with_tax',1));
$params->set('add_to_cart',1);
$add_to_cart = hikashop_getLayout('product', 'add_to_cart_listing',$params,$js);
echo $add_to_cart;
But I'm not sure how to modify the variable $add_to_cart to get it to also display the product price.
nicolas wrote: In the hikashopproductinsert_view.php file, you can see the different blocks of code to display each element. Just swap them in order to display them in a different order. for example, the price display block is delimited by the code <!-- PRODUCT PRICE --> and <!-- EO PRODUCT PRICE -->