How do I disable the feature where when a user clicks a post in the grid on the homepage, it pops up as a lightbox, and does not direct to the post itself? Thank you.
1 Answers
You can disable the default popup to have the main menu always on the top.
Please open up the main.js file in themes/dw-fixel/assets/js folder, find the following code (around line 342):
if( ! isIE || ( isIE && parseInt( jQuery.browser.version ) > 8 ) ) {
and change it into this:
if( false ) {
Hope that helps!
Thank you. That feature was really causing our users issues.
Please login or Register to submit your answer