// Default templates location (can be overridden from theme or child theme)
$this->templates_dir = apply_filters( 'wp_idea_stream_templates_dir_path', trailingslashit( $this->plugin_dir . 'templates' ) );
States that you can overwrite the template dir.. But this is not true since this line is loaded on plugin init and thus long before functions.php in the theme folder..
In the source the following line
States that you can overwrite the template dir.. But this is not true since this line is loaded on plugin init and thus long before functions.php in the theme folder..