get_stylesheet_directory().'/includes/demo-free/content.xml', //xml file path or false to disable 'widget' => get_stylesheet_directory().'/includes/demo-free/widgets.wie', //wie file path or false to disable 'home' => 'Home (Free)', //Name or false to disable 'blog' => 'Blog', //Name or false to disable 'menus' => array(/*array or false to disable*/ array('title' => 'Primary Free', 'location' => 'header_menu'), ), 'revolution_sliders' => false, //array or false to disable 'plugins' => array(/*array or false to disable*/ 'contact-form-7/wp-contact-form-7.php', 'elementor/elementor.php', ), 'demo_url' => esc_url('http://tallythemes.com/preview/bookkeeping-wordpress-theme-preview'), //Extranal Demo URL 'demo_image' => esc_url(get_stylesheet_directory().'/screenshot.png'), //Extranal Demo image URL 'doc_url' => esc_url('http://tallythemes.com/doc-item/bookkeeping-wordpress-theme-documentation/'), //Documentation URL ); } } add_filter('tallythemesetup_demo_data', 'BookKeeping_demo_data'); if(!function_exists('BookKeeping_tgm_plugins')){ function BookKeeping_tgm_plugins($plugins){ $plugins = array(); //FREE $plugins[] = array( 'name' => 'Contact Form 7', 'slug' => 'contact-form-7', 'required' => false, ); $plugins[] = array( 'name' => 'WC Responsive Video', 'slug' => 'wc-responsive-video', 'required' => false, ); $plugins[] = array( 'name' => 'Tally Theme Setup', 'slug' => 'tally-theme-setup', 'required' => false, ); $plugins[] = array( 'name' => 'Elementor', 'slug' => 'elementor', 'required' => false, ); return $plugins; } } add_filter('steed_tgm_plugins', 'BookKeeping_tgm_plugins');