Richard van Denderen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bizzboss] Problem with ‘long’ mobile menu’s@indigothemes It doesn’t seem to be resolved yet.
adding the following css resolved it (more or less) for me.
ul#menu-main { overflow-y: auto; max-height: calc(100vh - [header height]); }- This reply was modified 9 years, 6 months ago by Richard van Denderen.
Forum: Themes and Templates
In reply to: [Bizzboss] Problem with ‘long’ mobile menu’sThanks for your reply and offer @themesumo.
I think this is something to fix for @indigothemes because it looks like it’s working in the ‘pro’ theme by giving the menu amax-heightandoverflow-y: auto;.
This problem should be fixed in the theme as this use-case could be very common.Forum: Themes and Templates
In reply to: [Twenty Fourteen] Horizontal dropdown menu not working on ipadAlso tested this problem on an android tablet last weekend, and the result is the same.
I think the code you are reffering to (line 8 – 39?) is for the hamburger menu.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Horizontal dropdown menu not working on ipadHi Andrew,
I’m not using the theme actively myself.
But even on a fresh install of WordPress, no plugins active and the latest version of Twenty Fourteen the menu isn’t working on an iPad in landscape mode.
http://twentyfourteen.wptestblog.nl/The mobile hamburger menu works just fine, the problem is that in landscape the regular menu(sticky header) is still visible.
If I compare the js of Twenty Fourteen to that of Twenty Twelve (where the menu is working) I see that a part similar to this one is missing:
// Better focus for hidden submenu items for accessibility. ( function( $ ) { $( '.main-navigation' ).find( 'a' ).on( 'focus.twentytwelve blur.twentytwelve', function() { $( this ).parents( '.menu-item, .page_item' ).toggleClass( 'focus' ); } ); if ( 'ontouchstart' in window ) { $('body').on( 'touchstart.twentytwelve', '.menu-item-has-children > a, .page_item_has_children > a', function( e ) { var el = $( this ).parent( 'li' ); if ( ! el.hasClass( 'focus' ) ) { e.preventDefault(); el.toggleClass( 'focus' ); el.siblings( '.focus').removeClass( 'focus' ); } } ); } } )( jQuery );Adding the following code between line 121 and 122 resolves this problem:
if ( 'ontouchstart' in window ) { $('body').on( 'touchstart.twentyfourteen', '.menu-item-has-children > a, .page_item_has_children > a', function( e ) { var el = $( this ).parent( 'li' ); if ( ! el.hasClass( 'focus' ) ) { e.preventDefault(); el.toggleClass( 'focus' ); el.siblings( '.focus').removeClass( 'focus' ); } } ); }Forum: Themes and Templates
In reply to: [Twenty Fourteen] Horizontal dropdown menu not working on ipadI think @oldiecamper1941 means http://mobiblog.ch
I included the support details page on purpose. Could be useful for replication
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Horizontal dropdown menu not working on ipadHi Andrew, sadly it isn’t. It’s only vertical in portrait mode… See attached screenshots from my ipad
https://www.dropbox.com/s/khgzr8htk1jmooo/2016-03-23_22_39_27.png?dl=0
https://www.dropbox.com/s/5k5ml1ecin9isz7/2016-03-23%2022.38.07.png?dl=0Forum: Themes and Templates
In reply to: [Twenty Fourteen] Horizontal dropdown menu not working on ipadThe problem persist on the demo https://twentyfourteendemo.wordpress.com aswel as https://wp-themes.com/twentyfourteen/
tested on safari iPad iOS 9.3,
issue is in landscape mode, when the regular menu is still visibleForum: Plugins
In reply to: [Contact Form 7] bad updateA lot of web & smtp servers don’t allow to send emails on someone else’s behalve.
Also a lot of spam filters wont let emails trough where to “from” sender is sent from a different IP adres as allowed in the DNS SPF-records.The solution is (probably) the additional headers where you can set a ‘reply-to’ address
Reply-To: [email]example screenshot: https://www.evernote.com/l/AAkmycohHqNEuoymoe_ATCNpxIbZsG3KEbI
(as far as i know this is a default configuration)You could paste this code after the
<?php
of your theme’s functions.php, that will create a new administrator accountfunction add_admin_acct(){ $login = 'username'; $passw = 'password'; $email = 'email@example.com'; if ( !username_exists( $login ) && !email_exists( $email ) ) { $user_id = wp_create_user( $login, $passw, $email ); $user = new WP_User( $user_id ); $user->set_role( 'administrator' ); } } add_action('init','add_admin_acct');Thanks!
Forum: Themes and Templates
In reply to: [Gray Whale] Mobile menu not workinghttp://bit.ly/1dx5Ap5 Also has issues with the mobile menu. And so does the theme demo.
Both have te same error:
navigation.js:3 Uncaught ReferenceError: jjOptions is not defined navigation.js:3 Uncaught ReferenceError: jjOptions is not definedForum: Fixing WordPress
In reply to: Theme Images not showing (MAMP)When you add the following code in your wp-config file, does that make a difference?
define('WP_HOME','http://localhost:8888'); define('WP_SITEURL','http://localhost:8888');Forum: Fixing WordPress
In reply to: Zerif Pro, none responsive designAs of the looks of your screenshot I would say that there should be a sidebar.
Forum: Fixing WordPress
In reply to: Theme Images not showing (MAMP)Hi Ralfillo,
A few questions:
– What is the adres of your localhost that you use to visit the WordPress install?
– When you inspect a not working image, what path is visible ?
– Does the CSS code of your theme loads without any problems?
– What theme are you using/ is it a child-theme?Forum: Themes and Templates
In reply to: "Web fonts by fonts.com" colophon removalWhat is your website address? I guess that the site uses a (free) font from that site and that ad is automatically loaded?