contao-themes-net / odd-theme-bundle

odd theme bundle for contao cms
https://contao-themes.net/theme-detail/odd.html
Other
4 stars 2 forks source link

Disable Headroom.js #9

Closed mr2017x closed 4 years ago

mr2017x commented 4 years ago

Hi,

how can i manipulate headroom.js from disabling top-navigationbar?

if i just // comment out the headroom.js in templates it destroys sliders icons and so on.

Thanks in advance

seibtph commented 4 years ago

If you install the theme version 1.4.3 than you can disable the headroom.js in the fe_bootstrap_odd template.

<script charset="utf-8" src="<?php
    // add javascripts
    $combiner = new Combiner();
    $combiner->add('bundles/pdirthemeodd/bootstrap/dist/js/bootstrap.min.js');
    $combiner->add('bundles/pdirthemeodd/fontawesome/js/all.min.js');
    //$combiner->add('bundles/pdirthemeodd/js/headroom.min.js');
    $combiner->add('bundles/pdirthemeodd/js/scripts.min.js');
    echo $combiner->getCombinedFile();
?>"></script>