• Resolved dancho413

    (@dancho413)


    Hello and my admirations for the useful plugin.

    Is it possible to add an option to hide the Order Summary section? We have a custom summary visible on a separate block during the whole multistep process and this step is currently not useful to us in any way.

    Thank you in advance and best regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi

    This might help, paste the code in your theme function.php

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

    (@dancho413)

    Thanks. It works like a charm. Keep up the good work and best regards!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Order Summary section’ is closed to new replies.