As businesses, we’re here to serve all our customers. But are you truly serving everyone if your website is not accessible to those with disabilities? Website accessibility remediation, the process of making your website accessible to all users, begins with a clear...
// Allow scaling to improve accessibility
function remove_my_action() {
remove_action('wp_head', 'et_add_viewport_meta');
}
function custom_et_add_viewport_meta(){
echo '';
}
add_action( 'init', 'remove_my_action');
add_action( 'wp_head', 'custom_et_add_viewport_meta' );