Forum Replies Created
-
AuthorPosts
-
August 17, 2020 at 8:23 am in reply to: Responsive/mobile menu not working after WP 5.5 update (infinity) #500627
bushrang
ParticipantWow! Great. Thanks for the quick reply @betsie. Just tested it and it's working like a charm.
For all the Showcase Pro users out there:
Showcase Pro has no file called front-page.js. What you are looking for is the global.js.In global.js find the line:
$( 'div[class^="front-page-"] a[href*=#]:not([href=#])' ).click(function() {
and replace it with:
$( 'div[class^="front-page-"] a[href*="#"]:not([href="#"])' ).click(function() {
Clear the cache if you have a caching plugin running and enjoy!
August 17, 2020 at 6:58 am in reply to: Responsive/mobile menu not working after WP 5.5 update (infinity) #500615bushrang
ParticipantI can confirm that. The latest WordPress version seems to remove jquery migrate, which is actually very good.
But apparently some Genesis themes need jquery migrate to display the mobile menu. At least that's how it is with the Showcase Pro theme.
Since other themes have this problem as well, it would be great if there was a workaround for it. At best a solution that works without the manual insertion of jquery migrate.
bushrang
ParticipantI've tested a few things more. The h1 tag has a class “archive-title“. This class is not part of the page_blog.php in my child theme.
Instead the title comes from archive.php of the Genesis main theme. Of course it wouldn't be wise to edit this file. Just tested it by removing the line from archive.php and the title disappeared.
My next attempt was to remove it with
remove_action( 'genesis_archive_title_descriptions', 'genesis_do_archive_headings_headline', 10);
Didn't work as well. Any help is appreciated. This title thing is driving me mad.
bushrang
ParticipantHi braddalton,
thanks for the fast reply. Glad to see that one of the top devs is by my side 😉
Unfortunately it didn't work. Removed this line and the title is still there.
Any other ideas? 🙁
-
AuthorPosts