I have solved for now
in file includes/faq-woocommerce-public.php i have changed the last line of this function and added the third param with false
function ffw_new_product_tab_content() {
global $product;
$id = $product->get_id();
//get layout
$options = get_option( ‘ffw_general_settings’ );
$layout = isset( $options[‘ffw_layout’] ) ? (int) $options[‘ffw_layout’] : 1;
echo ffw_get_template($layout, $id, false);
}