Tagged: custom field, customize, Product page
Hi,
Can anyone help get me started with editing the layout of the Single Product Page? I am happy with the default layout but simply need a swap a couple of elements..
Underneath the Product Title is the Product Meta area I want to have a list of categories and a link to download a PDF of the product info. Ihave added the link to the PDF in the “Product Short Description” and have added the WooCommerce Categories widget to the “Single Product Page” area. However, this shows underneath the “Product Short Description”. How can I easily swap these elements?
If this is not possible, how about adding a new Custom Field via the Product Admin and displaying this underneath the categories? I have added a new Custom Field but this doesn’t display anywhere on the product page.
So just to clarify, I need some way of adding a custom line of HTML in the Meta area underneath the Product Title and the Categories List.
Thanks
Hi lol4000!
Try adding this to the bottom of your functions.php file.
add_action( 'woocommerce_after_single_product_summary', 'enfold_customization_after_product_summary', 1);
function enfold_customization_after_product_summary() {
echo 'your html goes here';
}
Cheers!
Elliott
Thats great thanks :)