Is there a way to move the product price. I would like to move it down and towards the left.
Here is a sample: http://risencreative.com/clients/skinetics/wordpress/?product=perfectaserum#!prettyPhoto
Thanks!
Is there a way to move the product price. I would like to move it down and towards the left.
Here is a sample: http://risencreative.com/clients/skinetics/wordpress/?product=perfectaserum#!prettyPhoto
Thanks!
Hi,
Please try.
h1.cufon_headings span {
float: left;
width: 50px;
}
Regards,
Ismael
Unfortunately, that didn't work. Is there a short code for the product price? I could then hide the themes product price and add my own to the product description?
Hi rkdiddy,
As far as I know there is not shortcode for the product price. I believe in order to move the price you would have to edit the WooCommerce template files directly. I'm going to tag other support team members here though just in case they know something I don't.
Regards,
Mya
Try to replace following code in functions.php:
if($_product && is_singular())
{
echo "<div class='price_container'>";
woocommerce_template_single_price($post, $_product);
echo "</div>";
}
echo "</div>";
with:
echo "</div>";
if($_product && is_singular())
{
echo "<div class='price_container'>";
woocommerce_template_single_price($post, $_product);
echo "</div>";
}You must log in to post.