php - Display custom attributes before WooCommerce upsells ( linked products) -
i manage display custom attributes shown after linked products how can make them appear before? on left: have, right desired result thanks if woocommerce template content-single-product.php see that: /** * woocommerce_after_single_product_summary hook. * * @hooked woocommerce_output_product_data_tabs - 10 * @hooked woocommerce_upsell_display - 15 * @hooked woocommerce_output_related_products - 20 */ do_action( 'woocommerce_after_single_product_summary' ); that means in woocommerce_after_single_product_summary hook, following displayed: first (with priority of 10) product tabs, then (with priority of 15) upsells, and finish (with priority of 20) related products. so if want display custom code between product tabs , upsells, need use custom function hooked in woocommerce_after_single_product_summary action hook priority between 11 14. you can way: add_action('woocommerce_after_single_product_summary', 'custom_code_after_single...