Title: Hide Order Summary section
Last modified: August 27, 2020

---

# Hide Order Summary section

 *  Resolved [dancho413](https://wordpress.org/support/users/dancho413/)
 * (@dancho413)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/hide-order-summary-section/)
 * 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)

 *  [odamli](https://wordpress.org/support/users/odamli/)
 * (@odamli)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/hide-order-summary-section/#post-13325842)
 * 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](https://wordpress.org/support/users/dancho413/)
 * (@dancho413)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/hide-order-summary-section/#post-13326731)
 * 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.

 * ![](https://ps.w.org/wp-multi-step-checkout/assets/icon.svg?rev=1783907)
 * [Multi-Step Checkout for WooCommerce](https://wordpress.org/plugins/wp-multi-step-checkout/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-multi-step-checkout/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-multi-step-checkout/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-multi-step-checkout/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-multi-step-checkout/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-multi-step-checkout/reviews/)

## Tags

 * [hide](https://wordpress.org/support/topic-tag/hide/)
 * [order summary](https://wordpress.org/support/topic-tag/order-summary/)

 * 2 replies
 * 2 participants
 * Last reply from: [dancho413](https://wordpress.org/support/users/dancho413/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/hide-order-summary-section/#post-13326731)
 * Status: resolved