New Blog Templates and NextGen Gallery

I have the new blog templates plugin up and working well. However, when I try to upload images using NextGen Gallery, the images do not show up. I checked where exactly they are being uploaded to and they’re being uploaded to the Gallery path of the original blog template site instead of the new site.

  • Aaron
    • Ex Staff

    There is a filter you can use to exclude specific blog options. Use it like so in your own network plugin:

    /**
    * Exclude Gravity Forms option
    **/
    function blog_template_exclude_gravity_forms( $and ) {
    $and .= " AND option_name != 'rg_forms_version'";
    return $and;
    }
    add_filter( 'blog_template_exclude_settings', 'blog_template_exclude_gravity_forms' );