php - WooCommerce single product content restructure -
php - WooCommerce single product content restructure -
i using woocommerce 2.1x. want reposition of woocommerce tabs in product detail.
i made kid templates. cannot find place alter pattern of items within content-single-product.php
i want display tab after image, before product summary part. how do that?
remove default woocommerce add_action
tabs :
remove_action( 'woocommerce_after_single_product_summary',woocommerce_output_product_data_tabs', 10 );
now add together new add_action
hook in tabs want. in case want appear before summary part , after image, add together :
add_action( 'woocommerce_before_single_product_summary','woocommerce_output_product_data_tabs', 30 );
see have added priority of 30
product images hooked @ priority 20
, want tabs appear after product images.
you should consider reply provided -aibrean help in future.
php wordpress woocommerce
Comments
Post a Comment