Skip to content

Instantly share code, notes, and snippets.

@digitalchild
Created November 17, 2016 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digitalchild/1706b569f9cc49703d9a890e4a1dd168 to your computer and use it in GitHub Desktop.
Save digitalchild/1706b569f9cc49703d9a890e4a1dd168 to your computer and use it in GitHub Desktop.
Hide a field
<?php
function custom_wcv_proxy_bidding( $args ) {
$args[ 'type' ] = 'hidden';
return $args ;
}
add_filter(‘wcv_simple_auctions_proxy_bidding’, ‘custom_wcv_proxy_bidding’ );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment