Hi i am wondering how to change order on single page
<div class="column one-second product_image_wrapper">
<?php
/**
* woocommerce_before_single_product_summary hook
*
* @hooked woocommerce_show_product_sale_flash - 10
* @hooked woocommerce_show_product_images - 20
*/
do_action( 'woocommerce_before_single_product_summary' );
?>
</div>
<div class="column one-second summary entry-summary">
<?php
/**
* woocommerce_single_product_summary hook
*
* @hooked woocommerce_template_single_title - 5
* @hooked woocommerce_template_single_rating - 10
* @hooked woocommerce_template_single_price - 10
* @hooked woocommerce_template_single_excerpt - 20
* @hooked woocommerce_template_single_add_to_cart - 30
* @hooked woocommerce_template_single_meta - 40
* @hooked woocommerce_template_single_sharing - 50
*/
do_action( 'woocommerce_single_product_summary' );
?>
I dont like that all things are at right side of site in column 2
i would like to remove that hook but its not reacting on remove from function php
i want to set title to be alone and first than col 1 image description and reviews and to have static description.
where is that hook which is puled i cant find that :)
And i installed last theme update and my woocomerce templates are still out dated?