Home › Forums › WoodMart support forum › Mobile bottom navbar not showing
Mobile bottom navbar not showing
- This topic has 16 replies, 2 voices, and was last updated 1 month ago by
Artem Temos.
-
AuthorPosts
-
January 21, 2025 at 12:45 pm #631444
Milos SpasicParticipantHello,
We have a problem with the Woodmart theme, Mobile bottom navbar is not showing even it is turned on to be shown in theme settings.
I really appreciate any help you can provide.
Regards
Attachments:
You must be logged in to view attached files.January 21, 2025 at 1:02 pm #631447
Artem TemosKeymasterHello,
Thank you so much for purchasing our theme and contacting our support center.
Please disable al plugins that aren’t related to our theme temporarily and switch to the parent theme so we can investigate this issue.
Kind Regards
XTemos StudioJanuary 21, 2025 at 1:09 pm #631452
Milos SpasicParticipantWill all settings in the child theme remain if we temporarily switch to the parent theme and switch back to the child theme?
January 21, 2025 at 1:30 pm #631468
Artem TemosKeymasterThe only problem that may occur when you switch between themes in Appearance -> Themes is that widgets may lose their positions. It is a WordPress behavior and we are not able to fix this in our theme scope. Now, you need to go to Appearance -> Widgets and move all widgets to appropriate positions.
As a workaround, you can backup your widgets configurations using this plugin https://wordpress.org/plugins/widget-importer-exporter/Regards
January 21, 2025 at 2:43 pm #631525
Milos SpasicParticipantWe have disabled al the plugins that aren’t related to Woodmart theme and switched to the parent theme.
Mobile bottom navbar is now showing. But that does not solve our issue.
January 21, 2025 at 3:19 pm #631542
Milos SpasicParticipantWe have switched back to the child theme and activated all the plugins and Mobile bottom navbar is showing.
Our conclusion is that the theme has some bug with the settings it saves in the database, so those settings were reset when changing the theme.
Do you have some any explanation for this?
January 21, 2025 at 5:58 pm #631612
Artem TemosKeymasterIt can’t be caused by the fact that you switch the theme from child to parent. Most likely, you had some cache on your website which cleared when you disabled and enabled plugins.
January 21, 2025 at 6:00 pm #631613
Milos SpasicParticipantBut that is a dev site, we do not use any caching plugin on that site.
January 21, 2025 at 6:29 pm #631626
Artem TemosKeymasterMaybe you had some PHP error on your website but we can’t say exactly since it works correctly at the moment.
January 22, 2025 at 11:44 am #631747
Milos SpasicParticipantThe issue is back again, take a look at PHP Fatal error that is showing up in error log ⬇️
January 22, 2025 at 11:54 am #631750
Artem TemosKeymasterPlease keep all plugins temporarily turned off.
January 22, 2025 at 12:16 pm #631756
Milos SpasicParticipantAll plugins that aren’t related to Woodmart theme disabled at the moment.
The issue is still present.January 22, 2025 at 1:53 pm #631797
Artem TemosKeymasterTry to add the following PHP code snippet to the child theme functions.php file to fix this
add_filter( 'aioseo_sitemap_exclude_posts', function ($ids, $type) { $query = new WP_Query( [ 'post_type' => 'woodamrt_layout', 'post_status' => 'publish', 'fields' => 'ids', 'posts_per_page' => -1 ] ); if ( $query->have_posts() ) { $ids = array_merge( $ids, $query->posts ); } return $ids; }, 10, 2 );
January 22, 2025 at 2:16 pm #631805
Milos SpasicParticipantDone as suggested, it didn’t help.
Also, AIOSEO is deactivated, PHP Fatal error is still showing up and Mobile bottom navbar is not showing .
January 22, 2025 at 3:20 pm #631852
Artem TemosKeymasterYou need to disable the following option to fix the navbar issue https://monosnap.com/file/BHRu8j5r59wMAWBElPU2Cmv9nrcwEd
And we don’t see fatal errors on your website at the moment.January 22, 2025 at 4:11 pm #631863
Milos SpasicParticipantWe have disabled the suggested option.
Mobile bottom navbar is now showing, but PHP Fatal error is back.
January 22, 2025 at 7:58 pm #631963
Artem TemosKeymasterAs we can see, the code is commented now https://gyazo.com/71506f952037f76654929d3362d15139
Could you please uncomment it and test how it works? If the error still appears, send us your FTP access. -
AuthorPosts
- You must be logged in to create new topics. Login / Register