• Resolved delaitec

    (@delaitec)


    Hello,

    Thank you to make this great plugin.

    Is possible to remove the ORDER step from checkout?

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

    (@diana_burduja)

    Hello,

    that can be done by adding the following PHP snippet to your website:

    if ( ! function_exists( 'wmsc_delete_order_step' ) ) {
    function wmsc_delete_order_step( $steps ) {
    unset( $steps['review'] );
    return $steps;
    }
    }
    add_filter( 'wpmc_modify_steps', 'wmsc_delete_order_step' );

    The PHP snippet can be added to the child theme’s functions.php file, or it can be added with the help of a plugin similar to Code Snippet.

    Thread Starter delaitec

    (@delaitec)

    Thanks,

    Work, perfectly

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How remove the Order Step?’ is closed to new replies.