Set Template Path Join KC discussion

set_template_path() method is used to re-define the path of shortcodes' template. Three default paths in descending order of priority:
  1. The paths of set_template_path()
  2. /wp-content/themes/active_theme/kc_templates/
  3. /wp-content/plugins/KingComposer/shortcodes/

Instruction:

set_template_path( PATH ); ?>

Example:

set_template_path( get_template_directory().'/new_folder/' );
	$kc->set_template_path( plugin_dir_path( __FILE__ ).'/your_template_folder/' );
	// You can set multiple paths, the latest path will be the highest priority

}

?>