Reputation: 3
I would like to show a copy of the "Extra Informatie" / "Extra Information" Tab inside the short description. I know how to show the tab contents.. But what i do not know is how to extract only the information of this one tab.
Example:
Upvotes: 0
Views: 872
Reputation: 6650
Just copy the following code after the short description.
<?php
global $product;
$heading = apply_filters( 'woocommerce_product_additional_information_heading', __( 'Additional Information', 'woocommerce' ) );
?>
<?php if ( $heading ): ?>
<h2><?php echo $heading; ?></h2>
<?php endif; ?>
<?php $product->list_attributes(); ?>
Upvotes: 1