Skip to content

Instantly share code, notes, and snippets.

@NickGreen
Last active September 17, 2018 19:58
Show Gist options
  • Save NickGreen/aec047d4d45ed5c642d1178eee1293aa to your computer and use it in GitHub Desktop.
Save NickGreen/aec047d4d45ed5c642d1178eee1293aa to your computer and use it in GitHub Desktop.
Disable One Page Checkout messages
<?php
add_action( 'wp_head', 'opc_disable_messages' );
function opc_disable_messages(){
remove_action( 'wcopc_product_selection_fields_before', array( 'PP_One_Page_Checkout', 'opc_messages' ));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment