This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add prefix to Search & Filter Option Labels | |
function filter_input_object($input_object, $sfid) { | |
//* Exclude all non-targeted fields | |
if(($input_object['name']!='_sft_field_name')) { | |
return $input_object; | |
} | |
//* Exclude fields without options | |
if(!isset($input_object['options'])) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function filter_input_object($input_object, $sfid) | |
{ | |
//ensure we are only filtering the correct field name - in this case the field we want to filter has the name `_sfm_colours` | |
//we also want to make sure its a `select` input type we're filtering | |
if(($input_object['name']!='_sfm_colours')||($input_object['type']!='select')) | |
{ | |
return $input_object; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Update Allowed Blocks in Newsletter Glue | |
function add_custom_allowed_blocks( $blocks ) { | |
// Add your custom block to the array | |
$blocks[] = 'acf/my-block'; // Change to your block's actual name. Use hyphens instead of underscores. | |
return $blocks; // Return modified array | |
} | |
add_filter( 'newsletterglue_allowed_block_list', 'add_custom_allowed_blocks', 10 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Edit the address and name below | |
add_filter( 'wp_mail_from', function ( $original_email_address ) { | |
return '[email protected]'; | |
} ); | |
// Change the From name. | |
add_filter( 'wp_mail_from_name', function ( $original_email_from ) { | |
return 'Your Name'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?p | |
// Disable WordPress Core Update Notifications | |
add_filter( 'auto_core_update_send_email', 'tme_stop_auto_update_emails', 10, 4 ); | |
function tme_stop_update_emails( $send, $type, $core_update, $result ) { | |
if ( ! empty( $type ) && $type == 'success' ) { | |
return false; | |
} | |
return true; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
did:3:kjzl6cwe1jw149pq10l6kbqttbfbwnhv8ehlots9lyldw2a54ztg6kmlrfknurz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Stop Recording IP Address with WordPress Comments | |
function dm_remove_comments_ip( $comment_author_ip ) { | |
return ''; | |
} | |
add_filter( 'pre_comment_user_ip', 'dm_remove_comments_ip' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* LearnDash filter to prevent converting answer values to lowercase | |
* | |
* @possibly use ld_adv_quiz_pro_ajax() | |
* @uses stripslashes( strtolower( trim( $userResponse ) ) ) Default | |
* @since 1.0 | |
* @from WpProQuiz_View_FrontQuiz.php | |
* post_type=sfwd-quiz | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Remove Posts from Dashboard Sidebar | |
function m3_post_remove () { | |
remove_menu_page('edit.php'); | |
} | |
add_action('admin_menu', 'm3_post_remove'); //adding action for triggering function call | |
// Remove Posts from Admin Menu | |
function m3_remove_wp_nodes() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Safely Remove CPT slugs from your CPT permalinks. | |
// Note: Replace CPT_NAME with your CPT name. | |
/** | |
* Remove the slug from published post permalinks. Only affect our custom post type, though. | |
*/ | |
function m3_remove_cpt_slug( $post_link, $post ) { | |
if ( 'CPT_NAME' === $post->post_type && 'publish' === $post->post_status ) { |
NewerOlder