Actually, woocommerce_get_template()
is replaced by wc_get_template()
. I resolved this by adding this to functions.php.
add_action( 'woocommerce_after_single_product_summary', 'removing_product_tabs', 2 );
function removing_product_tabs(){
remove_action('woocommerce_after_single_product_summary','woocommerce_output_product_data_tabs', 10 );
add_action('woocommerce_after_single_product_summary','get_product_tab_templates_displayed', 10 );
}
function get_product_tab_templates_displayed() {
wc_get_template( 'single-product/tabs/description.php' );
wc_get_template( 'single-product/tabs/additional-information.php' );
comments_template();
}