Home › Forums › WoodMart support forum › Separate Homepage for mobile
Separate Homepage for mobile
- This topic has 3 replies, 3 voices, and was last updated 5 years, 8 months ago by
Artem Temos.
-
AuthorPosts
-
September 9, 2019 at 1:29 pm #142775
saugatakoleyParticipantHello! I have been working on the my website. I was wondering if there is a way to have separate homepage for mobile because my desktop homepage is not quite smooth on the mobile.
That’s the first query.
2nd one is that the home page kind of hangs and all content aligns to the right while loading. (Check the video link in private content)
3rd – The revolution slider delays a lot while loading which is slowing down the overall speed of the page. Why is this happening? It’s a premium plugin and it shouldn’t work like this, right? Is there anything that can be done about it?
4th – if you could help me with a proper guideline for how to update the theme without messing any pages, custom css or anything on the site.Thanks!
September 9, 2019 at 3:21 pm #142793
Elise NoromitMemberHello,
There is no option to set one page for desktop and one for mobile in WordPress. At the same time, WP Bakery page builder suggests the option to show/hide the columns on different devices.
Here are the video tutorials: https://wpbakery.com/video-academy/control-elements-different-devices-responsive-column-controls/ and https://wpbakery.com/video-academy/responsive-column-control-width-offset-param-usage-explained/
2nd: In order to improve the site loading speed HTML structure load the first, then CSS loads. The elements are aligned for a second only, just disregard this.
3rd Unfortunately, our theme does not influence the loading speed of Slider Revolution. WoodMart suggests its own slider lighter, however, it does not have such a wide range of options as Slider Revolution has.
4th: Please follow the instructions provided here to update the theme without any problems: https://xtemos.com/docs/woodmart/update-theme-2/
Best Regards
September 9, 2019 at 4:19 pm #142801
saugatakoleyParticipantThanks for replying. The right side alignment doesn’t feel good. I mean the page takes up much more time than you can imagine on slower devices or devices with slow internet connectivity, whereas the page has not much content already. I think, this loading error is affecting the mobile smoothness as well. Other sites are not following the same issue. Kindly, fix it if possible. Would be of much help.
Thank you.September 10, 2019 at 6:43 am #142885
Artem TemosKeymasterTry to add the following PHP code snippet to the child theme functions.php file
function woodmart_move_device_js(){ wp_deregister_script( 'woodmart-device' ); wp_dequeue_script( 'woodmart-device' ); wp_enqueue_script( 'woodmart-device', woodmart_get_script_url( 'device' ), array( 'jquery' ), woodmart_get_theme_info( 'Version' ), false ); } add_action( 'wp_enqueue_scripts', 'woodmart_move_device_js', 10001 );
-
AuthorPosts
- You must be logged in to create new topics. Login / Register