i have already used the code from the documentation, here is my code
if ( ! function_exists( ‘wmsc_Order_step_first’ ) ) {
function wmsc_Order_step_first( $steps ) {
$steps[‘Order’][‘position’] = 5;
return $steps;
}
}
add_filter( ‘wpmc_modify_steps’, ‘wmsc_Order_step_first’ );
but my first step will be nothing, and the order step still in the position like before? what’s wrong?