Home › Forums › WoodMart support forum › Parallax no working on tablet and mobile phone › Reply To: Parallax no working on tablet and mobile phone
November 8, 2018 at 3:24 pm
#88077
Artem Temos
Keymaster
You can enable it replacing this code in the file functions.js
and disable JS minification in Theme Settings -> Performance
parallax: function() {
if( $(window).width() <= 1024) return;
with this
parallax: function() {
But you will see that it will not work well on most mobile devices.