Hey
I'd like the swap the product title and price with the box that has the sizes and add to cart button in it as shown here:
http://cutecreations.co.uk/wp/shop/kigurumi-kitty-t-shirt
How do I do this?
Hey
I'd like the swap the product title and price with the box that has the sizes and add to cart button in it as shown here:
http://cutecreations.co.uk/wp/shop/kigurumi-kitty-t-shirt
How do I do this?
Hi,
Kindly open wp-content\themes\propulsion\config-woocommerce\config.php and find this code (can be found in line 282):
avia_add_to_cart($post, $product );
echo "<h1 class='post-title portfolio-single-post-title'>".get_the_title()."</h1>";
Try to swap their positions, it should look something like this:
echo "<h1 class='post-title portfolio-single-post-title'>".get_the_title()."</h1>";
avia_add_to_cart($post, $product );
Hope this helps. :)
Regards,
Ismael
Thanks Ismael, worked a treat :)
Hi,
Glad that I could help you. :)
Cheers,
Ismael
This topic has been closed to new replies.