• Resolved odamli

    (@odamli)


    Hi,
    Is there a possibility to swap Order and Shipping step?
    I would this step:
    1 – Login
    2 – orders
    3 – Billling
    4 – Shipping
    5 – Payment

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author SilkyPress

    (@diana_burduja)

    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

    Plugin Author SilkyPress

    (@diana_burduja)

    I”m afraid the validation works only with the plugin’s pro version.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Swap Billing – Order step’ is closed to new replies.