Osclass forums
Support forums => Themes => Bender => Topic started by: marius-ciclistu on July 14, 2017, 10:43:26 am
-
Hi. I've been thinking about this for a long time now, but now I got the solution.
When used on mobile, the filters in search page are hidden. If you click show filters they apear but the text remains show filters.
In order to change show filters to hide filters you must change in
oc-content/themes/bender/search.php
<div class="actions">
<a href="#" data-bclass-toggle="display-filters" class="resp-toogle show-filters-btn"><?php _e('Show filters','bender'); ?></a>
into this
<div class="actions">
<a href="#" data-bclass-toggle="display-filters" class="resp-toogle show-filters-btn"
id="filters_btn" onclick='var str = document.getElementById("filters_btn").innerHTML;
if(str.indexOf("Show")>=0)
var txt = str.replace("Show","Hide");
else txt = str.replace("Hide","Show");
document.getElementById("filters_btn").innerHTML = txt;' >Show filters</a>
NOTE. After an Update this modification must be redone.
-
A similar solution can be applied to the 'Display' menu button in user-sidebar.php
-
A similar solution can be applied to the 'Display' menu button in user-sidebar.php
Thank you Marius for your solution!
question for you:
1. what is "Display menu" exactly? i couldn't find it in user-sidebar.php. please explain about this more.
Thanks
-
1 the menu with alerts, items, delete account etc fom user dashboard.
2. Via css or js. You must find the media query in css that hides that part on mobile (or js).
I don't know exactly where.
-
thank you
-
Look at the id of that section and seek it in whole osclass. I'm on mobile now.
-
Look at the id of that section and seek it in whole osclass. I'm on mobile now.
thank you marius