add_filter( ‘charitable_default_donation_fields’, ‘charitable_change_default_donation_fields’, 10, 1); function charitable_change_default_donation_fields( $defaults ) { $defaults[’email’][‘donation_form’][‘label’] = ‘Please Provide Email’; return $defaults; }Continue reading
//v2.1 add_shortcode(‘visitor_datetime’, function() { static $instance = 0; $instance++; $id = ‘visitor_time_’ . $instance; return ‘ ‘; });Continue reading
// Copy the Shortcode in the Insertion box below and paste it wherever you want the copyright symbol + year to be displayed. // This will output © 2023 or the current year automatically. echo “© ” . date( ‘Y’…Continue reading
function remove_my_action() { remove_action(‘wp_head’, ‘et_add_viewport_meta’); } function dt_et_add_viewport_meta(){ echo ‘‘; } add_action( ‘init’, ‘remove_my_action’); add_action( ‘wp_head’, ‘dt_et_add_viewport_meta’ );Continue reading
add_action( ‘init’, function() { if ( ! current_user_can( ‘manage_options’ ) && ! is_admin() && ! is_login() ) { wp_die( ‘ Website Unavailable This version of the website is no longer active. The owner has moved the site to a new…Continue reading