Gravity Forms Anchor only on Front Page?

I found the answer here: How to create a plugin that only operates on the home page?

I just had to wrap the filter in a function:

function gravity_forms() {
    if (is_front_page()) {
        add_filter("gform_confirmation_anchor", create_function("","return true;"));
    }
}
add_action('template_redirect', 'gravity_forms');

Thanks,
Josh