Skip to content

Instantly share code, notes, and snippets.

@igorbenic
Created March 12, 2020 12:16
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 igorbenic/1c425ccc242e0ff2f37450ff0a48b3fa to your computer and use it in GitHub Desktop.
Save igorbenic/1c425ccc242e0ff2f37450ff0a48b3fa to your computer and use it in GitHub Desktop.
Simple Sponsorships - Code Snippets
<?php
/**
* Remove Terms and Conditions Field
*/
add_filter( 'ss_form_sponsors_fields', 'ss_remove_terms_and_conditions' );
/**
* Filtering out the terms and conditions field
*
* @param array $fields Array of fields
*
* @return array
*/
function ss_remove_terms_and_conditions( $fields ) {
unset( $fields['sponsor_terms'] );
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment