Hello,
add_filter('wcfm_product_save_pending_redirect','after_wcfm_product_submit_redirect');
add_filter('wcfm_product_save_publish_redirect','after_wcfm_product_submit_redirect');
function after_wcfm_product_submit_redirect($redirect_to){
global $WCFM;
$wcfm_page = get_wcfm_page();
$redirect_to = wcfm_get_endpoint_url( 'wcfm-products', '', $wcfm_page );
return $redirect_to;
}
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Thanks.