greensplash
Forum Replies Created
-
Hi, We love this plugin too, but we have also noticed the same problem actually. ipad 1 & 2 are fine, but it’s on ipad 3 where the problem seems to rise.
The website(s) (more than one) display fine on the ipad 3, but the map is all scrambled. The position, width and height of the map are correct, but the it is just the map itself. We have the following meta tag in use to support the responsive build:
<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0″ />
but the plugin seems to ignore it? We have also tried adding:
function removeBGMPHead()
{
global $bgmp;
remove_action( ‘wp_head’, array( $bgmp, ‘outputHead’ ) );
}
add_action( ‘after_setup_theme’, ‘removeBGMPHead’ );to see if this was conflicting to ensure our meta tag is used.
Any other suggestions would be great to hear.
I have found a solution but it involves changing the plugin core code.
If anyone has a better solution I would be keen to hear.
To get it working I changed (class-metabox.php):
add_meta_box( ‘wpseo_meta’, __( ‘WordPress SEO by Yoast’, ‘wordpress-seo’ ), array( $this, ‘meta_box’ ), $posttype, ‘normal’, apply_filters( ‘wpseo_metabox_prio’, ‘low‘ ) );
I found this but it doesn’t seem to work 1.2.7:
add_action( ‘add_meta_boxes’, ‘change_prio’ );
function change_prio()
{
apply_filters( ‘wpseo_metabox_prio’, ‘low’ );
}