Hello there,
hope you are doing well! ??
Please, add the following custom code in the functions.php of your active theme:
remove_filter ( 'woocommerce_product_tabs', array( YITH_WooCommerce_Question_Answer::get_instance(), 'show_question_answer_tab' ), 20 );
if (class_exists('YITH_WooCommerce_Question_Answer')){
if (!function_exists('yith_ywqa_show_questions_and_answer')){
function yith_ywqa_show_questions_and_answer(){
$instance = YITH_WooCommerce_Question_Answer::get_instance();
$instance->show_question_answer_template();
}
add_action ( 'woocommerce_after_single_product_summary', 'yith_ywqa_show_questions_and_answer' );
}
}
I have added it into ‘woocommerce_after_single_product_summary’ action.
Check it and let us know, please.
Have a nice day!
-
This reply was modified 5 years, 6 months ago by YITHEMES.