This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.

Tagged: 

Jump Start 2.1 – Disable Animation?

  • Creator
    Topic
  • #25962
    dsammond
    Participant

    Hello Jason,

    I’ve been using your theme exclusively these days. Thanks for the update! One question – Is there a way to disable the content element animation that comes with 2.1 through the dashboard, or does it need to be done by overriding the CSS?

    Thank you,

    Doug

Viewing 2 replies - 1 through 2 (of 2 total)
  • Author
    Replies
  • #25963
    Jason Bobich
    Keymaster

    Hi Doug,

    Thanks, glad to hear that!

    There’s actually no option to disable this, but you can do it through your child theme’s functions.php by filtering the global config. This should do the trick:

    function my_global_config( $setup ) {
        $setup['display']['scroll_effects'] = false;
        return $setup;
    }
    add_filter('themeblvd_global_config', 'my_global_config');

    If you’re curious, here’s more info on the concept of filtering the global configuration, in general:

    http://dev.themeblvd.com/tutorial/managing-framework-features/

    #25964
    dsammond
    Participant

    Perfect.

    Thanks for the help.

    Doug

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.