For my webshop I would like to add some extra information (excl. taxes/ free delivery/ 3-4 days delivery time) on the single product page. I have tried to adjust the theme template but it did not work out the way I want it to: http://www.transferpersshop.nl/winkel/transferpersen/secabo-transferpers-tc-10-50×100-cm
The extra information has moved the Review Ratings and Previous/Next product arrows downwards. I would like to keep the Review Ratings and Previous/Next arrows on the same line as the price. How can I do this?
The only lines of Code I’ve changed/ added are the following:
<p itemprop="price" class="price"><?php echo $product->get_price_html(); ?></p><p>(excl. BTW)</p>
<p style="color: #009900;"><b>Gratis verzending</b> - Levertijd 3-4 werkdagen</p><?php
Furthermore, I would only like to display the <p style=”color: #009900;”><b>Gratis verzending</b> – Levertijd 3-4 werkdagen</p> when the price of the product is above 280 euro. Otherwise I would like to display <p style=”color: #009900;”><b>Op voorraad</b> – Levertijd 3-4 werkdagen</p>. Can I do this with a php function (something like: if price >280 then…else…)?
Thanks in advance.
Kind regards