By Jannik L. on Friday, 29 August 2014
Posted in General
Likes 0
Views 716
Votes 0
Where to post Wanderers related discussions that aren't bugs nor suggestions?
Hey guys. I have been working on tweaking Wanderers, and I have come very far with getting it to work the way I want it to. Now I have some questions about how to achieve certain tweaks. I do not want to clutter the Wanderers forum with these types of questions, as I understand that is reserved to bugs and suggestions. Not custom stuff that doesn't pertain to the rest of the wanderers users.

So I apologize if this is posted in the wrong place, please direct me as to where to post these type of inquires in the future to avoid causing clutter or confusion.
---------------------------
How to remove/disable the JavaScript animation in Wanderers that moves module position 1 into the "hidden menu drawer/slide in menu"?
The question I want to ask is how do I disable the JS animation that makes the module position 1 (the menu) disappear into a toggle tray in responsive. I am using a thirdparty mega menu module, and I dont want it to go into that drawer/tray/hidden menu in responsive mode.

If you look at the site statusselect.com you will see how the menu dissapears the moment I resize the window down. I was able to hide the toggle button with display:none; css override, but I don't know how to disable the actual script that makes it happen.

If I can make the JS that animates the menu/dissapears the menu not load, it will help me greatly. A. because the thirdparty menu module I use will stay in place.... and B. because that JS animation conflicts with CometChat's Hangouts theme (had to revert to the Facebook inspired theme)
Hello Jannik,

Most of the responsive stuffs are actually added in the less file located at /templates/wanderers/less/responsive.less . Not sure if this is what you are searching for?
·
Friday, 29 August 2014 14:23
·
0 Likes
·
0 Votes
·
0 Comments
·
I am specifically trying to stop Module position 1 to move over to the left (outside of view) when resizing the browser window down. I was hoping that I could comment out some lines, to stop it from loading that script
·
Friday, 29 August 2014 14:24
·
0 Likes
·
0 Votes
·
0 Comments
·
P.S. just to test, I tried deleting all the content in the less file you referred to. It did not do the trick. It still moves the Module position 1 over to the left... outside of field of view. If you visit statusselect.com and resize the window below the 768px you will notice how the menu suddenly flies out on the left side.

To my knowledge, that would be more than just css or less. It would be some type of JavaScript that is doing that? Or am I mistaken?
·
Friday, 29 August 2014 15:04
·
0 Likes
·
0 Votes
·
0 Comments
·
ah, I managed to get it to stay, surprisingly it was in the normal template.css file.
·
Friday, 29 August 2014 15:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jannik,

To disable the "hidden menu drawer/slide in menu" you can just go to this file :
yourjoomlafolder/templates/wanderers/scripts/theme.js

Find this Javascript code :

$(".toggle-r").click(function () {
$('body').toggleClass("slide-theme-helper");
});


comment out this code to disable the toggle function.

Hope this would help, please let us know if you need further assistance.
·
Friday, 29 August 2014 15:48
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post