Hello,
The following PHP snippet will move the Order step into the second position:
if ( ! function_exists( 'wmsc_review_step_second' ) ) {
function wmsc_review_step_second( $steps ) {
$steps['review']['position'] = 5;
return $steps;
}
}
add_filter( 'wpmc_modify_steps', 'wmsc_review_step_second' );
You can add the PHP snippet to your child theme’s functions.php file or, alternatively, you can use a plugin similar to Code Snippets with the same effect.
Thread Starter
odamli
(@odamli)
Hi Diana,
Thank you it worked.
Is there a way to validate the fields during each step without going pro?
Since this is the only feature that I need in pro version.
Regards
I”m afraid the validation works only with the plugin’s pro version.