????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/dchs84reunion.com/wp-content/uploads/tg-demo-pack/ |
Upload File : |
<?php /** * Functions for configuring demo importer. * * @author ThemeGrill * @category Admin * @package Importer/Functions * @version 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Setup demo importer config. * * @param array $demo_config * * @return array */ function tg_demo_importer_config( $demo_config ) { $new_demo_config = array( 'himalayas-free' => array( 'name' => 'Himalayas', 'theme' => 'Himalayas', 'template' => 'himalayas', 'demo_url' => 'https://demo.themegrill.com/himalayas/', 'demo_pack' => true, 'core_options' => array( 'blogname' => 'Himalayas', 'page_on_front' => 'Front Page', 'page_for_posts' => 'Blog', ), 'widgets_data_update' => array( /** * Dropdown Pages - Handles widgets Page ID. * * 1. himalayas_about_us_widget * 2. himalayas_contact_widget */ 'dropdown_pages' => array( 'himalayas_about_us_widget' => array( 2 => array( 'page_id' => 'Want to try it?', ), ), 'himalayas_contact_widget' => array( 2 => array( 'page_id' => 'Contact Us Now', ), ), ), ), 'customizer_data_update' => array( 'pages' => array( 'himalayas_slide1' => 'Best Clean Parallax Theme', 'himalayas_slide2' => 'Himalayas Welcome You', ), 'nav_menu_locations' => array( 'primary' => 'Main Menu', 'footer' => 'Social Menu', ), ), 'plugins_list' => array( 'everest-forms' => array( 'name' => 'Everest Forms – Easy Contact Form and Form Builder', 'slug' => 'everest-forms/everest-forms.php', 'required' => true, ), ), ), ); return array_merge( $new_demo_config, $demo_config ); } add_filter( 'themegrill_demo_importer_config', 'tg_demo_importer_config' );