Created
September 25, 2017 15:05
-
-
Save Garconis/34b6be24ee644c024663ef1d2e11e2bb to your computer and use it in GitHub Desktop.
Divi | Add pinch and zoom (user scalable) to mobile viewport meta
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 | |
// Removes et_add_viewport_meta from the wp_head phase | |
function remove_divi_actions() { | |
remove_action( 'wp_head', 'et_add_viewport_meta' ); | |
} | |
// Call 'remove_divi_actions' during WP initialization | |
add_action('init','remove_divi_actions'); | |
// add ability to pinch and zoom | |
function et_new_viewport_meta(){ | |
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=1" />'; | |
} | |
add_action( 'wp_head', 'et_new_viewport_meta', 15 ); |
Glinkfr
commented
Sep 8, 2023
Hello, i'm using Divi Extra, after put the code on functions.php, i found two metas on code:
and
Any suggestions ?
Use this : https://gist.github.com/Glinkfr/b120cdf4a715846342b616abe4fe7a19
Perfect! tks :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment