Add content to WooCommerce Description
-
I want to remove the tab for Additional Information and its content to description. For now, I am doing adding it Short Description as follows:
add_action( ‘woocommerce_single_product_summary’, ‘add_atts_to_summary’ );
function add_atts_to_summary() {
global $product;
wc_display_product_attributes( $product );
}I am doing because I do not have the hook for appending it to description. Is there anyway I can append context to the description tab. Is there any hook for this?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add content to WooCommerce Description’ is closed to new replies.