You need to create a folder named woocommerce inside the themes folder and copy the contents of the woocommere plugin templates folder to the themes folder. This way you can overwrite the default content.
After completing the above, find the single product file in the woocommerce folder in the themes folder. You will see many hooks and do_action s. Do not panic. It is just calling files from the single-product folder inside the woocommerce folder. In this folder, the files are beautifully titled and grouped, and you will find out that one file is responsible for this, just by seeing the file header. For example, price.php to display the price, product-attributes.php for product attributes (in case the product is a variable).
Play with these files. If you need original ones, you will find them again in the woocommerce plugins folder.
EDIT
look in content-single-product.php between line 40-60:
<div class="summary entry-summary"> <?php do_action( 'woocommerce_single_product_summary' ); ?> </div>
This do_action( 'woocommerce_single_product_summary' ); responsible for calling the above functions. the number next to the name is the order. The smaller the number, the higher the order. Assuming you want them all, but in a different order, you replace this section with the following:
<div class="summary entry-summary"> <?php </div>
maksbd19
source share