Hello Guys,
On this site the mobile hamburger menu doesn’t show if there is a iframe in the page. I sent a page with a iframe and a picture of it on Iphone.
Greets!
Tim
I already deactivated all the plugins but nothing chance..
Hi!
Thank you for using Enfold.
How did you add the iframe? What’s the code? Please post it on pastebin.com. If it is from a third party plugin, please contact the plugin author for further help. Did you add any modifications in the child theme?
Regards,
Ismael
Hey!
Your mobile menu is set to display: none;
Use this code:
@media only screen and (max-width: 767px) {
.container #advanced_menu_toggle, #advanced_menu_hide {
display: block !important;
}}
Hope this helps!
Cheers!
Andy
Hi!
Please post the code in pastebin.com. What happens when you remove this line?
<script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js” type=”text/javascript”><script src=”//www.hypotheekbond.nl/javascript/original/f1_external.js” type=”text/javascript”>
then place this in functions.php:
add_action( 'wp_enqueue_scripts', 'ava_custom_enqueue_scripts' );
function ava_custom_enqueue_scripts() {
wp_register_script( 'f1-external', 'http://www.hypotheekbond.nl/javascript/original/f1_external.js');
wp_register_script( 'ajax-jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js');
wp_enqueue_script( 'f1-external', 'http://www.hypotheekbond.nl/javascript/original/f1_external.js', array('jquery'), '1.0.0', true );
wp_enqueue_script( 'ajax-jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js', array('jquery'), '1.0.0', true );
}
Best regards,
Ismael