Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Created September 4, 2015 06:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save SiR-DanieL/d44739bf61827aaf3a3d to your computer and use it in GitHub Desktop.
Save SiR-DanieL/d44739bf61827aaf3a3d to your computer and use it in GitHub Desktop.
Show hidden products on the OPC page.
add_filter( 'wcopc_products_query_args', 'wc_opc_show_hidden_products' );
function wc_opc_show_hidden_products( $args ) {
if ( isset( $args['meta_query'] ) ) {
array_push( $args['meta_query'][0]['value'], 'hidden' );
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment