Yanıtlar:
Eğer bakarsanız woocommerce/templates/content-single-product.php
, ürün özetinin farklı önceliklere sahip kancalar kullanılarak oluşturulduğunu göreceksiniz.
İlgili bölüm:
<?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' );
?>
Fiyat 10, önceliğin 20 önceliği vardır. Bunları takas etmek için alt temanızdaki eylemleri değiştirerek öncelikleri değiştirin functions.php
.
Bunun gibi:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20 );