Acme Demo Setup - Version 2.0.1

Version Description

Download this release

Release Info

Developer acmethemes
Plugin Icon 128x128 Acme Demo Setup
Version 2.0.1
Comparing to
See all releases

Code changes from version 2.0.0 to 2.0.1

acme-demo-setup.php CHANGED
@@ -16,7 +16,7 @@ if ( ! defined( 'WPINC' ) ) {
16
  * Plugin Name: Acme Demo Setup
17
  * Plugin URI:
18
  * Description: Install Template Demo Library for Acme Themes
19
- * Version: 2.0.0
20
  * Author: acmethemes
21
  * Author URI: https://www.acmethemes.com/
22
  * License: GPL-2.0+
@@ -26,7 +26,7 @@ if ( ! defined( 'WPINC' ) ) {
26
  */
27
 
28
  /*Define Constants for this plugin*/
29
- define( 'ACME_DEMO_SETUP_VERSION', '2.0.0' );
30
  define( 'ACME_DEMO_SETUP_PLUGIN_NAME', 'acme-demo-setup' );
31
  define( 'ACME_DEMO_SETUP_PATH', plugin_dir_path( __FILE__ ) );
32
  define( 'ACME_DEMO_SETUP_URL', plugin_dir_url( __FILE__ ) );
16
  * Plugin Name: Acme Demo Setup
17
  * Plugin URI:
18
  * Description: Install Template Demo Library for Acme Themes
19
+ * Version: 2.0.1
20
  * Author: acmethemes
21
  * Author URI: https://www.acmethemes.com/
22
  * License: GPL-2.0+
26
  */
27
 
28
  /*Define Constants for this plugin*/
29
+ define( 'ACME_DEMO_SETUP_VERSION', '2.0.1' );
30
  define( 'ACME_DEMO_SETUP_PLUGIN_NAME', 'acme-demo-setup' );
31
  define( 'ACME_DEMO_SETUP_PATH', plugin_dir_path( __FILE__ ) );
32
  define( 'ACME_DEMO_SETUP_URL', plugin_dir_url( __FILE__ ) );
includes/api.php ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! defined( 'ABSPATH' ) ) {
3
+ exit;
4
+ }
5
+ if ( ! class_exists( 'Acme_Demo_Setup_Template_Library_Api' ) ) {
6
+ /**
7
+ * @package Acme Themes
8
+ * @subpackage Acme Demo Setup Template Library Api
9
+ * @since 2.0.1
10
+ *
11
+ * Call like this
12
+ * SITEURL/wp-json/acmethemes-demo-api/v1/fetch_templates/
13
+ *
14
+ */
15
+ class Acme_Demo_Setup_Template_Library_Api extends WP_Rest_Controller {
16
+
17
+ /**
18
+ * Rest route namespace.
19
+ *
20
+ * @var Acme_Demo_Setup_Template_Library_Api
21
+ */
22
+ public $namespace = 'acmethemes-demo-api/';
23
+
24
+ /**
25
+ * Rest route version.
26
+ *
27
+ * @var Acme_Demo_Setup_Template_Library_Api
28
+ */
29
+ public $version = 'v1';
30
+
31
+ /**
32
+ * Initialize the class
33
+ */
34
+ public function run() {
35
+ add_action( 'rest_api_init', array( $this, 'register_routes' ) );
36
+ }
37
+
38
+ /**
39
+ * Register REST API route
40
+ */
41
+ public function register_routes() {
42
+ $namespace = $this->namespace . $this->version;
43
+
44
+ register_rest_route(
45
+ $namespace,
46
+ '/fetch_templates',
47
+ array(
48
+ array(
49
+ 'methods' => \WP_REST_Server::READABLE,
50
+ 'callback' => array( $this, 'fetch_templates' ),
51
+ 'args' => array(
52
+ 'theme-slug' => array(
53
+ 'type' => 'string',
54
+ 'required' => true,
55
+ 'description' => __( 'Theme Slug', 'acme-demo-setup' ),
56
+ ),
57
+ ),
58
+ ),
59
+ )
60
+ );
61
+ }
62
+
63
+ /**
64
+ * Function to fetch templates.
65
+ *
66
+ * @return array|bool|\WP_Error
67
+ */
68
+ public function fetch_templates( \WP_REST_Request $request ) {
69
+ if ( ! $request->get_param( 'theme-slug' ) ) {
70
+ return false;
71
+ }
72
+ $theme_slug = $request->get_param( 'theme-slug' );
73
+
74
+ $templates = acme_demo_setup_get_templates_lists( $theme_slug );
75
+ return rest_ensure_response( $templates );
76
+ }
77
+
78
+ /**
79
+ * Gets an instance of this object.
80
+ * Prevents duplicate instances which avoid artefacts and improves performance.
81
+ *
82
+ * @static
83
+ * @access public
84
+ * @since 1.0.1
85
+ * @return object
86
+ */
87
+ public static function get_instance() {
88
+ // Store the instance locally to avoid private static replication
89
+ static $instance = null;
90
+
91
+ // Only run these methods if they haven't been ran previously
92
+ if ( null === $instance ) {
93
+ $instance = new self();
94
+ }
95
+
96
+ // Always return the instance
97
+ return $instance;
98
+ }
99
+
100
+ /**
101
+ * Throw error on object clone
102
+ *
103
+ * The whole idea of the singleton design pattern is that there is a single
104
+ * object therefore, we don't want the object to be cloned.
105
+ *
106
+ * @access public
107
+ * @since 1.0.0
108
+ * @return void
109
+ */
110
+ public function __clone() {
111
+ // Cloning instances of the class is forbidden.
112
+ _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin&#8217; huh?', 'acme-demo-setup' ), '1.0.0' );
113
+ }
114
+
115
+ /**
116
+ * Disable unserializing of the class
117
+ *
118
+ * @access public
119
+ * @since 1.0.0
120
+ * @return void
121
+ */
122
+ public function __wakeup() {
123
+ // Unserializing instances of the class is forbidden.
124
+ _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin&#8217; huh?', 'acme-demo-setup' ), '1.0.0' );
125
+ }
126
+ }
127
+
128
+ }
129
+ Acme_Demo_Setup_Template_Library_Api::get_instance()->run();
includes/functions.php CHANGED
@@ -14,4 +14,3209 @@ function acme_demo_setup_get_theme_screenshot(){
14
  function acme_demo_setup_get_theme_name(){
15
  $current_theme = wp_get_theme();
16
  return $current_theme->get('Name');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  }
14
  function acme_demo_setup_get_theme_name(){
15
  $current_theme = wp_get_theme();
16
  return $current_theme->get('Name');
17
+ }
18
+
19
+ function acme_demo_setup_get_templates_lists( $theme_slug ){
20
+ switch ($theme_slug):
21
+ case "acmeblog":
22
+ $demo_templates_lists = array(
23
+ 'demo-1' =>array(
24
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
25
+ 'is_premium' => false,/*Premium*/
26
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
27
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
28
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
29
+ 'categories' => array( 'blog' ),/*Categories*/
30
+ 'template_url' => array(
31
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
32
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
33
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
34
+ ),
35
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
36
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmeblog/',/*Demo Url*/
37
+ /**/
38
+ 'plugins' => array(
39
+ array(
40
+ 'name' => 'Gutentor',
41
+ 'slug' => 'gutentor',
42
+ ),
43
+ array(
44
+ 'name' => 'Acme Fix Images',
45
+ 'slug' => 'acme-fix-images',
46
+ ),
47
+ array(
48
+ 'name' => 'Contact Form 7',
49
+ 'slug' => 'contact-form-7',
50
+ 'main_file' => 'wp-contact-form-7.php',
51
+ ),
52
+ )
53
+ ),
54
+ );
55
+ break;
56
+ case "acmeblogpro":
57
+ $demo_templates_lists = array(
58
+ 'demo-1' =>array(
59
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
60
+ 'is_premium' => true,/*Premium*/
61
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
62
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
63
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
64
+ 'categories' => array( 'blog' ),/*Categories*/
65
+ 'template_url' => array(
66
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
67
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
68
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
69
+ ),
70
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
71
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmeblogpro/',/*Demo Url*/
72
+ /**/
73
+ 'plugins' => array(
74
+ array(
75
+ 'name' => 'Gutentor',
76
+ 'slug' => 'gutentor',
77
+ ),
78
+ array(
79
+ 'name' => 'Acme Fix Images',
80
+ 'slug' => 'acme-fix-images',
81
+ ),
82
+ array(
83
+ 'name' => 'Contact Form 7',
84
+ 'slug' => 'contact-form-7',
85
+ 'main_file' => 'wp-contact-form-7.php',
86
+ ),
87
+ )
88
+ ),
89
+ 'demo-2' =>array(
90
+ 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
91
+ 'is_premium' => true,/*Premium*/
92
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
93
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
94
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
95
+ 'categories' => array( 'blog' ),/*Categories*/
96
+ 'template_url' => array(
97
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
98
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
99
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
100
+ ),
101
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
102
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmeblogpro/home-1',/*Demo Url*/
103
+ /**/
104
+ 'plugins' => array(
105
+ array(
106
+ 'name' => 'Gutentor',
107
+ 'slug' => 'gutentor',
108
+ ),
109
+ array(
110
+ 'name' => 'Acme Fix Images',
111
+ 'slug' => 'acme-fix-images',
112
+ ),
113
+ array(
114
+ 'name' => 'Contact Form 7',
115
+ 'slug' => 'contact-form-7',
116
+ 'main_file' => 'wp-contact-form-7.php',
117
+ ),
118
+ )
119
+ ),
120
+ 'demo-3' =>array(
121
+ 'title' => __( 'Demo 3', 'acmeblog' ),/*Title*/
122
+ 'is_premium' => true,/*Premium*/
123
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
124
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
125
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
126
+ 'categories' => array( 'blog' ),/*Categories*/
127
+ 'template_url' => array(
128
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
129
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
130
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
131
+ ),
132
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
133
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmeblogpro/home-2',/*Demo Url*/
134
+ /**/
135
+ 'plugins' => array(
136
+ array(
137
+ 'name' => 'Gutentor',
138
+ 'slug' => 'gutentor',
139
+ ),
140
+ array(
141
+ 'name' => 'WooCommerce',
142
+ 'slug' => 'woocommerce'
143
+ ),
144
+ array(
145
+ 'name' => 'Acme Fix Images',
146
+ 'slug' => 'acme-fix-images',
147
+ ),
148
+ array(
149
+ 'name' => 'Contact Form 7',
150
+ 'slug' => 'contact-form-7',
151
+ 'main_file' => 'wp-contact-form-7.php',
152
+ ),
153
+ )
154
+ ),
155
+ 'demo-4' =>array(
156
+ 'title' => __( 'Demo 4', 'acmeblog' ),/*Title*/
157
+ 'is_premium' => true,/*Premium*/
158
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
159
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
160
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
161
+ 'categories' => array( 'blog' ),/*Categories*/
162
+ 'template_url' => array(
163
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
164
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
165
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
166
+ ),
167
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
168
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmeblogpro/home-3',/*Demo Url*/
169
+ /**/
170
+ 'plugins' => array(
171
+ array(
172
+ 'name' => 'Gutentor',
173
+ 'slug' => 'gutentor',
174
+ ),
175
+ array(
176
+ 'name' => 'Acme Fix Images',
177
+ 'slug' => 'acme-fix-images',
178
+ ),
179
+ array(
180
+ 'name' => 'Contact Form 7',
181
+ 'slug' => 'contact-form-7',
182
+ 'main_file' => 'wp-contact-form-7.php',
183
+ ),
184
+ )
185
+ ),
186
+ );
187
+ break;
188
+ case "supermag":
189
+ $demo_templates_lists = array(
190
+ 'demo-1' =>array(
191
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
192
+ 'is_premium' => false,/*Premium*/
193
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
194
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
195
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
196
+ 'categories' => array( 'magazine' ),/*Categories*/
197
+ 'template_url' => array(
198
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
199
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
200
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
201
+ ),
202
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
203
+ 'demo_url' => 'http://www.demo.acmethemes.com/supermag/',/*Demo Url*/
204
+ /**/
205
+ 'plugins' => array(
206
+ array(
207
+ 'name' => 'Gutentor',
208
+ 'slug' => 'gutentor',
209
+ ),
210
+ array(
211
+ 'name' => 'Acme Fix Images',
212
+ 'slug' => 'acme-fix-images',
213
+ ),
214
+ array(
215
+ 'name' => 'Contact Form 7',
216
+ 'slug' => 'contact-form-7',
217
+ 'main_file' => 'wp-contact-form-7.php',
218
+ ),
219
+ )
220
+ ),
221
+ 'demo-2' =>array(
222
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
223
+ 'is_premium' => false,/*Premium*/
224
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
225
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
226
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
227
+ 'categories' => array( 'magazine' ),/*Categories*/
228
+ 'template_url' => array(
229
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
230
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
231
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
232
+ ),
233
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
234
+ 'demo_url' => 'http://www.demo.acmethemes.com/supermag/home-1',/*Demo Url*/
235
+ /**/
236
+ 'plugins' => array(
237
+ array(
238
+ 'name' => 'Gutentor',
239
+ 'slug' => 'gutentor',
240
+ ),
241
+ array(
242
+ 'name' => 'Acme Fix Images',
243
+ 'slug' => 'acme-fix-images',
244
+ ),
245
+ array(
246
+ 'name' => 'Contact Form 7',
247
+ 'slug' => 'contact-form-7',
248
+ 'main_file' => 'wp-contact-form-7.php',
249
+ ),
250
+ )
251
+ ),
252
+ );
253
+ break;
254
+ case "supermagpro":
255
+ $demo_templates_lists = array(
256
+ 'demo-1' =>array(
257
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
258
+ 'is_premium' => true,/*Premium*/
259
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
260
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
261
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
262
+ 'categories' => array( 'magazine' ),/*Categories*/
263
+ 'template_url' => array(
264
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
265
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
266
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
267
+ ),
268
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
269
+ 'demo_url' => 'http://www.demo.acmethemes.com/supermagpro/',/*Demo Url*/
270
+ /**/
271
+ 'plugins' => array(
272
+ array(
273
+ 'name' => 'Gutentor',
274
+ 'slug' => 'gutentor',
275
+ ),
276
+ array(
277
+ 'name' => 'Acme Fix Images',
278
+ 'slug' => 'acme-fix-images',
279
+ ),
280
+ array(
281
+ 'name' => 'Contact Form 7',
282
+ 'slug' => 'contact-form-7',
283
+ 'main_file' => 'wp-contact-form-7.php',
284
+ ),
285
+ )
286
+ ),
287
+ 'demo-2' =>array(
288
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
289
+ 'is_premium' => true,/*Premium*/
290
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
291
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
292
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
293
+ 'categories' => array( 'magazine' ),/*Categories*/
294
+ 'template_url' => array(
295
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
296
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
297
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
298
+ ),
299
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
300
+ 'demo_url' => 'http://www.demo.acmethemes.com/supermagpro/home-1',/*Demo Url*/
301
+ /**/
302
+ 'plugins' => array(
303
+ array(
304
+ 'name' => 'Gutentor',
305
+ 'slug' => 'gutentor',
306
+ ),
307
+ array(
308
+ 'name' => 'Acme Fix Images',
309
+ 'slug' => 'acme-fix-images',
310
+ ),
311
+ array(
312
+ 'name' => 'Contact Form 7',
313
+ 'slug' => 'contact-form-7',
314
+ 'main_file' => 'wp-contact-form-7.php',
315
+ ),
316
+ )
317
+ ),
318
+ 'demo-3' =>array(
319
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
320
+ 'is_premium' => true,/*Premium*/
321
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
322
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
323
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
324
+ 'categories' => array( 'magazine' ),/*Categories*/
325
+ 'template_url' => array(
326
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
327
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
328
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
329
+ ),
330
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
331
+ 'demo_url' => 'http://www.demo.acmethemes.com/supermagpro/home-2',/*Demo Url*/
332
+ /**/
333
+ 'plugins' => array(
334
+ array(
335
+ 'name' => 'Gutentor',
336
+ 'slug' => 'gutentor',
337
+ ),
338
+ array(
339
+ 'name' => 'Acme Fix Images',
340
+ 'slug' => 'acme-fix-images',
341
+ ),
342
+ array(
343
+ 'name' => 'Contact Form 7',
344
+ 'slug' => 'contact-form-7',
345
+ 'main_file' => 'wp-contact-form-7.php',
346
+ ),
347
+ )
348
+ ),
349
+ 'demo-4' =>array(
350
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
351
+ 'is_premium' => true,/*Premium*/
352
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
353
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
354
+ 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
355
+ 'categories' => array( 'magazine' ),/*Categories*/
356
+ 'template_url' => array(
357
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
358
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
359
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
360
+ ),
361
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
362
+ 'demo_url' => 'http://www.demo.acmethemes.com/supermagpro/home-3',/*Demo Url*/
363
+ /**/
364
+ 'plugins' => array(
365
+ array(
366
+ 'name' => 'Gutentor',
367
+ 'slug' => 'gutentor',
368
+ ),
369
+ array(
370
+ 'name' => 'Acme Fix Images',
371
+ 'slug' => 'acme-fix-images',
372
+ ),
373
+ array(
374
+ 'name' => 'Contact Form 7',
375
+ 'slug' => 'contact-form-7',
376
+ 'main_file' => 'wp-contact-form-7.php',
377
+ ),
378
+ )
379
+ ),
380
+ );
381
+ break;
382
+ case "corporate-plus":
383
+ $demo_templates_lists = array(
384
+ 'demo-1' =>array(
385
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
386
+ 'is_premium' => false,/*Premium*/
387
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
388
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
389
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
390
+ 'categories' => array( 'business' ),/*Categories*/
391
+ 'template_url' => array(
392
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
393
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
394
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
395
+ ),
396
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
397
+ 'demo_url' => 'http://www.demo.acmethemes.com/corporate-plus/',/*Demo Url*/
398
+ /**/
399
+ 'plugins' => array(
400
+ array(
401
+ 'name' => 'Gutentor',
402
+ 'slug' => 'gutentor',
403
+ ),
404
+ array(
405
+ 'name' => 'WooCommerce',
406
+ 'slug' => 'woocommerce'
407
+ ),
408
+ array(
409
+ 'name' => 'Acme Fix Images',
410
+ 'slug' => 'acme-fix-images',
411
+ ),
412
+ array(
413
+ 'name' => 'WooCommerce',
414
+ 'slug' => 'woocommerce'
415
+ ),
416
+ array(
417
+ 'name' => 'Contact Form 7',
418
+ 'slug' => 'contact-form-7',
419
+ 'main_file' => 'wp-contact-form-7.php',
420
+ ),
421
+ )
422
+ ),
423
+ );
424
+ break;
425
+ case "corporate-plus-pro":
426
+ $demo_templates_lists = array(
427
+ 'demo-1' =>array(
428
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
429
+ 'is_premium' => true,/*Premium*/
430
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
431
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
432
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
433
+ 'categories' => array( 'business' ),/*Categories*/
434
+ 'template_url' => array(
435
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
436
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
437
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
438
+ ),
439
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
440
+ 'demo_url' => 'http://www.demo.acmethemes.com/corporate-plus-pro/',/*Demo Url*/
441
+ /**/
442
+ 'plugins' => array(
443
+ array(
444
+ 'name' => 'Gutentor',
445
+ 'slug' => 'gutentor',
446
+ ),
447
+ array(
448
+ 'name' => 'Acme Fix Images',
449
+ 'slug' => 'acme-fix-images',
450
+ ),
451
+ array(
452
+ 'name' => 'Contact Form 7',
453
+ 'slug' => 'contact-form-7',
454
+ 'main_file' => 'wp-contact-form-7.php',
455
+ ),
456
+ )
457
+ ),
458
+ 'demo-2' =>array(
459
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
460
+ 'is_premium' => true,/*Premium*/
461
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
462
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
463
+ 'keywords' => array( 'demo' ,'demo-2' ),/*Search keyword*/
464
+ 'categories' => array( 'business' ),/*Categories*/
465
+ 'template_url' => array(
466
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
467
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
468
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
469
+ ),
470
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
471
+ 'demo_url' => 'http://demo.acmethemes.com/corporate-plus-pro/store-demo/',/*Demo Url*/
472
+ /**/
473
+ 'plugins' => array(
474
+ array(
475
+ 'name' => 'Gutentor',
476
+ 'slug' => 'gutentor',
477
+ ),
478
+ array(
479
+ 'name' => 'WooCommerce',
480
+ 'slug' => 'woocommerce'
481
+ ),
482
+ array(
483
+ 'name' => 'Acme Fix Images',
484
+ 'slug' => 'acme-fix-images',
485
+ ),
486
+ array(
487
+ 'name' => 'Contact Form 7',
488
+ 'slug' => 'contact-form-7',
489
+ 'main_file' => 'wp-contact-form-7.php',
490
+ ),
491
+ )
492
+ ),
493
+ 'demo-3' =>array(
494
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
495
+ 'is_premium' => true,/*Premium*/
496
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
497
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
498
+ 'keywords' => array( 'demo' ,'demo-3' ),/*Search keyword*/
499
+ 'categories' => array( 'business' ),/*Categories*/
500
+ 'template_url' => array(
501
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
502
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
503
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
504
+ ),
505
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
506
+ 'demo_url' => 'http://demo.acmethemes.com/corporate-plus-pro/medical/',/*Demo Url*/
507
+ /**/
508
+ 'plugins' => array(
509
+ array(
510
+ 'name' => 'Gutentor',
511
+ 'slug' => 'gutentor',
512
+ ),
513
+ array(
514
+ 'name' => 'Acme Fix Images',
515
+ 'slug' => 'acme-fix-images',
516
+ ),
517
+ array(
518
+ 'name' => 'Contact Form 7',
519
+ 'slug' => 'contact-form-7',
520
+ 'main_file' => 'wp-contact-form-7.php',
521
+ ),
522
+ )
523
+ ),
524
+ );
525
+ break;
526
+ case "infinite-photography":
527
+ $demo_templates_lists = array(
528
+ 'demo-1' =>array(
529
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
530
+ 'is_premium' => false,/*Premium*/
531
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
532
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
533
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
534
+ 'categories' => array( 'photo' ),/*Categories*/
535
+ 'template_url' => array(
536
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
537
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
538
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
539
+ ),
540
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
541
+ 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography/',/*Demo Url*/
542
+ /**/
543
+ 'plugins' => array(
544
+ array(
545
+ 'name' =>__( 'Gutentor','acmethemes' ),
546
+ 'slug' => 'gutentor',
547
+ ),
548
+ array(
549
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
550
+ 'slug' => 'breadcrumb-navxt',
551
+ ),
552
+ array(
553
+ 'name' => __( 'Contact Form 7','acmethemes' ),
554
+ 'slug' => 'contact-form-7',
555
+ 'main_file' => 'wp-contact-form-7.php',
556
+ ),
557
+ )
558
+ ),
559
+ );
560
+ break;
561
+ case "infinite-photography-pro":
562
+ $demo_templates_lists = array(
563
+ 'demo-1' =>array(
564
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
565
+ 'is_premium' => true,/*Premium*/
566
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
567
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
568
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
569
+ 'categories' => array( 'photo' ),/*Categories*/
570
+ 'template_url' => array(
571
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
572
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
573
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
574
+ ),
575
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
576
+ 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography-pro/',/*Demo Url*/
577
+ /**/
578
+ 'plugins' => array(
579
+ array(
580
+ 'name' =>__( 'Gutentor','acmethemes' ),
581
+ 'slug' => 'gutentor',
582
+ ),
583
+ array(
584
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
585
+ 'slug' => 'breadcrumb-navxt',
586
+ ),
587
+ array(
588
+ 'name' => __( 'Contact Form 7','acmethemes' ),
589
+ 'slug' => 'contact-form-7',
590
+ 'main_file' => 'wp-contact-form-7.php',
591
+ ),
592
+ )
593
+ ),
594
+ 'demo-2' =>array(
595
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
596
+ 'is_premium' => true,/*Premium*/
597
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
598
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
599
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
600
+ 'categories' => array( 'photo' ),/*Categories*/
601
+ 'template_url' => array(
602
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
603
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
604
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
605
+ ),
606
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
607
+ 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography-pro/home-1',/*Demo Url*/
608
+ /**/
609
+ 'plugins' => array(
610
+ array(
611
+ 'name' =>__( 'Gutentor','acmethemes' ),
612
+ 'slug' => 'gutentor',
613
+ ),
614
+ array(
615
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
616
+ 'slug' => 'breadcrumb-navxt',
617
+ ),
618
+ array(
619
+ 'name' => __( 'Contact Form 7','acmethemes' ),
620
+ 'slug' => 'contact-form-7',
621
+ 'main_file' => 'wp-contact-form-7.php',
622
+ ),
623
+ )
624
+ ),
625
+ 'demo-3' =>array(
626
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
627
+ 'is_premium' => true,/*Premium*/
628
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
629
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
630
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
631
+ 'categories' => array( 'photo' ),/*Categories*/
632
+ 'template_url' => array(
633
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
634
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
635
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
636
+ ),
637
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
638
+ 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography-pro/home-2',/*Demo Url*/
639
+ /**/
640
+ 'plugins' => array(
641
+ array(
642
+ 'name' =>__( 'Gutentor','acmethemes' ),
643
+ 'slug' => 'gutentor',
644
+ ),
645
+ array(
646
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
647
+ 'slug' => 'breadcrumb-navxt',
648
+ ),
649
+ array(
650
+ 'name' => __( 'Contact Form 7','acmethemes' ),
651
+ 'slug' => 'contact-form-7',
652
+ 'main_file' => 'wp-contact-form-7.php',
653
+ ),
654
+ )
655
+ ),
656
+ 'demo-4' =>array(
657
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
658
+ 'is_premium' => true,/*Premium*/
659
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
660
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
661
+ 'keywords' => array( 'main', 'demo' ,'demo 4' ),/*Search keyword*/
662
+ 'categories' => array( 'photo' ),/*Categories*/
663
+ 'template_url' => array(
664
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
665
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
666
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
667
+ ),
668
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
669
+ 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography-pro/home-3',/*Demo Url*/
670
+ /**/
671
+ 'plugins' => array(
672
+ array(
673
+ 'name' =>__( 'Gutentor','acmethemes' ),
674
+ 'slug' => 'gutentor',
675
+ ),
676
+ array(
677
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
678
+ 'slug' => 'breadcrumb-navxt',
679
+ ),
680
+ array(
681
+ 'name' => __( 'Contact Form 7','acmethemes' ),
682
+ 'slug' => 'contact-form-7',
683
+ 'main_file' => 'wp-contact-form-7.php',
684
+ ),
685
+ )
686
+ ),
687
+ );
688
+ break;
689
+ case "supernews":
690
+ $demo_templates_lists = array(
691
+ 'demo-1' =>array(
692
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
693
+ 'is_premium' => false,/*Premium*/
694
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
695
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
696
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
697
+ 'categories' => array( 'magazine' ),/*Categories*/
698
+ 'template_url' => array(
699
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
700
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
701
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
702
+ ),
703
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
704
+ 'demo_url' => 'http://www.demo.acmethemes.com/supernews/',/*Demo Url*/
705
+ /**/
706
+ 'plugins' => array(
707
+ array(
708
+ 'name' => 'Gutentor',
709
+ 'slug' => 'gutentor',
710
+ ),
711
+ array(
712
+ 'name' => 'Acme Fix Images',
713
+ 'slug' => 'acme-fix-images',
714
+ ),
715
+ array(
716
+ 'name' => 'Contact Form 7',
717
+ 'slug' => 'contact-form-7',
718
+ 'main_file' => 'wp-contact-form-7.php',
719
+ ),
720
+ )
721
+ ),
722
+ );
723
+ break;
724
+ case "supernewspro":
725
+ $demo_templates_lists = array(
726
+ 'demo-1' =>array(
727
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
728
+ 'is_premium' => true,/*Premium*/
729
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
730
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
731
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
732
+ 'categories' => array( 'magazine' ),/*Categories*/
733
+ 'template_url' => array(
734
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
735
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
736
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
737
+ ),
738
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
739
+ 'demo_url' => 'http://www.demo.acmethemes.com/supernewspro/',/*Demo Url*/
740
+ /**/
741
+ 'plugins' => array(
742
+ array(
743
+ 'name' => 'Gutentor',
744
+ 'slug' => 'gutentor',
745
+ ),
746
+ array(
747
+ 'name' => 'Acme Fix Images',
748
+ 'slug' => 'acme-fix-images',
749
+ ),
750
+ array(
751
+ 'name' => 'Contact Form 7',
752
+ 'slug' => 'contact-form-7',
753
+ 'main_file' => 'wp-contact-form-7.php',
754
+ ),
755
+ )
756
+ ),
757
+ 'demo-2' =>array(
758
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
759
+ 'is_premium' => true,/*Premium*/
760
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
761
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
762
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
763
+ 'categories' => array( 'magazine' ),/*Categories*/
764
+ 'template_url' => array(
765
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
766
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
767
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
768
+ ),
769
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
770
+ 'demo_url' => 'http://www.demo.acmethemes.com/supernewspro/home-1',/*Demo Url*/
771
+ /**/
772
+ 'plugins' => array(
773
+ array(
774
+ 'name' => 'Gutentor',
775
+ 'slug' => 'gutentor',
776
+ ),
777
+ array(
778
+ 'name' => 'Acme Fix Images',
779
+ 'slug' => 'acme-fix-images',
780
+ ),
781
+ array(
782
+ 'name' => 'Contact Form 7',
783
+ 'slug' => 'contact-form-7',
784
+ 'main_file' => 'wp-contact-form-7.php',
785
+ ),
786
+ )
787
+ ),
788
+ 'demo-3' =>array(
789
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
790
+ 'is_premium' => true,/*Premium*/
791
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
792
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
793
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
794
+ 'categories' => array( 'magazine' ),/*Categories*/
795
+ 'template_url' => array(
796
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
797
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
798
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
799
+ ),
800
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
801
+ 'demo_url' => 'http://www.demo.acmethemes.com/supernewspro/home-2',/*Demo Url*/
802
+ /**/
803
+ 'plugins' => array(
804
+ array(
805
+ 'name' => 'Gutentor',
806
+ 'slug' => 'gutentor',
807
+ ),
808
+ array(
809
+ 'name' => 'Acme Fix Images',
810
+ 'slug' => 'acme-fix-images',
811
+ ),
812
+ array(
813
+ 'name' => 'Contact Form 7',
814
+ 'slug' => 'contact-form-7',
815
+ 'main_file' => 'wp-contact-form-7.php',
816
+ ),
817
+ )
818
+ ),
819
+ 'demo-4' =>array(
820
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
821
+ 'is_premium' => true,/*Premium*/
822
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
823
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
824
+ 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
825
+ 'categories' => array( 'magazine' ),/*Categories*/
826
+ 'template_url' => array(
827
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
828
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
829
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
830
+ ),
831
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
832
+ 'demo_url' => 'http://www.demo.acmethemes.com/supernewspro/home-3',/*Demo Url*/
833
+ /**/
834
+ 'plugins' => array(
835
+ array(
836
+ 'name' => 'Gutentor',
837
+ 'slug' => 'gutentor',
838
+ ),
839
+ array(
840
+ 'name' => 'Acme Fix Images',
841
+ 'slug' => 'acme-fix-images',
842
+ ),
843
+ array(
844
+ 'name' => 'Contact Form 7',
845
+ 'slug' => 'contact-form-7',
846
+ 'main_file' => 'wp-contact-form-7.php',
847
+ ),
848
+ )
849
+ ),
850
+ );
851
+ break;
852
+ case "weblog":
853
+ $demo_templates_lists = array(
854
+ 'demo-1' =>array(
855
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
856
+ 'is_premium' => false,/*Premium*/
857
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
858
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
859
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
860
+ 'categories' => array( 'magazine' ),/*Categories*/
861
+ 'template_url' => array(
862
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/master/demo-1/content.json',
863
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/master/demo-1/options.json',
864
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/master/demo-1/widgets.json'
865
+ ),
866
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/master/demo-1/screenshot.jpg',/*Screenshot of block*/
867
+ 'demo_url' => 'http://www.demo.acmethemes.com/weblog/',/*Demo Url*/
868
+ /**/
869
+ 'plugins' => array(
870
+ array(
871
+ 'name' => 'Gutentor',
872
+ 'slug' => 'gutentor',
873
+ ),
874
+ array(
875
+ 'name' => 'Contact Form 7',
876
+ 'slug' => 'contact-form-7',
877
+ 'main_file' => 'wp-contact-form-7.php',
878
+ ),
879
+ )
880
+ ),
881
+ );
882
+ break;
883
+ case "weblogpro":
884
+ $demo_templates_lists = array(
885
+ 'demo-1' =>array(
886
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
887
+ 'is_premium' => true,/*Premium*/
888
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
889
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
890
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
891
+ 'categories' => array( 'magazine' ),/*Categories*/
892
+ 'template_url' => array(
893
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
894
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
895
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
896
+ ),
897
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
898
+ 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/',/*Demo Url*/
899
+ /**/
900
+ 'plugins' => array(
901
+ array(
902
+ 'name' => 'Gutentor',
903
+ 'slug' => 'gutentor',
904
+ ),
905
+ array(
906
+ 'name' => 'Easy Twitter Feed Widget Plugin',
907
+ 'slug' => 'easy-twitter-feed-widget',
908
+ ),
909
+ array(
910
+ 'name' => 'Smash Balloon Social Photo Feed',
911
+ 'slug' => 'instagram-feed',
912
+ ),
913
+ array(
914
+ 'name' => 'Widget for Social Page Feeds',
915
+ 'slug' => 'facebook-pagelike-widget',
916
+ ),
917
+ array(
918
+ 'name' => 'Contact Form 7',
919
+ 'slug' => 'contact-form-7',
920
+ 'main_file' => 'wp-contact-form-7.php',
921
+ ),
922
+ )
923
+ ),
924
+ 'demo-2' =>array(
925
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
926
+ 'is_premium' => true,/*Premium*/
927
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
928
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
929
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
930
+ 'categories' => array( 'magazine' ),/*Categories*/
931
+ 'template_url' => array(
932
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
933
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
934
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
935
+ ),
936
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
937
+ 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-1',/*Demo Url*/
938
+ /**/
939
+ 'plugins' => array(
940
+ array(
941
+ 'name' => 'Gutentor',
942
+ 'slug' => 'gutentor',
943
+ ),
944
+ array(
945
+ 'name' => 'Easy Twitter Feed Widget Plugin',
946
+ 'slug' => 'easy-twitter-feed-widget',
947
+ ),
948
+ array(
949
+ 'name' => 'Smash Balloon Social Photo Feed',
950
+ 'slug' => 'instagram-feed',
951
+ ),
952
+ array(
953
+ 'name' => 'Widget for Social Page Feeds',
954
+ 'slug' => 'facebook-pagelike-widget',
955
+ ),
956
+ array(
957
+ 'name' => 'Contact Form 7',
958
+ 'slug' => 'contact-form-7',
959
+ 'main_file' => 'wp-contact-form-7.php',
960
+ ),
961
+ )
962
+ ),
963
+ 'demo-3' =>array(
964
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
965
+ 'is_premium' => true,/*Premium*/
966
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
967
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
968
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
969
+ 'categories' => array( 'magazine' ),/*Categories*/
970
+ 'template_url' => array(
971
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
972
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
973
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
974
+ ),
975
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
976
+ 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-2',/*Demo Url*/
977
+ /**/
978
+ 'plugins' => array(
979
+ array(
980
+ 'name' => 'Gutentor',
981
+ 'slug' => 'gutentor',
982
+ ),
983
+ array(
984
+ 'name' => 'Easy Twitter Feed Widget Plugin',
985
+ 'slug' => 'easy-twitter-feed-widget',
986
+ ),
987
+ array(
988
+ 'name' => 'Smash Balloon Social Photo Feed',
989
+ 'slug' => 'instagram-feed',
990
+ ),
991
+ array(
992
+ 'name' => 'Widget for Social Page Feeds',
993
+ 'slug' => 'facebook-pagelike-widget',
994
+ ),
995
+ array(
996
+ 'name' => 'Contact Form 7',
997
+ 'slug' => 'contact-form-7',
998
+ 'main_file' => 'wp-contact-form-7.php',
999
+ ),
1000
+ )
1001
+ ),
1002
+ 'demo-4' =>array(
1003
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1004
+ 'is_premium' => true,/*Premium*/
1005
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1006
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1007
+ 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1008
+ 'categories' => array( 'magazine' ),/*Categories*/
1009
+ 'template_url' => array(
1010
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1011
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1012
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1013
+ ),
1014
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1015
+ 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-3',/*Demo Url*/
1016
+ /**/
1017
+ 'plugins' => array(
1018
+ array(
1019
+ 'name' => 'Gutentor',
1020
+ 'slug' => 'gutentor',
1021
+ ),
1022
+ array(
1023
+ 'name' => 'Easy Twitter Feed Widget Plugin',
1024
+ 'slug' => 'easy-twitter-feed-widget',
1025
+ ),
1026
+ array(
1027
+ 'name' => 'Smash Balloon Social Photo Feed',
1028
+ 'slug' => 'instagram-feed',
1029
+ ),
1030
+ array(
1031
+ 'name' => 'Widget for Social Page Feeds',
1032
+ 'slug' => 'facebook-pagelike-widget',
1033
+ ),
1034
+ array(
1035
+ 'name' => 'Contact Form 7',
1036
+ 'slug' => 'contact-form-7',
1037
+ 'main_file' => 'wp-contact-form-7.php',
1038
+ ),
1039
+ )
1040
+ ),
1041
+ 'demo-5' =>array(
1042
+ 'title' => __( 'Demo 5', 'acmethemes' ),/*Title*/
1043
+ 'is_premium' => true,/*Premium*/
1044
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1045
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1046
+ 'keywords' => array( 'main', 'demo' ,'demo-5' ),/*Search keyword*/
1047
+ 'categories' => array( 'magazine' ),/*Categories*/
1048
+ 'template_url' => array(
1049
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/content.json',
1050
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/options.json',
1051
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/widgets.json'
1052
+ ),
1053
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/screenshot.jpg',/*Screenshot of block*/
1054
+ 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-4',/*Demo Url*/
1055
+ /**/
1056
+ 'plugins' => array(
1057
+ array(
1058
+ 'name' => 'Gutentor',
1059
+ 'slug' => 'gutentor',
1060
+ ),
1061
+ array(
1062
+ 'name' => 'Easy Twitter Feed Widget Plugin',
1063
+ 'slug' => 'easy-twitter-feed-widget',
1064
+ ),
1065
+ array(
1066
+ 'name' => 'Smash Balloon Social Photo Feed',
1067
+ 'slug' => 'instagram-feed',
1068
+ ),
1069
+ array(
1070
+ 'name' => 'Widget for Social Page Feeds',
1071
+ 'slug' => 'facebook-pagelike-widget',
1072
+ ),
1073
+ array(
1074
+ 'name' => 'Contact Form 7',
1075
+ 'slug' => 'contact-form-7',
1076
+ 'main_file' => 'wp-contact-form-7.php',
1077
+ ),
1078
+ )
1079
+ ),
1080
+ 'demo-6' =>array(
1081
+ 'title' => __( 'Demo 6', 'acmethemes' ),/*Title*/
1082
+ 'is_premium' => true,/*Premium*/
1083
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1084
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1085
+ 'keywords' => array( 'main', 'demo' ,'demo-5' ),/*Search keyword*/
1086
+ 'categories' => array( 'magazine' ),/*Categories*/
1087
+ 'template_url' => array(
1088
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/content.json',
1089
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/options.json',
1090
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/widgets.json'
1091
+ ),
1092
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/screenshot.jpg',/*Screenshot of block*/
1093
+ 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-5',/*Demo Url*/
1094
+ /**/
1095
+ 'plugins' => array(
1096
+ array(
1097
+ 'name' => 'Gutentor',
1098
+ 'slug' => 'gutentor',
1099
+ ),
1100
+ array(
1101
+ 'name' => 'WooCommerce',
1102
+ 'slug' => 'woocommerce'
1103
+ ),
1104
+ array(
1105
+ 'name' => 'Easy Twitter Feed Widget Plugin',
1106
+ 'slug' => 'easy-twitter-feed-widget',
1107
+ ),
1108
+ array(
1109
+ 'name' => 'Smash Balloon Social Photo Feed',
1110
+ 'slug' => 'instagram-feed',
1111
+ ),
1112
+ array(
1113
+ 'name' => 'Widget for Social Page Feeds',
1114
+ 'slug' => 'facebook-pagelike-widget',
1115
+ ),
1116
+ array(
1117
+ 'name' => 'Contact Form 7',
1118
+ 'slug' => 'contact-form-7',
1119
+ 'main_file' => 'wp-contact-form-7.php',
1120
+ ),
1121
+ )
1122
+ ),
1123
+
1124
+ );
1125
+ break;
1126
+ case "dupermag":
1127
+ $demo_templates_lists = array(
1128
+ 'demo-1' =>array(
1129
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1130
+ 'is_premium' => false,/*Premium*/
1131
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1132
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1133
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1134
+ 'categories' => array( 'magazine' ),/*Categories*/
1135
+ 'template_url' => array(
1136
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1137
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1138
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1139
+ ),
1140
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1141
+ 'demo_url' => 'http://www.demo.acmethemes.com/dupermag/',/*Demo Url*/
1142
+ /**/
1143
+ 'plugins' => array(
1144
+ array(
1145
+ 'name' => 'Gutentor',
1146
+ 'slug' => 'gutentor',
1147
+ ),
1148
+ array(
1149
+ 'name' => 'Contact Form 7',
1150
+ 'slug' => 'contact-form-7',
1151
+ 'main_file' => 'wp-contact-form-7.php',
1152
+ ),
1153
+ )
1154
+ ),
1155
+ );
1156
+ break;
1157
+ case "dupermagpro":
1158
+ $demo_templates_lists = array(
1159
+ 'demo-1' =>array(
1160
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1161
+ 'is_premium' => true,/*Premium*/
1162
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1163
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1164
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1165
+ 'categories' => array( 'magazine' ),/*Categories*/
1166
+ 'template_url' => array(
1167
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1168
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1169
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1170
+ ),
1171
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1172
+ 'demo_url' => 'http://www.demo.acmethemes.com/dupermagpro/',/*Demo Url*/
1173
+ /**/
1174
+ 'plugins' => array(
1175
+ array(
1176
+ 'name' => 'Gutentor',
1177
+ 'slug' => 'gutentor',
1178
+ ),
1179
+ )
1180
+ ),
1181
+ 'demo-2' =>array(
1182
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1183
+ 'is_premium' => true,/*Premium*/
1184
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1185
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1186
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1187
+ 'categories' => array( 'magazine' ),/*Categories*/
1188
+ 'template_url' => array(
1189
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1190
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1191
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1192
+ ),
1193
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1194
+ 'demo_url' => 'http://www.demo.acmethemes.com/dupermagpro/home-1',/*Demo Url*/
1195
+ /**/
1196
+ 'plugins' => array(
1197
+ array(
1198
+ 'name' => 'Gutentor',
1199
+ 'slug' => 'gutentor',
1200
+ ),
1201
+ )
1202
+ ),
1203
+ );
1204
+ break;
1205
+ case "acmephoto":
1206
+ $demo_templates_lists = array(
1207
+ 'demo-1' =>array(
1208
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1209
+ 'is_premium' => false,/*Premium*/
1210
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1211
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1212
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1213
+ 'categories' => array( 'photo' ),/*Categories*/
1214
+ 'template_url' => array(
1215
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1216
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1217
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1218
+ ),
1219
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1220
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmephoto/',/*Demo Url*/
1221
+ /**/
1222
+ 'plugins' => array(
1223
+ array(
1224
+ 'name' => 'Gutentor',
1225
+ 'slug' => 'gutentor',
1226
+ ),
1227
+ array(
1228
+ 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1229
+ 'slug' => 'nextgen-gallery',
1230
+ ),
1231
+ array(
1232
+ 'name' => 'Contact Form 7',
1233
+ 'slug' => 'contact-form-7',
1234
+ 'main_file' => 'wp-contact-form-7.php',
1235
+ ),
1236
+ )
1237
+ ),
1238
+ 'demo-2' =>array(
1239
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1240
+ 'is_premium' => false,/*Premium*/
1241
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1242
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1243
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1244
+ 'categories' => array( 'photo' ),/*Categories*/
1245
+ 'template_url' => array(
1246
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1247
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1248
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1249
+ ),
1250
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1251
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmephoto/home-1',/*Demo Url*/
1252
+ /**/
1253
+ 'plugins' => array(
1254
+ array(
1255
+ 'name' => 'Gutentor',
1256
+ 'slug' => 'gutentor',
1257
+ ),
1258
+ array(
1259
+ 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1260
+ 'slug' => 'nextgen-gallery',
1261
+ ),
1262
+ array(
1263
+ 'name' => 'Contact Form 7',
1264
+ 'slug' => 'contact-form-7',
1265
+ 'main_file' => 'wp-contact-form-7.php',
1266
+ ),
1267
+ )
1268
+ ),
1269
+ );
1270
+ break;
1271
+ case "acmephotopro":
1272
+ $demo_templates_lists = array(
1273
+ 'demo-1' =>array(
1274
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1275
+ 'is_premium' => true,/*Premium*/
1276
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1277
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1278
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1279
+ 'categories' => array( 'photo' ),/*Categories*/
1280
+ 'template_url' => array(
1281
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1282
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1283
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1284
+ ),
1285
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1286
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/',/*Demo Url*/
1287
+ /**/
1288
+ 'plugins' => array(
1289
+ array(
1290
+ 'name' => 'Gutentor',
1291
+ 'slug' => 'gutentor',
1292
+ ),
1293
+ array(
1294
+ 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1295
+ 'slug' => 'nextgen-gallery',
1296
+ ),
1297
+ array(
1298
+ 'name' => 'Contact Form 7',
1299
+ 'slug' => 'contact-form-7',
1300
+ 'main_file' => 'wp-contact-form-7.php',
1301
+ ),
1302
+ )
1303
+ ),
1304
+ 'demo-2' =>array(
1305
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1306
+ 'is_premium' => true,/*Premium*/
1307
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1308
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1309
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1310
+ 'categories' => array( 'photo' ),/*Categories*/
1311
+ 'template_url' => array(
1312
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1313
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1314
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1315
+ ),
1316
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1317
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-1',/*Demo Url*/
1318
+ /**/
1319
+ 'plugins' => array(
1320
+ array(
1321
+ 'name' => 'Gutentor',
1322
+ 'slug' => 'gutentor',
1323
+ ),
1324
+ array(
1325
+ 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1326
+ 'slug' => 'nextgen-gallery',
1327
+ ),
1328
+ array(
1329
+ 'name' => 'Contact Form 7',
1330
+ 'slug' => 'contact-form-7',
1331
+ 'main_file' => 'wp-contact-form-7.php',
1332
+ ),
1333
+ )
1334
+ ),
1335
+ 'demo-3' =>array(
1336
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1337
+ 'is_premium' => true,/*Premium*/
1338
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1339
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1340
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1341
+ 'categories' => array( 'photo' ),/*Categories*/
1342
+ 'template_url' => array(
1343
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1344
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1345
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1346
+ ),
1347
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1348
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-2',/*Demo Url*/
1349
+ /**/
1350
+ 'plugins' => array(
1351
+ array(
1352
+ 'name' => 'Gutentor',
1353
+ 'slug' => 'gutentor',
1354
+ ),
1355
+ array(
1356
+ 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1357
+ 'slug' => 'nextgen-gallery',
1358
+ ),
1359
+ array(
1360
+ 'name' => 'Contact Form 7',
1361
+ 'slug' => 'contact-form-7',
1362
+ 'main_file' => 'wp-contact-form-7.php',
1363
+ ),
1364
+ )
1365
+ ),
1366
+ 'demo-4' =>array(
1367
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1368
+ 'is_premium' => true,/*Premium*/
1369
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1370
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1371
+ 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1372
+ 'categories' => array( 'photo' ),/*Categories*/
1373
+ 'template_url' => array(
1374
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1375
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1376
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1377
+ ),
1378
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1379
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-3',/*Demo Url*/
1380
+ /**/
1381
+ 'plugins' => array(
1382
+ array(
1383
+ 'name' => 'Gutentor',
1384
+ 'slug' => 'gutentor',
1385
+ ),
1386
+ array(
1387
+ 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1388
+ 'slug' => 'nextgen-gallery',
1389
+ ),
1390
+ array(
1391
+ 'name' => 'Contact Form 7',
1392
+ 'slug' => 'contact-form-7',
1393
+ 'main_file' => 'wp-contact-form-7.php',
1394
+ ),
1395
+ )
1396
+ ),
1397
+ 'demo-5' =>array(
1398
+ 'title' => __( 'Demo 5', 'acmethemes' ),/*Title*/
1399
+ 'is_premium' => true,/*Premium*/
1400
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1401
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1402
+ 'keywords' => array( 'main', 'demo' ,'demo-5' ),/*Search keyword*/
1403
+ 'categories' => array( 'photo' ),/*Categories*/
1404
+ 'template_url' => array(
1405
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/content.json',
1406
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/options.json',
1407
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/widgets.json'
1408
+ ),
1409
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/screenshot.jpg',/*Screenshot of block*/
1410
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-4',/*Demo Url*/
1411
+ /**/
1412
+ 'plugins' => array(
1413
+ array(
1414
+ 'name' => 'Gutentor',
1415
+ 'slug' => 'gutentor',
1416
+ ),
1417
+ array(
1418
+ 'name' => 'WooCommerce',
1419
+ 'slug' => 'woocommerce'
1420
+ ),
1421
+ array(
1422
+ 'name' => 'Contact Form 7',
1423
+ 'slug' => 'contact-form-7',
1424
+ 'main_file' => 'wp-contact-form-7.php',
1425
+ ),
1426
+ )
1427
+ ),
1428
+ 'demo-6' =>array(
1429
+ 'title' => __( 'Demo 6', 'acmethemes' ),/*Title*/
1430
+ 'is_premium' => true,/*Premium*/
1431
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1432
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1433
+ 'keywords' => array( 'main', 'demo' ,'demo-6' ),/*Search keyword*/
1434
+ 'categories' => array( 'photo' ),/*Categories*/
1435
+ 'template_url' => array(
1436
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/content.json',
1437
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/options.json',
1438
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/widgets.json'
1439
+ ),
1440
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/screenshot.jpg',/*Screenshot of block*/
1441
+ 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-5',/*Demo Url*/
1442
+ /**/
1443
+ 'plugins' => array(
1444
+ array(
1445
+ 'name' => 'Gutentor',
1446
+ 'slug' => 'gutentor',
1447
+ ),
1448
+ array(
1449
+ 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1450
+ 'slug' => 'nextgen-gallery',
1451
+ ),
1452
+ array(
1453
+ 'name' => 'Contact Form 7',
1454
+ 'slug' => 'contact-form-7',
1455
+ 'main_file' => 'wp-contact-form-7.php',
1456
+ ),
1457
+ )
1458
+ ),
1459
+ );
1460
+ break;
1461
+ case "mercantile":
1462
+ $demo_templates_lists = array(
1463
+ 'demo-1' =>array(
1464
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1465
+ 'is_premium' => false,/*Premium*/
1466
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1467
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1468
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1469
+ 'categories' => array( 'mercantile' ),/*Categories*/
1470
+ 'template_url' => array(
1471
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1472
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1473
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1474
+ ),
1475
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1476
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantile/',/*Demo Url*/
1477
+ /**/
1478
+ 'plugins' => array(
1479
+ array(
1480
+ 'name' => 'Gutentor',
1481
+ 'slug' => 'gutentor',
1482
+ ),
1483
+ array(
1484
+ 'name' => 'Page Builder by SiteOrigin',
1485
+ 'slug' => 'siteorigin-panels'
1486
+ ),
1487
+ array(
1488
+ 'name' => 'Contact Form 7',
1489
+ 'slug' => 'contact-form-7',
1490
+ 'main_file' => 'wp-contact-form-7.php',
1491
+ ),
1492
+ )
1493
+ ),
1494
+ 'demo-2' =>array(
1495
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1496
+ 'is_premium' => false,/*Premium*/
1497
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1498
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1499
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1500
+ 'categories' => array( 'mercantile' ),/*Categories*/
1501
+ 'template_url' => array(
1502
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1503
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1504
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1505
+ ),
1506
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1507
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantile/home-1',/*Demo Url*/
1508
+ /**/
1509
+ 'plugins' => array(
1510
+ array(
1511
+ 'name' => 'Gutentor',
1512
+ 'slug' => 'gutentor',
1513
+ ),
1514
+ array(
1515
+ 'name' => 'Page Builder by SiteOrigin',
1516
+ 'slug' => 'siteorigin-panels'
1517
+ ),
1518
+ array(
1519
+ 'name' => 'Contact Form 7',
1520
+ 'slug' => 'contact-form-7',
1521
+ 'main_file' => 'wp-contact-form-7.php',
1522
+ ),
1523
+ )
1524
+ ),
1525
+ 'demo-3' =>array(
1526
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1527
+ 'is_premium' => false,/*Premium*/
1528
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1529
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1530
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1531
+ 'categories' => array( 'mercantile' ),/*Categories*/
1532
+ 'template_url' => array(
1533
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1534
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1535
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1536
+ ),
1537
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1538
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantile/home-2',/*Demo Url*/
1539
+ /**/
1540
+ 'plugins' => array(
1541
+ array(
1542
+ 'name' => 'Gutentor',
1543
+ 'slug' => 'gutentor',
1544
+ ),
1545
+ array(
1546
+ 'name' => 'Page Builder by SiteOrigin',
1547
+ 'slug' => 'siteorigin-panels'
1548
+ ),
1549
+ array(
1550
+ 'name' => 'Contact Form 7',
1551
+ 'slug' => 'contact-form-7',
1552
+ 'main_file' => 'wp-contact-form-7.php',
1553
+ ),
1554
+ )
1555
+ ),
1556
+ 'demo-4' =>array(
1557
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1558
+ 'is_premium' => false,/*Premium*/
1559
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1560
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1561
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1562
+ 'categories' => array( 'mercantile' ),/*Categories*/
1563
+ 'template_url' => array(
1564
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1565
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1566
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1567
+ ),
1568
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1569
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantile/home-3',/*Demo Url*/
1570
+ /**/
1571
+ 'plugins' => array(
1572
+ array(
1573
+ 'name' => 'Gutentor',
1574
+ 'slug' => 'gutentor',
1575
+ ),
1576
+ array(
1577
+ 'name' => 'Page Builder by SiteOrigin',
1578
+ 'slug' => 'siteorigin-panels'
1579
+ ),
1580
+ array(
1581
+ 'name' => 'Contact Form 7',
1582
+ 'slug' => 'contact-form-7',
1583
+ 'main_file' => 'wp-contact-form-7.php',
1584
+ ),
1585
+ )
1586
+ ),
1587
+ );
1588
+ break;
1589
+ case "mercantilepro":
1590
+ $demo_templates_lists = array(
1591
+ 'demo-1' =>array(
1592
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1593
+ 'is_premium' => true,/*Premium*/
1594
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1595
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1596
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1597
+ 'categories' => array( 'mercantile' ),/*Categories*/
1598
+ 'template_url' => array(
1599
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1600
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1601
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1602
+ ),
1603
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1604
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/',/*Demo Url*/
1605
+ /**/
1606
+ 'plugins' => array(
1607
+ array(
1608
+ 'name' => 'Gutentor',
1609
+ 'slug' => 'gutentor',
1610
+ ),
1611
+ array(
1612
+ 'name' => 'Page Builder by SiteOrigin',
1613
+ 'slug' => 'siteorigin-panels'
1614
+ ),
1615
+ array(
1616
+ 'name' => 'Contact Form 7',
1617
+ 'slug' => 'contact-form-7',
1618
+ 'main_file' => 'wp-contact-form-7.php',
1619
+ ),
1620
+ )
1621
+ ),
1622
+ 'demo-2' =>array(
1623
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1624
+ 'is_premium' => true,/*Premium*/
1625
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1626
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1627
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1628
+ 'categories' => array( 'mercantile' ),/*Categories*/
1629
+ 'template_url' => array(
1630
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1631
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1632
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1633
+ ),
1634
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1635
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/home-1',/*Demo Url*/
1636
+ /**/
1637
+ 'plugins' => array(
1638
+ array(
1639
+ 'name' => 'Gutentor',
1640
+ 'slug' => 'gutentor',
1641
+ ),
1642
+ array(
1643
+ 'name' => 'Page Builder by SiteOrigin',
1644
+ 'slug' => 'siteorigin-panels'
1645
+ ),
1646
+ array(
1647
+ 'name' => 'Contact Form 7',
1648
+ 'slug' => 'contact-form-7',
1649
+ 'main_file' => 'wp-contact-form-7.php',
1650
+ ),
1651
+ )
1652
+ ),
1653
+ 'demo-3' =>array(
1654
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1655
+ 'is_premium' => true,/*Premium*/
1656
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1657
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1658
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1659
+ 'categories' => array( 'mercantile' ),/*Categories*/
1660
+ 'template_url' => array(
1661
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1662
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1663
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1664
+ ),
1665
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1666
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/home-2',/*Demo Url*/
1667
+ /**/
1668
+ 'plugins' => array(
1669
+ array(
1670
+ 'name' => 'Gutentor',
1671
+ 'slug' => 'gutentor',
1672
+ ),
1673
+ array(
1674
+ 'name' => 'Page Builder by SiteOrigin',
1675
+ 'slug' => 'siteorigin-panels'
1676
+ ),
1677
+ array(
1678
+ 'name' => 'Contact Form 7',
1679
+ 'slug' => 'contact-form-7',
1680
+ 'main_file' => 'wp-contact-form-7.php',
1681
+ ),
1682
+ )
1683
+ ),
1684
+ 'demo-4' =>array(
1685
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1686
+ 'is_premium' => true,/*Premium*/
1687
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1688
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1689
+ 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1690
+ 'categories' => array( 'mercantile' ),/*Categories*/
1691
+ 'template_url' => array(
1692
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1693
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1694
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1695
+ ),
1696
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1697
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/home-3',/*Demo Url*/
1698
+ /**/
1699
+ 'plugins' => array(
1700
+ array(
1701
+ 'name' => 'Gutentor',
1702
+ 'slug' => 'gutentor',
1703
+ ),
1704
+ array(
1705
+ 'name' => 'Page Builder by SiteOrigin',
1706
+ 'slug' => 'siteorigin-panels'
1707
+ ),
1708
+ array(
1709
+ 'name' => 'WooCommerce',
1710
+ 'slug' => 'woocommerce'
1711
+ ),
1712
+ array(
1713
+ 'name' => 'Contact Form 7',
1714
+ 'slug' => 'contact-form-7',
1715
+ 'main_file' => 'wp-contact-form-7.php',
1716
+ ),
1717
+ )
1718
+ ),
1719
+ 'demo-5' =>array(
1720
+ 'title' => __( 'Demo 5', 'acmethemes' ),/*Title*/
1721
+ 'is_premium' => true,/*Premium*/
1722
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1723
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1724
+ 'keywords' => array( 'main', 'demo' ,'demo-5' ),/*Search keyword*/
1725
+ 'categories' => array( 'mercantile' ),/*Categories*/
1726
+ 'template_url' => array(
1727
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/content.json',
1728
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/options.json',
1729
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/widgets.json'
1730
+ ),
1731
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/screenshot.jpg',/*Screenshot of block*/
1732
+ 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/home-4',/*Demo Url*/
1733
+ /**/
1734
+ 'plugins' => array(
1735
+ array(
1736
+ 'name' => 'Gutentor',
1737
+ 'slug' => 'gutentor',
1738
+ ),
1739
+ array(
1740
+ 'name' => 'Page Builder by SiteOrigin',
1741
+ 'slug' => 'siteorigin-panels'
1742
+ ),
1743
+ array(
1744
+ 'name' => 'Contact Form 7',
1745
+ 'slug' => 'contact-form-7',
1746
+ 'main_file' => 'wp-contact-form-7.php',
1747
+ ),
1748
+ )
1749
+ ),
1750
+ );
1751
+ break;
1752
+ case "read-more":
1753
+ $demo_templates_lists = array(
1754
+ 'demo-1' =>array(
1755
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1756
+ 'is_premium' => false,/*Premium*/
1757
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1758
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1759
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1760
+ 'categories' => array( 'magazine' ),/*Categories*/
1761
+ 'template_url' => array(
1762
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1763
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1764
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1765
+ ),
1766
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1767
+ 'demo_url' => 'http://www.demo.acmethemes.com/read-more/',/*Demo Url*/
1768
+ /**/
1769
+ 'plugins' => array(
1770
+ array(
1771
+ 'name' => 'Gutentor',
1772
+ 'slug' => 'gutentor',
1773
+ ),
1774
+ array(
1775
+ 'name' => 'Acme Fix Images',
1776
+ 'slug' => 'acme-fix-images',
1777
+ ),
1778
+ array(
1779
+ 'name' => 'Contact Form 7',
1780
+ 'slug' => 'contact-form-7',
1781
+ 'main_file' => 'wp-contact-form-7.php',
1782
+ ),
1783
+ )
1784
+ ),
1785
+ 'demo-2' =>array(
1786
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1787
+ 'is_premium' => false,/*Premium*/
1788
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1789
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1790
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1791
+ 'categories' => array( 'woocommerce' ),/*Categories*/
1792
+ 'template_url' => array(
1793
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1794
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1795
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1796
+ ),
1797
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1798
+ 'demo_url' => 'http://www.demo.acmethemes.com/read-more/home-1',/*Demo Url*/
1799
+ /**/
1800
+ 'plugins' => array(
1801
+ array(
1802
+ 'name' => 'Gutentor',
1803
+ 'slug' => 'gutentor',
1804
+ ),
1805
+ array(
1806
+ 'name' => 'Acme Fix Images',
1807
+ 'slug' => 'acme-fix-images',
1808
+ ),
1809
+ array(
1810
+ 'name' => 'WooCommerce',
1811
+ 'slug' => 'woocommerce'
1812
+ ),
1813
+ array(
1814
+ 'name' => 'Contact Form 7',
1815
+ 'slug' => 'contact-form-7',
1816
+ 'main_file' => 'wp-contact-form-7.php',
1817
+ ),
1818
+ )
1819
+ ),
1820
+ 'demo-3' =>array(
1821
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1822
+ 'is_premium' => false,/*Premium*/
1823
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1824
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1825
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1826
+ 'categories' => array( 'magazine' ),/*Categories*/
1827
+ 'template_url' => array(
1828
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1829
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1830
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1831
+ ),
1832
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1833
+ 'demo_url' => 'http://www.demo.acmethemes.com/read-more/home-2',/*Demo Url*/
1834
+ /**/
1835
+ 'plugins' => array(
1836
+ array(
1837
+ 'name' => 'Gutentor',
1838
+ 'slug' => 'gutentor',
1839
+ ),
1840
+ array(
1841
+ 'name' => 'Acme Fix Images',
1842
+ 'slug' => 'acme-fix-images',
1843
+ ),
1844
+ array(
1845
+ 'name' => 'Contact Form 7',
1846
+ 'slug' => 'contact-form-7',
1847
+ 'main_file' => 'wp-contact-form-7.php',
1848
+ ),
1849
+ )
1850
+ ),
1851
+ 'demo-4' =>array(
1852
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1853
+ 'is_premium' => false,/*Premium*/
1854
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1855
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1856
+ 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1857
+ 'categories' => array( 'magazine' ),/*Categories*/
1858
+ 'template_url' => array(
1859
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1860
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1861
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1862
+ ),
1863
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1864
+ 'demo_url' => 'http://www.demo.acmethemes.com/read-more/home-3',/*Demo Url*/
1865
+ /**/
1866
+ 'plugins' => array(
1867
+ array(
1868
+ 'name' => 'Gutentor',
1869
+ 'slug' => 'gutentor',
1870
+ ),
1871
+ array(
1872
+ 'name' => 'Acme Fix Images',
1873
+ 'slug' => 'acme-fix-images',
1874
+ ),
1875
+ array(
1876
+ 'name' => 'Contact Form 7',
1877
+ 'slug' => 'contact-form-7',
1878
+ 'main_file' => 'wp-contact-form-7.php',
1879
+ ),
1880
+ )
1881
+ ),
1882
+ );
1883
+ break;
1884
+ case "read-more-pro":
1885
+ $demo_templates_lists = array(
1886
+ 'demo-1' =>array(
1887
+ 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1888
+ 'is_premium' => false,/*Premium*/
1889
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1890
+ 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1891
+ 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1892
+ 'categories' => array( 'magazine' ),/*Categories*/
1893
+ 'template_url' => array(
1894
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1895
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1896
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1897
+ ),
1898
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1899
+ 'demo_url' => 'http://www.demo.acmethemes.com/read-more-pro/',/*Demo Url*/
1900
+ /**/
1901
+ 'plugins' => array(
1902
+ array(
1903
+ 'name' => 'Gutentor',
1904
+ 'slug' => 'gutentor',
1905
+ ),
1906
+ array(
1907
+ 'name' => 'Acme Fix Images',
1908
+ 'slug' => 'acme-fix-images',
1909
+ ),
1910
+ array(
1911
+ 'name' => 'Contact Form 7',
1912
+ 'slug' => 'contact-form-7',
1913
+ 'main_file' => 'wp-contact-form-7.php',
1914
+ ),
1915
+ )
1916
+ ),
1917
+ 'demo-2' =>array(
1918
+ 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1919
+ 'is_premium' => false,/*Premium*/
1920
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1921
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1922
+ 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1923
+ 'categories' => array( 'woocommerce' ),/*Categories*/
1924
+ 'template_url' => array(
1925
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1926
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1927
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1928
+ ),
1929
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1930
+ 'demo_url' => 'http://www.demo.acmethemes.com/read-more-pro/home-1',/*Demo Url*/
1931
+ /**/
1932
+ 'plugins' => array(
1933
+ array(
1934
+ 'name' => 'Gutentor',
1935
+ 'slug' => 'gutentor',
1936
+ ),
1937
+ array(
1938
+ 'name' => 'Acme Fix Images',
1939
+ 'slug' => 'acme-fix-images',
1940
+ ),
1941
+ array(
1942
+ 'name' => 'WooCommerce',
1943
+ 'slug' => 'woocommerce'
1944
+ ),
1945
+ array(
1946
+ 'name' => 'Contact Form 7',
1947
+ 'slug' => 'contact-form-7',
1948
+ 'main_file' => 'wp-contact-form-7.php',
1949
+ ),
1950
+ )
1951
+ ),
1952
+ 'demo-3' =>array(
1953
+ 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1954
+ 'is_premium' => false,/*Premium*/
1955
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1956
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1957
+ 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1958
+ 'categories' => array( 'magazine' ),/*Categories*/
1959
+ 'template_url' => array(
1960
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1961
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1962
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1963
+ ),
1964
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1965
+ 'demo_url' => 'http://www.demo.acmethemes.com/read-more-pro/home-2',/*Demo Url*/
1966
+ /**/
1967
+ 'plugins' => array(
1968
+ array(
1969
+ 'name' => 'Gutentor',
1970
+ 'slug' => 'gutentor',
1971
+ ),
1972
+ array(
1973
+ 'name' => 'Acme Fix Images',
1974
+ 'slug' => 'acme-fix-images',
1975
+ ),
1976
+ array(
1977
+ 'name' => 'Contact Form 7',
1978
+ 'slug' => 'contact-form-7',
1979
+ 'main_file' => 'wp-contact-form-7.php',
1980
+ ),
1981
+ )
1982
+ ),
1983
+ 'demo-4' =>array(
1984
+ 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1985
+ 'is_premium' => false,/*Premium*/
1986
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1987
+ 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1988
+ 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1989
+ 'categories' => array( 'personal-blog' ),/*Categories*/
1990
+ 'template_url' => array(
1991
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1992
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1993
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1994
+ ),
1995
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1996
+ 'demo_url' => 'http://www.demo.acmethemes.com/read-more-pro/home-3',/*Demo Url*/
1997
+ /**/
1998
+ 'plugins' => array(
1999
+ array(
2000
+ 'name' => 'Gutentor',
2001
+ 'slug' => 'gutentor',
2002
+ ),
2003
+ array(
2004
+ 'name' => 'Acme Fix Images',
2005
+ 'slug' => 'acme-fix-images',
2006
+ ),
2007
+ array(
2008
+ 'name' => 'Contact Form 7',
2009
+ 'slug' => 'contact-form-7',
2010
+ 'main_file' => 'wp-contact-form-7.php',
2011
+ ),
2012
+ )
2013
+ ),
2014
+ );
2015
+ break;
2016
+ case "education-base":
2017
+ $demo_templates_lists = array(
2018
+ 'demo-1' =>array(
2019
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2020
+ 'is_premium' => false,/*Premium*/
2021
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2022
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2023
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2024
+ 'categories' => array( 'education' ),/*Categories*/
2025
+ 'template_url' => array(
2026
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2027
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2028
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2029
+ ),
2030
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2031
+ 'demo_url' => 'http://www.demo.acmethemes.com/education-base/',/*Demo Url*/
2032
+ /**/
2033
+ 'plugins' => array(
2034
+ array(
2035
+ 'name' => 'Gutentor',
2036
+ 'slug' => 'gutentor',
2037
+ ),
2038
+ array(
2039
+ 'name' => 'Acme Fix Images',
2040
+ 'slug' => 'acme-fix-images',
2041
+ ),
2042
+ array(
2043
+ 'name' => 'Contact Form 7',
2044
+ 'slug' => 'contact-form-7',
2045
+ 'main_file' => 'wp-contact-form-7.php',
2046
+ ),
2047
+ array(
2048
+ 'name' => 'Honeypot for Contact Form 7',
2049
+ 'slug' => 'contact-form-7-honeypot',
2050
+ ),
2051
+ )
2052
+ ),
2053
+ );
2054
+ break;
2055
+ case "education-base-pro":
2056
+ $demo_templates_lists = array(
2057
+ 'demo-1' =>array(
2058
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2059
+ 'is_premium' => true,/*Premium*/
2060
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2061
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2062
+ 'keywords' => array( 'main', 'demo','demo-2' ),/*Search keyword*/
2063
+ 'categories' => array( 'education' ),/*Categories*/
2064
+ 'template_url' => array(
2065
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2066
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2067
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2068
+ ),
2069
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2070
+ 'demo_url' => 'http://www.demo.acmethemes.com/education-base-pro/',/*Demo Url*/
2071
+ /**/
2072
+ 'plugins' => array(
2073
+ array(
2074
+ 'name' => 'Gutentor',
2075
+ 'slug' => 'gutentor',
2076
+ ),
2077
+ array(
2078
+ 'name' => 'Acme Fix Images',
2079
+ 'slug' => 'acme-fix-images',
2080
+ ),
2081
+ array(
2082
+ 'name' => 'Contact Form 7',
2083
+ 'slug' => 'contact-form-7',
2084
+ 'main_file' => 'wp-contact-form-7.php',
2085
+ ),
2086
+ array(
2087
+ 'name' => 'WooCommerce',
2088
+ 'slug' => 'woocommerce'
2089
+ ),
2090
+ )
2091
+ ),
2092
+ 'demo-2' =>array(
2093
+ 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
2094
+ 'is_premium' => true,/*Premium*/
2095
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2096
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2097
+ 'keywords' => array( 'main','demo', 'demo-2' ),/*Search keyword*/
2098
+ 'categories' => array( 'education' ),/*Categories*/
2099
+ 'template_url' => array(
2100
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2101
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2102
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2103
+ ),
2104
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2105
+ 'demo_url' => 'http://www.demo.acmethemes.com/education-base-pro/home-1',/*Demo Url*/
2106
+ /**/
2107
+ 'plugins' => array(
2108
+ array(
2109
+ 'name' => 'Gutentor',
2110
+ 'slug' => 'gutentor',
2111
+ ),
2112
+ array(
2113
+ 'name' => 'Acme Fix Images',
2114
+ 'slug' => 'acme-fix-images',
2115
+ ),
2116
+ array(
2117
+ 'name' => 'Contact Form 7',
2118
+ 'slug' => 'contact-form-7',
2119
+ 'main_file' => 'wp-contact-form-7.php',
2120
+ ),
2121
+ array(
2122
+ 'name' => 'WooCommerce',
2123
+ 'slug' => 'woocommerce'
2124
+ ),
2125
+ )
2126
+ ),
2127
+ 'demo-3' =>array(
2128
+ 'title' => __( 'Demo 3', 'acmeblog' ),/*Title*/
2129
+ 'is_premium' => true,/*Premium*/
2130
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2131
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2132
+ 'keywords' => array( 'main', 'demo','demo-3' ),/*Search keyword*/
2133
+ 'categories' => array( 'multipurpose' ),/*Categories*/
2134
+ 'template_url' => array(
2135
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
2136
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
2137
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
2138
+ ),
2139
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
2140
+ 'demo_url' => 'http://www.demo.acmethemes.com/education-base-pro/home-2',/*Demo Url*/
2141
+ /**/
2142
+ 'plugins' => array(
2143
+ array(
2144
+ 'name' => 'Gutentor',
2145
+ 'slug' => 'gutentor',
2146
+ ),
2147
+ array(
2148
+ 'name' => 'Acme Fix Images',
2149
+ 'slug' => 'acme-fix-images',
2150
+ ),
2151
+ array(
2152
+ 'name' => 'Contact Form 7',
2153
+ 'slug' => 'contact-form-7',
2154
+ 'main_file' => 'wp-contact-form-7.php',
2155
+ ),
2156
+ array(
2157
+ 'name' => 'WooCommerce',
2158
+ 'slug' => 'woocommerce'
2159
+ ),
2160
+ )
2161
+ ),
2162
+ 'demo-4' =>array(
2163
+ 'title' => __( 'Demo 4', 'acmeblog' ),/*Title*/
2164
+ 'is_premium' => true,/*Premium*/
2165
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2166
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2167
+ 'keywords' => array( 'main', 'demo','demo-4'),/*Search keyword*/
2168
+ 'categories' => array( 'blog' ),/*Categories*/
2169
+ 'template_url' => array(
2170
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
2171
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
2172
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
2173
+ ),
2174
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
2175
+ 'demo_url' => 'http://www.demo.acmethemes.com/education-base-pro/home-3',/*Demo Url*/
2176
+ /**/
2177
+ 'plugins' => array(
2178
+ array(
2179
+ 'name' => 'Gutentor',
2180
+ 'slug' => 'gutentor',
2181
+ ),
2182
+ array(
2183
+ 'name' => 'Acme Fix Images',
2184
+ 'slug' => 'acme-fix-images',
2185
+ ),
2186
+ array(
2187
+ 'name' => 'Contact Form 7',
2188
+ 'slug' => 'contact-form-7',
2189
+ 'main_file' => 'wp-contact-form-7.php',
2190
+ ),
2191
+ array(
2192
+ 'name' => 'WooCommerce',
2193
+ 'slug' => 'woocommerce'
2194
+ ),
2195
+ )
2196
+ ),
2197
+ );
2198
+ break;
2199
+ case "prolific":
2200
+ $demo_templates_lists = array(
2201
+ 'demo-1' =>array(
2202
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2203
+ 'is_premium' => false,/*Premium*/
2204
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2205
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2206
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2207
+ 'categories' => array( 'blog' ),/*Categories*/
2208
+ 'template_url' => array(
2209
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2210
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2211
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2212
+ ),
2213
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2214
+ 'demo_url' => 'http://www.demo.acmethemes.com/prolific/',/*Demo Url*/
2215
+ /**/
2216
+ 'plugins' => array(
2217
+ array(
2218
+ 'name' => 'Gutentor',
2219
+ 'slug' => 'gutentor',
2220
+ ),
2221
+ array(
2222
+ 'name' => 'WooCommerce',
2223
+ 'slug' => 'woocommerce'
2224
+ ),
2225
+ array(
2226
+ 'name' => 'Contact Form 7',
2227
+ 'slug' => 'contact-form-7',
2228
+ 'main_file' => 'wp-contact-form-7.php',
2229
+ ),
2230
+ )
2231
+ ),
2232
+ );
2233
+ break;
2234
+ case "prolificpro":
2235
+ $demo_templates_lists = array(
2236
+ 'demo-1' =>array(
2237
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2238
+ 'is_premium' => true,/*Premium*/
2239
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2240
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2241
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2242
+ 'categories' => array( 'blog' ),/*Categories*/
2243
+ 'template_url' => array(
2244
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2245
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2246
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2247
+ ),
2248
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2249
+ 'demo_url' => 'http://www.demo.acmethemes.com/prolificpro/',/*Demo Url*/
2250
+ /**/
2251
+ 'plugins' => array(
2252
+ array(
2253
+ 'name' => 'Gutentor',
2254
+ 'slug' => 'gutentor',
2255
+ ),
2256
+ array(
2257
+ 'name' => 'Contact Form 7',
2258
+ 'slug' => 'contact-form-7',
2259
+ 'main_file' => 'wp-contact-form-7.php',
2260
+ ),
2261
+ )
2262
+ ),
2263
+ 'demo-2' =>array(
2264
+ 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
2265
+ 'is_premium' => true,/*Premium*/
2266
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2267
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2268
+ 'keywords' => array( 'main', 'demo', 'demo-2'),/*Search keyword*/
2269
+ 'categories' => array( 'blog' ),/*Categories*/
2270
+ 'template_url' => array(
2271
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2272
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2273
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2274
+ ),
2275
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2276
+ 'demo_url' => 'http://www.demo.acmethemes.com/prolificpro/home-1',/*Demo Url*/
2277
+ /**/
2278
+ 'plugins' => array(
2279
+ array(
2280
+ 'name' => 'Gutentor',
2281
+ 'slug' => 'gutentor',
2282
+ ),
2283
+ array(
2284
+ 'name' => 'Contact Form 7',
2285
+ 'slug' => 'contact-form-7',
2286
+ 'main_file' => 'wp-contact-form-7.php',
2287
+ ),
2288
+ )
2289
+ ),
2290
+ );
2291
+ break;
2292
+ case "medical-circle":
2293
+ $demo_templates_lists = array(
2294
+ 'demo-1' =>array(
2295
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2296
+ 'is_premium' => false,/*Premium*/
2297
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2298
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2299
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2300
+ 'categories' => array( 'medical' ),/*Categories*/
2301
+ 'template_url' => array(
2302
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2303
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2304
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2305
+ ),
2306
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2307
+ 'demo_url' => 'http://www.demo.acmethemes.com/medical-circle/',/*Demo Url*/
2308
+ /**/
2309
+ 'plugins' => array(
2310
+ array(
2311
+ 'name' => 'Gutentor',
2312
+ 'slug' => 'gutentor',
2313
+ ),
2314
+ array(
2315
+ 'name' => 'Contact Form 7',
2316
+ 'slug' => 'contact-form-7',
2317
+ 'main_file' => 'wp-contact-form-7.php',
2318
+ ),
2319
+ )
2320
+ ),
2321
+ );
2322
+ break;
2323
+ case "medical-circle-pro":
2324
+ $demo_templates_lists = array(
2325
+ 'demo-1' =>array(
2326
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2327
+ 'is_premium' => true,/*Premium*/
2328
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2329
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2330
+ 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2331
+ 'categories' => array( 'medical' ),/*Categories*/
2332
+ 'template_url' => array(
2333
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2334
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2335
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2336
+ ),
2337
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2338
+ 'demo_url' => 'http://www.demo.acmethemes.com/medical-circle-pro/',/*Demo Url*/
2339
+ /**/
2340
+ 'plugins' => array(
2341
+ array(
2342
+ 'name' => 'Gutentor',
2343
+ 'slug' => 'gutentor',
2344
+ ),
2345
+ array(
2346
+ 'name' => 'Contact Form 7',
2347
+ 'slug' => 'contact-form-7',
2348
+ 'main_file' => 'wp-contact-form-7.php',
2349
+ ),
2350
+ )
2351
+ ),
2352
+ );
2353
+ break;
2354
+ case "online-shop":
2355
+ $demo_templates_lists = array(
2356
+ 'demo-1' =>array(
2357
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2358
+ 'is_premium' => false,/*Premium*/
2359
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2360
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2361
+ 'keywords' => array( 'main', 'demo' ,'demo-1'),/*Search keyword*/
2362
+ 'categories' => array( 'shop' ),/*Categories*/
2363
+ 'template_url' => array(
2364
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2365
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2366
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2367
+ ),
2368
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2369
+ 'demo_url' => 'http://www.demo.acmethemes.com/online-shop/',/*Demo Url*/
2370
+ /**/
2371
+ 'plugins' => array(
2372
+ array(
2373
+ 'name' => 'Gutentor',
2374
+ 'slug' => 'gutentor',
2375
+ ),
2376
+ array(
2377
+ 'name' => 'Acme Fix Images',
2378
+ 'slug' => 'acme-fix-images',
2379
+ ),
2380
+ array(
2381
+ 'name' => 'WooCommerce',
2382
+ 'slug' => 'woocommerce'
2383
+ ),
2384
+ array(
2385
+ 'name' => 'Contact Form 7',
2386
+ 'slug' => 'contact-form-7',
2387
+ 'main_file' => 'wp-contact-form-7.php',
2388
+ ),
2389
+ )
2390
+ ),
2391
+ 'demo-2' =>array(
2392
+ 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
2393
+ 'is_premium' => false,/*Premium*/
2394
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2395
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2396
+ 'keywords' => array( 'main', 'demo', 'demo-2' ),/*Search keyword*/
2397
+ 'categories' => array( 'shop' ),/*Categories*/
2398
+ 'template_url' => array(
2399
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2400
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2401
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2402
+ ),
2403
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2404
+ 'demo_url' => 'http://www.demo.acmethemes.com/online-shop/home-1',/*Demo Url*/
2405
+ /**/
2406
+ 'plugins' => array(
2407
+ array(
2408
+ 'name' => 'Gutentor',
2409
+ 'slug' => 'gutentor',
2410
+ ),
2411
+ array(
2412
+ 'name' => 'Acme Fix Images',
2413
+ 'slug' => 'acme-fix-images',
2414
+ ),
2415
+ array(
2416
+ 'name' => 'WooCommerce',
2417
+ 'slug' => 'woocommerce'
2418
+ ),
2419
+ array(
2420
+ 'name' => 'YITH WooCommerce Wishlist',
2421
+ 'slug' => 'yith-woocommerce-wishlist'
2422
+ ),
2423
+ array(
2424
+ 'name' => 'Contact Form 7',
2425
+ 'slug' => 'contact-form-7',
2426
+ 'main_file' => 'wp-contact-form-7.php',
2427
+ ),
2428
+ )
2429
+ ),
2430
+ );
2431
+ break;
2432
+ case "online-shop-pro":
2433
+ $demo_templates_lists = array(
2434
+ 'demo-1' =>array(
2435
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2436
+ 'is_premium' => true,/*Premium*/
2437
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2438
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2439
+ 'keywords' => array( 'main', 'demo' ,'demo-1'),/*Search keyword*/
2440
+ 'categories' => array( 'shop' ),/*Categories*/
2441
+ 'template_url' => array(
2442
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2443
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2444
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2445
+ ),
2446
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2447
+ 'demo_url' => 'http://www.demo.acmethemes.com/online-shop-pro/',/*Demo Url*/
2448
+ /**/
2449
+ 'plugins' => array(
2450
+ array(
2451
+ 'name' => 'Gutentor',
2452
+ 'slug' => 'gutentor',
2453
+ ),
2454
+ array(
2455
+ 'name' => 'Acme Fix Images',
2456
+ 'slug' => 'acme-fix-images',
2457
+ ),
2458
+ array(
2459
+ 'name' => 'WooCommerce',
2460
+ 'slug' => 'woocommerce'
2461
+ ),
2462
+ array(
2463
+ 'name' => 'YITH WooCommerce Wishlist',
2464
+ 'slug' => 'yith-woocommerce-wishlist'
2465
+ ),
2466
+ array(
2467
+ 'name' => 'Contact Form 7',
2468
+ 'slug' => 'contact-form-7',
2469
+ 'main_file' => 'wp-contact-form-7.php',
2470
+ ),
2471
+ )
2472
+ ),
2473
+ 'demo-2' =>array(
2474
+ 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
2475
+ 'is_premium' => true,/*Premium*/
2476
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2477
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2478
+ 'keywords' => array( 'main', 'demo', 'demo-2' ),/*Search keyword*/
2479
+ 'categories' => array( 'shop' ),/*Categories*/
2480
+ 'template_url' => array(
2481
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2482
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2483
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2484
+ ),
2485
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2486
+ 'demo_url' => 'http://www.demo.acmethemes.com/online-shop-pro/home-1',/*Demo Url*/
2487
+ /**/
2488
+ 'plugins' => array(
2489
+ array(
2490
+ 'name' => 'Gutentor',
2491
+ 'slug' => 'gutentor',
2492
+ ),
2493
+ array(
2494
+ 'name' => 'Acme Fix Images',
2495
+ 'slug' => 'acme-fix-images',
2496
+ ),
2497
+ array(
2498
+ 'name' => 'WooCommerce',
2499
+ 'slug' => 'woocommerce'
2500
+ ),
2501
+ array(
2502
+ 'name' => 'YITH WooCommerce Wishlist',
2503
+ 'slug' => 'yith-woocommerce-wishlist'
2504
+ ),
2505
+ array(
2506
+ 'name' => 'Contact Form 7',
2507
+ 'slug' => 'contact-form-7',
2508
+ 'main_file' => 'wp-contact-form-7.php',
2509
+ ),
2510
+ )
2511
+ ),
2512
+ 'demo-3' =>array(
2513
+ 'title' => __( 'Demo 3', 'acmeblog' ),/*Title*/
2514
+ 'is_premium' => true,/*Premium*/
2515
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2516
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2517
+ 'keywords' => array( 'main', 'demo', 'demo-3' ),/*Search keyword*/
2518
+ 'categories' => array( 'shop' ),/*Categories*/
2519
+ 'template_url' => array(
2520
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
2521
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
2522
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
2523
+ ),
2524
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
2525
+ 'demo_url' => 'http://www.demo.acmethemes.com/online-shop-pro/home-2',/*Demo Url*/
2526
+ /**/
2527
+ 'plugins' => array(
2528
+ array(
2529
+ 'name' => 'Gutentor',
2530
+ 'slug' => 'gutentor',
2531
+ ),
2532
+ array(
2533
+ 'name' => 'Acme Fix Images',
2534
+ 'slug' => 'acme-fix-images',
2535
+ ),
2536
+ array(
2537
+ 'name' => 'WooCommerce',
2538
+ 'slug' => 'woocommerce'
2539
+ ),
2540
+ array(
2541
+ 'name' => 'YITH WooCommerce Wishlist',
2542
+ 'slug' => 'yith-woocommerce-wishlist'
2543
+ ),
2544
+ array(
2545
+ 'name' => 'Contact Form 7',
2546
+ 'slug' => 'contact-form-7',
2547
+ 'main_file' => 'wp-contact-form-7.php',
2548
+ ),
2549
+ )
2550
+ ),
2551
+ );
2552
+ break;
2553
+ case "event-star-pro":
2554
+ $demo_templates_lists = array(
2555
+ 'demo-1' =>array(
2556
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2557
+ 'is_premium' => true,/*Premium*/
2558
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2559
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2560
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2561
+ 'categories' => array( 'event' ),/*Categories*/
2562
+ 'template_url' => array(
2563
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2564
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2565
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2566
+ ),
2567
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2568
+ 'demo_url' => 'http://www.demo.acmethemes.com/event-star-pro/',/*Demo Url*/
2569
+ /**/
2570
+ 'plugins' => array(
2571
+ array(
2572
+ 'name' => 'Gutentor',
2573
+ 'slug' => 'gutentor',
2574
+ ),
2575
+ array(
2576
+ 'name' => 'Page Builder by SiteOrigin',
2577
+ 'slug' => 'siteorigin-panels'
2578
+ ),
2579
+ array(
2580
+ 'name' => 'Contact Form 7',
2581
+ 'slug' => 'contact-form-7',
2582
+ 'main_file' => 'wp-contact-form-7.php',
2583
+ ),
2584
+ )
2585
+ ),
2586
+ );
2587
+ break;
2588
+ case "event-star":
2589
+ $demo_templates_lists = array(
2590
+ 'demo-1' =>array(
2591
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2592
+ 'is_premium' => false,/*Premium*/
2593
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2594
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2595
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2596
+ 'categories' => array( 'event' ),/*Categories*/
2597
+ 'template_url' => array(
2598
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2599
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2600
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2601
+ ),
2602
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2603
+ 'demo_url' => 'http://www.demo.acmethemes.com/event-star/',/*Demo Url*/
2604
+ /**/
2605
+ 'plugins' => array(
2606
+ array(
2607
+ 'name' => 'Gutentor',
2608
+ 'slug' => 'gutentor',
2609
+ ),
2610
+ array(
2611
+ 'name' => 'Page Builder by SiteOrigin',
2612
+ 'slug' => 'siteorigin-panels'
2613
+ ),
2614
+ array(
2615
+ 'name' => 'Contact Form 7',
2616
+ 'slug' => 'contact-form-7',
2617
+ 'main_file' => 'wp-contact-form-7.php',
2618
+ ),
2619
+ )
2620
+ ),
2621
+ );
2622
+ break;
2623
+ case "construction-field-pro":
2624
+ $demo_templates_lists = array(
2625
+ 'demo-1' =>array(
2626
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2627
+ 'is_premium' => true,/*Premium*/
2628
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2629
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2630
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2631
+ 'categories' => array( 'construction' ),/*Categories*/
2632
+ 'template_url' => array(
2633
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2634
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2635
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2636
+ ),
2637
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2638
+ 'demo_url' => 'http://www.demo.acmethemes.com/construction-field-pro/',/*Demo Url*/
2639
+ /**/
2640
+ 'plugins' => array(
2641
+ array(
2642
+ 'name' => 'Gutentor',
2643
+ 'slug' => 'gutentor',
2644
+ ),
2645
+ array(
2646
+ 'name' => 'Page Builder by SiteOrigin',
2647
+ 'slug' => 'siteorigin-panels'
2648
+ ),
2649
+ array(
2650
+ 'name' => 'Contact Form 7',
2651
+ 'slug' => 'contact-form-7',
2652
+ 'main_file' => 'wp-contact-form-7.php',
2653
+ ),
2654
+ )
2655
+ ),
2656
+ );
2657
+ break;
2658
+ case "construction-field":
2659
+ $demo_templates_lists = array(
2660
+ 'demo-1' =>array(
2661
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2662
+ 'is_premium' => false,/*Premium*/
2663
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2664
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2665
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2666
+ 'categories' => array( 'construction' ),/*Categories*/
2667
+ 'template_url' => array(
2668
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2669
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2670
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2671
+ ),
2672
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2673
+ 'demo_url' => 'http://www.demo.acmethemes.com/construction-field/',/*Demo Url*/
2674
+ /**/
2675
+ 'plugins' => array(
2676
+ array(
2677
+ 'name' => 'Gutentor',
2678
+ 'slug' => 'gutentor',
2679
+ ),
2680
+ array(
2681
+ 'name' => 'Page Builder by SiteOrigin',
2682
+ 'slug' => 'siteorigin-panels'
2683
+ ),
2684
+ array(
2685
+ 'name' => 'Contact Form 7',
2686
+ 'slug' => 'contact-form-7',
2687
+ 'main_file' => 'wp-contact-form-7.php',
2688
+ ),
2689
+ )
2690
+ ),
2691
+ );
2692
+ break;
2693
+ case "beauty-studio-pro":
2694
+ $demo_templates_lists = array(
2695
+ 'demo-1' =>array(
2696
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2697
+ 'is_premium' => true,/*Premium*/
2698
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2699
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2700
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2701
+ 'categories' => array( 'beauty' ),/*Categories*/
2702
+ 'template_url' => array(
2703
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2704
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2705
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2706
+ ),
2707
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2708
+ 'demo_url' => 'http://www.demo.acmethemes.com/beauty-studio-pro/',/*Demo Url*/
2709
+ /**/
2710
+ 'plugins' => array(
2711
+ array(
2712
+ 'name' => 'Gutentor',
2713
+ 'slug' => 'gutentor',
2714
+ ),
2715
+ array(
2716
+ 'name' => 'Page Builder by SiteOrigin',
2717
+ 'slug' => 'siteorigin-panels'
2718
+ ),
2719
+ array(
2720
+ 'name' => 'Contact Form 7',
2721
+ 'slug' => 'contact-form-7',
2722
+ 'main_file' => 'wp-contact-form-7.php',
2723
+ ),
2724
+ )
2725
+ ),
2726
+ );
2727
+ break;
2728
+ break;
2729
+ case "beauty-studio":
2730
+ $demo_templates_lists = array(
2731
+ 'demo-1' =>array(
2732
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2733
+ 'is_premium' => false,/*Premium*/
2734
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2735
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2736
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2737
+ 'categories' => array( 'beauty' ),/*Categories*/
2738
+ 'template_url' => array(
2739
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2740
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2741
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2742
+ ),
2743
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2744
+ 'demo_url' => 'http://www.demo.acmethemes.com/beauty-studio/',/*Demo Url*/
2745
+ /**/
2746
+ 'plugins' => array(
2747
+ array(
2748
+ 'name' => 'Gutentor',
2749
+ 'slug' => 'gutentor',
2750
+ ),
2751
+ array(
2752
+ 'name' => 'Page Builder by SiteOrigin',
2753
+ 'slug' => 'siteorigin-panels'
2754
+ ),
2755
+ array(
2756
+ 'name' => 'Contact Form 7',
2757
+ 'slug' => 'contact-form-7',
2758
+ 'main_file' => 'wp-contact-form-7.php',
2759
+ ),
2760
+ )
2761
+ ),
2762
+ );
2763
+ break;
2764
+ break;
2765
+ case "lawyer-zone-pro":
2766
+ $demo_templates_lists = array(
2767
+ 'demo-1' =>array(
2768
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2769
+ 'is_premium' => true,/*Premium*/
2770
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2771
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2772
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2773
+ 'categories' => array( 'lawyer' ),/*Categories*/
2774
+ 'template_url' => array(
2775
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2776
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2777
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2778
+ ),
2779
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2780
+ 'demo_url' => 'http://www.demo.acmethemes.com/lawyer-zone-pro/',/*Demo Url*/
2781
+ /**/
2782
+ 'plugins' => array(
2783
+ array(
2784
+ 'name' => 'Gutentor',
2785
+ 'slug' => 'gutentor',
2786
+ ),
2787
+ array(
2788
+ 'name' => 'Page Builder by SiteOrigin',
2789
+ 'slug' => 'siteorigin-panels'
2790
+ ),
2791
+ array(
2792
+ 'name' => 'Contact Form 7',
2793
+ 'slug' => 'contact-form-7',
2794
+ 'main_file' => 'wp-contact-form-7.php',
2795
+ ),
2796
+ )
2797
+ ),
2798
+ );
2799
+ break;
2800
+ case "lawyer-zone":
2801
+ $demo_templates_lists = array(
2802
+ 'demo-1' =>array(
2803
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2804
+ 'is_premium' => false,/*Premium*/
2805
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2806
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2807
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2808
+ 'categories' => array( 'lawyer' ),/*Categories*/
2809
+ 'template_url' => array(
2810
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2811
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2812
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2813
+ ),
2814
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2815
+ 'demo_url' => 'http://www.demo.acmethemes.com/lawyer-zone/',/*Demo Url*/
2816
+ /**/
2817
+ 'plugins' => array(
2818
+ array(
2819
+ 'name' => 'Gutentor',
2820
+ 'slug' => 'gutentor',
2821
+ ),
2822
+ array(
2823
+ 'name' => 'Page Builder by SiteOrigin',
2824
+ 'slug' => 'siteorigin-panels'
2825
+ ),
2826
+ array(
2827
+ 'name' => 'Contact Form 7',
2828
+ 'slug' => 'contact-form-7',
2829
+ 'main_file' => 'wp-contact-form-7.php',
2830
+ ),
2831
+ )
2832
+ ),
2833
+ );
2834
+ break;
2835
+ case "travel-way-pro":
2836
+ $demo_templates_lists = array(
2837
+ 'demo-1' =>array(
2838
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2839
+ 'is_premium' => true,/*Premium*/
2840
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2841
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2842
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2843
+ 'categories' => array( 'Travel' ),/*Categories*/
2844
+ 'template_url' => array(
2845
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2846
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2847
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2848
+ ),
2849
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2850
+ 'demo_url' => 'http://www.demo.acmethemes.com/travel-way-pro/',/*Demo Url*/
2851
+ /**/
2852
+ 'plugins' => array(
2853
+ array(
2854
+ 'name' => 'Gutentor',
2855
+ 'slug' => 'gutentor',
2856
+ ),
2857
+ array(
2858
+ 'name' => 'Page Builder by SiteOrigin',
2859
+ 'slug' => 'siteorigin-panels'
2860
+ ),
2861
+ array(
2862
+ 'name' => 'WooCommerce',
2863
+ 'slug' => 'woocommerce'
2864
+ ),
2865
+ array(
2866
+ 'name' => 'WPForms Lite',
2867
+ 'slug' => 'wpforms-lite',
2868
+ ),
2869
+ )
2870
+ ),
2871
+ );
2872
+ break;
2873
+ case "travel-way":
2874
+ $demo_templates_lists = array(
2875
+ 'demo-1' =>array(
2876
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2877
+ 'is_premium' => false,/*Premium*/
2878
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2879
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2880
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2881
+ 'categories' => array( 'travel' ),/*Categories*/
2882
+ 'template_url' => array(
2883
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2884
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2885
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2886
+ ),
2887
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2888
+ 'demo_url' => 'http://www.demo.acmethemes.com/travel-way/',/*Demo Url*/
2889
+ /**/
2890
+ 'plugins' => array(
2891
+ array(
2892
+ 'name' => 'Gutentor',
2893
+ 'slug' => 'gutentor',
2894
+ ),
2895
+ array(
2896
+ 'name' => 'Page Builder by SiteOrigin',
2897
+ 'slug' => 'siteorigin-panels'
2898
+ ),
2899
+ array(
2900
+ 'name' => 'WooCommerce',
2901
+ 'slug' => 'woocommerce'
2902
+ ),
2903
+ array(
2904
+ 'name' => 'Contact Form 7',
2905
+ 'slug' => 'contact-form-7',
2906
+ 'main_file' => 'wp-contact-form-7.php',
2907
+ ),
2908
+ )
2909
+ ),
2910
+ );
2911
+ break;
2912
+ case "fitness-hub-pro":
2913
+ $demo_templates_lists = array(
2914
+ 'demo-1' =>array(
2915
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2916
+ 'is_premium' => true,/*Premium*/
2917
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2918
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2919
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2920
+ 'categories' => array( 'Fitness' ),/*Categories*/
2921
+ 'template_url' => array(
2922
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2923
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2924
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2925
+ ),
2926
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2927
+ 'demo_url' => 'http://www.demo.acmethemes.com/fitness-hub-pro/',/*Demo Url*/
2928
+ /**/
2929
+ 'plugins' => array(
2930
+ array(
2931
+ 'name' => 'Gutentor',
2932
+ 'slug' => 'gutentor',
2933
+ ),
2934
+ array(
2935
+ 'name' => 'Page Builder by SiteOrigin',
2936
+ 'slug' => 'siteorigin-panels'
2937
+ ),
2938
+ array(
2939
+ 'name' => 'Contact Form 7',
2940
+ 'slug' => 'contact-form-7',
2941
+ 'main_file' => 'wp-contact-form-7.php',
2942
+ ),
2943
+ )
2944
+ ),
2945
+ );
2946
+ break;
2947
+ case "fitness-hub":
2948
+ $demo_templates_lists = array(
2949
+ 'demo-1' =>array(
2950
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2951
+ 'is_premium' => false,/*Premium*/
2952
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2953
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2954
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2955
+ 'categories' => array( 'fitness' ),/*Categories*/
2956
+ 'template_url' => array(
2957
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2958
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2959
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2960
+ ),
2961
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2962
+ 'demo_url' => 'http://www.demo.acmethemes.com/fitness-hub/',/*Demo Url*/
2963
+ /**/
2964
+ 'plugins' => array(
2965
+ array(
2966
+ 'name' => 'Gutentor',
2967
+ 'slug' => 'gutentor',
2968
+ ),
2969
+ array(
2970
+ 'name' => 'Page Builder by SiteOrigin',
2971
+ 'slug' => 'siteorigin-panels'
2972
+ ),
2973
+ array(
2974
+ 'name' => 'Contact Form 7',
2975
+ 'slug' => 'contact-form-7',
2976
+ 'main_file' => 'wp-contact-form-7.php',
2977
+ ),
2978
+ )
2979
+ ),
2980
+ );
2981
+ break;
2982
+ case "restaurant-recipe-pro":
2983
+ $demo_templates_lists = array(
2984
+ 'demo-1' =>array(
2985
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2986
+ 'is_premium' => true,/*Premium*/
2987
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2988
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2989
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2990
+ 'categories' => array( 'restaurant' ),/*Categories*/
2991
+ 'template_url' => array(
2992
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2993
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2994
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2995
+ ),
2996
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2997
+ 'demo_url' => 'http://www.demo.acmethemes.com/restaurant-recipe-pro/',/*Demo Url*/
2998
+ /**/
2999
+ 'plugins' => array(
3000
+ array(
3001
+ 'name' => 'Gutentor',
3002
+ 'slug' => 'gutentor',
3003
+ ),
3004
+ array(
3005
+ 'name' => 'Page Builder by SiteOrigin',
3006
+ 'slug' => 'siteorigin-panels'
3007
+ ),
3008
+ array(
3009
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
3010
+ 'slug' => 'breadcrumb-navxt',
3011
+ ),
3012
+ array(
3013
+ 'name' => 'Contact Form 7',
3014
+ 'slug' => 'contact-form-7',
3015
+ 'main_file' => 'wp-contact-form-7.php',
3016
+ ),
3017
+ )
3018
+ ),
3019
+ );
3020
+ break;
3021
+ case "restaurant-recipe":
3022
+ $demo_templates_lists = array(
3023
+ 'demo-1' =>array(
3024
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3025
+ 'is_premium' => false,/*Premium*/
3026
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3027
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3028
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3029
+ 'categories' => array( 'restaurant' ),/*Categories*/
3030
+ 'template_url' => array(
3031
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3032
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3033
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3034
+ ),
3035
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3036
+ 'demo_url' => 'http://www.demo.acmethemes.com/restaurant-recipe/',/*Demo Url*/
3037
+ /**/
3038
+ 'plugins' => array(
3039
+ array(
3040
+ 'name' => 'Gutentor',
3041
+ 'slug' => 'gutentor',
3042
+ ),
3043
+ array(
3044
+ 'name' => 'Page Builder by SiteOrigin',
3045
+ 'slug' => 'siteorigin-panels'
3046
+ ),
3047
+ array(
3048
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
3049
+ 'slug' => 'breadcrumb-navxt',
3050
+ ),
3051
+ array(
3052
+ 'name' => 'Contact Form 7',
3053
+ 'slug' => 'contact-form-7',
3054
+ 'main_file' => 'wp-contact-form-7.php',
3055
+ ),
3056
+ )
3057
+ ),
3058
+ );
3059
+ break;
3060
+ case "portfolio-web-pro":
3061
+ $demo_templates_lists = array(
3062
+ 'demo-1' =>array(
3063
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3064
+ 'is_premium' => true,/*Premium*/
3065
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3066
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3067
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3068
+ 'categories' => array( 'portfolio' ),/*Categories*/
3069
+ 'template_url' => array(
3070
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3071
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3072
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3073
+ ),
3074
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3075
+ 'demo_url' => 'http://www.demo.acmethemes.com/portfolio-web-pro/',/*Demo Url*/
3076
+ /**/
3077
+ 'plugins' => array(
3078
+ array(
3079
+ 'name' => 'Gutentor',
3080
+ 'slug' => 'gutentor',
3081
+ ),
3082
+ array(
3083
+ 'name' => 'Page Builder by SiteOrigin',
3084
+ 'slug' => 'siteorigin-panels'
3085
+ ),
3086
+ array(
3087
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
3088
+ 'slug' => 'breadcrumb-navxt',
3089
+ ),
3090
+ array(
3091
+ 'name' => 'Contact Form 7',
3092
+ 'slug' => 'contact-form-7',
3093
+ 'main_file' => 'wp-contact-form-7.php',
3094
+ ),
3095
+ )
3096
+ ),
3097
+ );
3098
+ break;
3099
+ case "portfolio-web":
3100
+ $demo_templates_lists = array(
3101
+ 'demo-1' =>array(
3102
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3103
+ 'is_premium' => false,/*Premium*/
3104
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3105
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3106
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3107
+ 'categories' => array( 'portfolio' ),/*Categories*/
3108
+ 'template_url' => array(
3109
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3110
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3111
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3112
+ ),
3113
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3114
+ 'demo_url' => 'http://www.demo.acmethemes.com/portfolio-web/',/*Demo Url*/
3115
+ /**/
3116
+ 'plugins' => array(
3117
+ array(
3118
+ 'name' => 'Gutentor',
3119
+ 'slug' => 'gutentor',
3120
+ ),
3121
+ array(
3122
+ 'name' => 'Page Builder by SiteOrigin',
3123
+ 'slug' => 'siteorigin-panels'
3124
+ ),
3125
+ array(
3126
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
3127
+ 'slug' => 'breadcrumb-navxt',
3128
+ ),
3129
+ array(
3130
+ 'name' => 'Contact Form 7',
3131
+ 'slug' => 'contact-form-7',
3132
+ 'main_file' => 'wp-contact-form-7.php',
3133
+ ),
3134
+ )
3135
+ ),
3136
+ );
3137
+ break;
3138
+ case "feminine-style-pro":
3139
+ $demo_templates_lists = array(
3140
+ 'demo-1' =>array(
3141
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3142
+ 'is_premium' => true,/*Premium*/
3143
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3144
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3145
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3146
+ 'categories' => array( 'feminine' ),/*Categories*/
3147
+ 'template_url' => array(
3148
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3149
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3150
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3151
+ ),
3152
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3153
+ 'demo_url' => 'http://www.demo.acmethemes.com/feminine-style-pro/',/*Demo Url*/
3154
+ /**/
3155
+ 'plugins' => array(
3156
+ array(
3157
+ 'name' => 'Gutentor',
3158
+ 'slug' => 'gutentor',
3159
+ ),
3160
+ array(
3161
+ 'name' => 'Page Builder by SiteOrigin',
3162
+ 'slug' => 'siteorigin-panels'
3163
+ ),
3164
+ array(
3165
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
3166
+ 'slug' => 'breadcrumb-navxt',
3167
+ ),
3168
+ array(
3169
+ 'name' => 'Contact Form 7',
3170
+ 'slug' => 'contact-form-7',
3171
+ 'main_file' => 'wp-contact-form-7.php',
3172
+ ),
3173
+ )
3174
+ ),
3175
+ );
3176
+ break;
3177
+ case "feminine-style":
3178
+ $demo_templates_lists = array(
3179
+ 'demo-1' =>array(
3180
+ 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3181
+ 'is_premium' => false,/*Premium*/
3182
+ 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3183
+ 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3184
+ 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3185
+ 'categories' => array( 'feminine' ),/*Categories*/
3186
+ 'template_url' => array(
3187
+ 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3188
+ 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3189
+ 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3190
+ ),
3191
+ 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3192
+ 'demo_url' => 'http://www.demo.acmethemes.com/feminine-style/',/*Demo Url*/
3193
+ /**/
3194
+ 'plugins' => array(
3195
+ array(
3196
+ 'name' => 'Gutentor',
3197
+ 'slug' => 'gutentor',
3198
+ ),
3199
+ array(
3200
+ 'name' => 'Page Builder by SiteOrigin',
3201
+ 'slug' => 'siteorigin-panels'
3202
+ ),
3203
+ array(
3204
+ 'name' => __('Breadcrumb NavXT','acmethemes' ),
3205
+ 'slug' => 'breadcrumb-navxt',
3206
+ ),
3207
+ array(
3208
+ 'name' => 'Contact Form 7',
3209
+ 'slug' => 'contact-form-7',
3210
+ 'main_file' => 'wp-contact-form-7.php',
3211
+ ),
3212
+ )
3213
+ ),
3214
+ );
3215
+ break;
3216
+ default:
3217
+ $demo_templates_lists = array();
3218
+ endswitch;
3219
+
3220
+ return $demo_templates_lists;
3221
+
3222
  }
includes/hooks.php CHANGED
@@ -276,3217 +276,20 @@ class Acme_Demo_Setup_Hooks {
276
  /**
277
  * Function to fetch templates.
278
  *
 
279
  * @return array
280
  */
281
  public function add_demo_lists( $current_demo_list ) {
282
 
283
- if( acme_demo_setup_get_current_theme_author() != $this->theme_author){
284
  return $current_demo_list;
285
  }
286
 
287
  $theme_slug = acme_demo_setup_get_current_theme_slug();
288
 
289
- switch ($theme_slug):
290
- case "acmeblog":
291
- $demo_list = array(
292
- 'demo-1' =>array(
293
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
294
- 'is_premium' => false,/*Premium*/
295
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
296
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
297
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
298
- 'categories' => array( 'blog' ),/*Categories*/
299
- 'template_url' => array(
300
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
301
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
302
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
303
- ),
304
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
305
- 'demo_url' => 'http://www.demo.acmethemes.com/acmeblog/',/*Demo Url*/
306
- /**/
307
- 'plugins' => array(
308
- array(
309
- 'name' => 'Gutentor',
310
- 'slug' => 'gutentor',
311
- ),
312
- array(
313
- 'name' => 'Acme Fix Images',
314
- 'slug' => 'acme-fix-images',
315
- ),
316
- array(
317
- 'name' => 'Contact Form 7',
318
- 'slug' => 'contact-form-7',
319
- 'main_file' => 'wp-contact-form-7.php',
320
- ),
321
- )
322
- ),
323
- );
324
- break;
325
- case "acmeblogpro":
326
- $demo_list = array(
327
- 'demo-1' =>array(
328
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
329
- 'is_premium' => true,/*Premium*/
330
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
331
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
332
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
333
- 'categories' => array( 'blog' ),/*Categories*/
334
- 'template_url' => array(
335
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
336
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
337
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
338
- ),
339
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
340
- 'demo_url' => 'http://www.demo.acmethemes.com/acmeblogpro/',/*Demo Url*/
341
- /**/
342
- 'plugins' => array(
343
- array(
344
- 'name' => 'Gutentor',
345
- 'slug' => 'gutentor',
346
- ),
347
- array(
348
- 'name' => 'Acme Fix Images',
349
- 'slug' => 'acme-fix-images',
350
- ),
351
- array(
352
- 'name' => 'Contact Form 7',
353
- 'slug' => 'contact-form-7',
354
- 'main_file' => 'wp-contact-form-7.php',
355
- ),
356
- )
357
- ),
358
- 'demo-2' =>array(
359
- 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
360
- 'is_premium' => true,/*Premium*/
361
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
362
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
363
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
364
- 'categories' => array( 'blog' ),/*Categories*/
365
- 'template_url' => array(
366
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
367
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
368
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
369
- ),
370
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
371
- 'demo_url' => 'http://www.demo.acmethemes.com/acmeblogpro/home-1',/*Demo Url*/
372
- /**/
373
- 'plugins' => array(
374
- array(
375
- 'name' => 'Gutentor',
376
- 'slug' => 'gutentor',
377
- ),
378
- array(
379
- 'name' => 'Acme Fix Images',
380
- 'slug' => 'acme-fix-images',
381
- ),
382
- array(
383
- 'name' => 'Contact Form 7',
384
- 'slug' => 'contact-form-7',
385
- 'main_file' => 'wp-contact-form-7.php',
386
- ),
387
- )
388
- ),
389
- 'demo-3' =>array(
390
- 'title' => __( 'Demo 3', 'acmeblog' ),/*Title*/
391
- 'is_premium' => true,/*Premium*/
392
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
393
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
394
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
395
- 'categories' => array( 'blog' ),/*Categories*/
396
- 'template_url' => array(
397
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
398
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
399
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
400
- ),
401
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
402
- 'demo_url' => 'http://www.demo.acmethemes.com/acmeblogpro/home-2',/*Demo Url*/
403
- /**/
404
- 'plugins' => array(
405
- array(
406
- 'name' => 'Gutentor',
407
- 'slug' => 'gutentor',
408
- ),
409
- array(
410
- 'name' => 'WooCommerce',
411
- 'slug' => 'woocommerce'
412
- ),
413
- array(
414
- 'name' => 'Acme Fix Images',
415
- 'slug' => 'acme-fix-images',
416
- ),
417
- array(
418
- 'name' => 'Contact Form 7',
419
- 'slug' => 'contact-form-7',
420
- 'main_file' => 'wp-contact-form-7.php',
421
- ),
422
- )
423
- ),
424
- 'demo-4' =>array(
425
- 'title' => __( 'Demo 4', 'acmeblog' ),/*Title*/
426
- 'is_premium' => true,/*Premium*/
427
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
428
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
429
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
430
- 'categories' => array( 'blog' ),/*Categories*/
431
- 'template_url' => array(
432
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
433
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
434
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
435
- ),
436
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
437
- 'demo_url' => 'http://www.demo.acmethemes.com/acmeblogpro/home-3',/*Demo Url*/
438
- /**/
439
- 'plugins' => array(
440
- array(
441
- 'name' => 'Gutentor',
442
- 'slug' => 'gutentor',
443
- ),
444
- array(
445
- 'name' => 'Acme Fix Images',
446
- 'slug' => 'acme-fix-images',
447
- ),
448
- array(
449
- 'name' => 'Contact Form 7',
450
- 'slug' => 'contact-form-7',
451
- 'main_file' => 'wp-contact-form-7.php',
452
- ),
453
- )
454
- ),
455
- );
456
- break;
457
- case "supermag":
458
- $demo_list = array(
459
- 'demo-1' =>array(
460
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
461
- 'is_premium' => false,/*Premium*/
462
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
463
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
464
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
465
- 'categories' => array( 'magazine' ),/*Categories*/
466
- 'template_url' => array(
467
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
468
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
469
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
470
- ),
471
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
472
- 'demo_url' => 'http://www.demo.acmethemes.com/supermag/',/*Demo Url*/
473
- /**/
474
- 'plugins' => array(
475
- array(
476
- 'name' => 'Gutentor',
477
- 'slug' => 'gutentor',
478
- ),
479
- array(
480
- 'name' => 'Acme Fix Images',
481
- 'slug' => 'acme-fix-images',
482
- ),
483
- array(
484
- 'name' => 'Contact Form 7',
485
- 'slug' => 'contact-form-7',
486
- 'main_file' => 'wp-contact-form-7.php',
487
- ),
488
- )
489
- ),
490
- 'demo-2' =>array(
491
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
492
- 'is_premium' => false,/*Premium*/
493
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
494
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
495
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
496
- 'categories' => array( 'magazine' ),/*Categories*/
497
- 'template_url' => array(
498
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
499
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
500
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
501
- ),
502
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
503
- 'demo_url' => 'http://www.demo.acmethemes.com/supermag/home-1',/*Demo Url*/
504
- /**/
505
- 'plugins' => array(
506
- array(
507
- 'name' => 'Gutentor',
508
- 'slug' => 'gutentor',
509
- ),
510
- array(
511
- 'name' => 'Acme Fix Images',
512
- 'slug' => 'acme-fix-images',
513
- ),
514
- array(
515
- 'name' => 'Contact Form 7',
516
- 'slug' => 'contact-form-7',
517
- 'main_file' => 'wp-contact-form-7.php',
518
- ),
519
- )
520
- ),
521
- );
522
- break;
523
- case "supermagpro":
524
- $demo_list = array(
525
- 'demo-1' =>array(
526
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
527
- 'is_premium' => true,/*Premium*/
528
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
529
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
530
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
531
- 'categories' => array( 'magazine' ),/*Categories*/
532
- 'template_url' => array(
533
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
534
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
535
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
536
- ),
537
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
538
- 'demo_url' => 'http://www.demo.acmethemes.com/supermagpro/',/*Demo Url*/
539
- /**/
540
- 'plugins' => array(
541
- array(
542
- 'name' => 'Gutentor',
543
- 'slug' => 'gutentor',
544
- ),
545
- array(
546
- 'name' => 'Acme Fix Images',
547
- 'slug' => 'acme-fix-images',
548
- ),
549
- array(
550
- 'name' => 'Contact Form 7',
551
- 'slug' => 'contact-form-7',
552
- 'main_file' => 'wp-contact-form-7.php',
553
- ),
554
- )
555
- ),
556
- 'demo-2' =>array(
557
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
558
- 'is_premium' => true,/*Premium*/
559
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
560
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
561
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
562
- 'categories' => array( 'magazine' ),/*Categories*/
563
- 'template_url' => array(
564
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
565
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
566
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
567
- ),
568
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
569
- 'demo_url' => 'http://www.demo.acmethemes.com/supermagpro/home-1',/*Demo Url*/
570
- /**/
571
- 'plugins' => array(
572
- array(
573
- 'name' => 'Gutentor',
574
- 'slug' => 'gutentor',
575
- ),
576
- array(
577
- 'name' => 'Acme Fix Images',
578
- 'slug' => 'acme-fix-images',
579
- ),
580
- array(
581
- 'name' => 'Contact Form 7',
582
- 'slug' => 'contact-form-7',
583
- 'main_file' => 'wp-contact-form-7.php',
584
- ),
585
- )
586
- ),
587
- 'demo-3' =>array(
588
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
589
- 'is_premium' => true,/*Premium*/
590
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
591
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
592
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
593
- 'categories' => array( 'magazine' ),/*Categories*/
594
- 'template_url' => array(
595
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
596
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
597
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
598
- ),
599
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
600
- 'demo_url' => 'http://www.demo.acmethemes.com/supermagpro/home-2',/*Demo Url*/
601
- /**/
602
- 'plugins' => array(
603
- array(
604
- 'name' => 'Gutentor',
605
- 'slug' => 'gutentor',
606
- ),
607
- array(
608
- 'name' => 'Acme Fix Images',
609
- 'slug' => 'acme-fix-images',
610
- ),
611
- array(
612
- 'name' => 'Contact Form 7',
613
- 'slug' => 'contact-form-7',
614
- 'main_file' => 'wp-contact-form-7.php',
615
- ),
616
- )
617
- ),
618
- 'demo-4' =>array(
619
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
620
- 'is_premium' => true,/*Premium*/
621
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
622
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
623
- 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
624
- 'categories' => array( 'magazine' ),/*Categories*/
625
- 'template_url' => array(
626
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
627
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
628
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
629
- ),
630
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
631
- 'demo_url' => 'http://www.demo.acmethemes.com/supermagpro/home-3',/*Demo Url*/
632
- /**/
633
- 'plugins' => array(
634
- array(
635
- 'name' => 'Gutentor',
636
- 'slug' => 'gutentor',
637
- ),
638
- array(
639
- 'name' => 'Acme Fix Images',
640
- 'slug' => 'acme-fix-images',
641
- ),
642
- array(
643
- 'name' => 'Contact Form 7',
644
- 'slug' => 'contact-form-7',
645
- 'main_file' => 'wp-contact-form-7.php',
646
- ),
647
- )
648
- ),
649
- );
650
- break;
651
- case "corporate-plus":
652
- $demo_list = array(
653
- 'demo-1' =>array(
654
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
655
- 'is_premium' => false,/*Premium*/
656
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
657
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
658
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
659
- 'categories' => array( 'business' ),/*Categories*/
660
- 'template_url' => array(
661
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
662
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
663
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
664
- ),
665
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
666
- 'demo_url' => 'http://www.demo.acmethemes.com/corporate-plus/',/*Demo Url*/
667
- /**/
668
- 'plugins' => array(
669
- array(
670
- 'name' => 'Gutentor',
671
- 'slug' => 'gutentor',
672
- ),
673
- array(
674
- 'name' => 'WooCommerce',
675
- 'slug' => 'woocommerce'
676
- ),
677
- array(
678
- 'name' => 'Acme Fix Images',
679
- 'slug' => 'acme-fix-images',
680
- ),
681
- array(
682
- 'name' => 'WooCommerce',
683
- 'slug' => 'woocommerce'
684
- ),
685
- array(
686
- 'name' => 'Contact Form 7',
687
- 'slug' => 'contact-form-7',
688
- 'main_file' => 'wp-contact-form-7.php',
689
- ),
690
- )
691
- ),
692
- );
693
- break;
694
- case "corporate-plus-pro":
695
- $demo_list = array(
696
- 'demo-1' =>array(
697
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
698
- 'is_premium' => true,/*Premium*/
699
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
700
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
701
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
702
- 'categories' => array( 'business' ),/*Categories*/
703
- 'template_url' => array(
704
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
705
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
706
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
707
- ),
708
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
709
- 'demo_url' => 'http://www.demo.acmethemes.com/corporate-plus-pro/',/*Demo Url*/
710
- /**/
711
- 'plugins' => array(
712
- array(
713
- 'name' => 'Gutentor',
714
- 'slug' => 'gutentor',
715
- ),
716
- array(
717
- 'name' => 'Acme Fix Images',
718
- 'slug' => 'acme-fix-images',
719
- ),
720
- array(
721
- 'name' => 'Contact Form 7',
722
- 'slug' => 'contact-form-7',
723
- 'main_file' => 'wp-contact-form-7.php',
724
- ),
725
- )
726
- ),
727
- 'demo-2' =>array(
728
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
729
- 'is_premium' => true,/*Premium*/
730
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
731
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
732
- 'keywords' => array( 'demo' ,'demo-2' ),/*Search keyword*/
733
- 'categories' => array( 'business' ),/*Categories*/
734
- 'template_url' => array(
735
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
736
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
737
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
738
- ),
739
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
740
- 'demo_url' => 'http://demo.acmethemes.com/corporate-plus-pro/store-demo/',/*Demo Url*/
741
- /**/
742
- 'plugins' => array(
743
- array(
744
- 'name' => 'Gutentor',
745
- 'slug' => 'gutentor',
746
- ),
747
- array(
748
- 'name' => 'WooCommerce',
749
- 'slug' => 'woocommerce'
750
- ),
751
- array(
752
- 'name' => 'Acme Fix Images',
753
- 'slug' => 'acme-fix-images',
754
- ),
755
- array(
756
- 'name' => 'Contact Form 7',
757
- 'slug' => 'contact-form-7',
758
- 'main_file' => 'wp-contact-form-7.php',
759
- ),
760
- )
761
- ),
762
- 'demo-3' =>array(
763
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
764
- 'is_premium' => true,/*Premium*/
765
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
766
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
767
- 'keywords' => array( 'demo' ,'demo-3' ),/*Search keyword*/
768
- 'categories' => array( 'business' ),/*Categories*/
769
- 'template_url' => array(
770
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
771
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
772
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
773
- ),
774
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
775
- 'demo_url' => 'http://demo.acmethemes.com/corporate-plus-pro/medical/',/*Demo Url*/
776
- /**/
777
- 'plugins' => array(
778
- array(
779
- 'name' => 'Gutentor',
780
- 'slug' => 'gutentor',
781
- ),
782
- array(
783
- 'name' => 'Acme Fix Images',
784
- 'slug' => 'acme-fix-images',
785
- ),
786
- array(
787
- 'name' => 'Contact Form 7',
788
- 'slug' => 'contact-form-7',
789
- 'main_file' => 'wp-contact-form-7.php',
790
- ),
791
- )
792
- ),
793
- );
794
- break;
795
- case "infinite-photography":
796
- $demo_list = array(
797
- 'demo-1' =>array(
798
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
799
- 'is_premium' => false,/*Premium*/
800
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
801
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
802
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
803
- 'categories' => array( 'photo' ),/*Categories*/
804
- 'template_url' => array(
805
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
806
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
807
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
808
- ),
809
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
810
- 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography/',/*Demo Url*/
811
- /**/
812
- 'plugins' => array(
813
- array(
814
- 'name' =>__( 'Gutentor','acmethemes' ),
815
- 'slug' => 'gutentor',
816
- ),
817
- array(
818
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
819
- 'slug' => 'breadcrumb-navxt',
820
- ),
821
- array(
822
- 'name' => __( 'Contact Form 7','acmethemes' ),
823
- 'slug' => 'contact-form-7',
824
- 'main_file' => 'wp-contact-form-7.php',
825
- ),
826
- )
827
- ),
828
- );
829
- break;
830
- case "infinite-photography-pro":
831
- $demo_list = array(
832
- 'demo-1' =>array(
833
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
834
- 'is_premium' => true,/*Premium*/
835
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
836
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
837
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
838
- 'categories' => array( 'photo' ),/*Categories*/
839
- 'template_url' => array(
840
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
841
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
842
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
843
- ),
844
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
845
- 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography-pro/',/*Demo Url*/
846
- /**/
847
- 'plugins' => array(
848
- array(
849
- 'name' =>__( 'Gutentor','acmethemes' ),
850
- 'slug' => 'gutentor',
851
- ),
852
- array(
853
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
854
- 'slug' => 'breadcrumb-navxt',
855
- ),
856
- array(
857
- 'name' => __( 'Contact Form 7','acmethemes' ),
858
- 'slug' => 'contact-form-7',
859
- 'main_file' => 'wp-contact-form-7.php',
860
- ),
861
- )
862
- ),
863
- 'demo-2' =>array(
864
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
865
- 'is_premium' => true,/*Premium*/
866
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
867
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
868
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
869
- 'categories' => array( 'photo' ),/*Categories*/
870
- 'template_url' => array(
871
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
872
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
873
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
874
- ),
875
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
876
- 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography-pro/home-1',/*Demo Url*/
877
- /**/
878
- 'plugins' => array(
879
- array(
880
- 'name' =>__( 'Gutentor','acmethemes' ),
881
- 'slug' => 'gutentor',
882
- ),
883
- array(
884
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
885
- 'slug' => 'breadcrumb-navxt',
886
- ),
887
- array(
888
- 'name' => __( 'Contact Form 7','acmethemes' ),
889
- 'slug' => 'contact-form-7',
890
- 'main_file' => 'wp-contact-form-7.php',
891
- ),
892
- )
893
- ),
894
- 'demo-3' =>array(
895
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
896
- 'is_premium' => true,/*Premium*/
897
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
898
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
899
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
900
- 'categories' => array( 'photo' ),/*Categories*/
901
- 'template_url' => array(
902
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
903
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
904
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
905
- ),
906
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
907
- 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography-pro/home-2',/*Demo Url*/
908
- /**/
909
- 'plugins' => array(
910
- array(
911
- 'name' =>__( 'Gutentor','acmethemes' ),
912
- 'slug' => 'gutentor',
913
- ),
914
- array(
915
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
916
- 'slug' => 'breadcrumb-navxt',
917
- ),
918
- array(
919
- 'name' => __( 'Contact Form 7','acmethemes' ),
920
- 'slug' => 'contact-form-7',
921
- 'main_file' => 'wp-contact-form-7.php',
922
- ),
923
- )
924
- ),
925
- 'demo-4' =>array(
926
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
927
- 'is_premium' => true,/*Premium*/
928
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
929
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
930
- 'keywords' => array( 'main', 'demo' ,'demo 4' ),/*Search keyword*/
931
- 'categories' => array( 'photo' ),/*Categories*/
932
- 'template_url' => array(
933
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
934
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
935
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
936
- ),
937
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
938
- 'demo_url' => 'http://www.demo.acmethemes.com/infinite-photography-pro/home-3',/*Demo Url*/
939
- /**/
940
- 'plugins' => array(
941
- array(
942
- 'name' =>__( 'Gutentor','acmethemes' ),
943
- 'slug' => 'gutentor',
944
- ),
945
- array(
946
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
947
- 'slug' => 'breadcrumb-navxt',
948
- ),
949
- array(
950
- 'name' => __( 'Contact Form 7','acmethemes' ),
951
- 'slug' => 'contact-form-7',
952
- 'main_file' => 'wp-contact-form-7.php',
953
- ),
954
- )
955
- ),
956
- );
957
- break;
958
- case "supernews":
959
- $demo_list = array(
960
- 'demo-1' =>array(
961
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
962
- 'is_premium' => false,/*Premium*/
963
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
964
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
965
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
966
- 'categories' => array( 'magazine' ),/*Categories*/
967
- 'template_url' => array(
968
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
969
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
970
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
971
- ),
972
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
973
- 'demo_url' => 'http://www.demo.acmethemes.com/supernews/',/*Demo Url*/
974
- /**/
975
- 'plugins' => array(
976
- array(
977
- 'name' => 'Gutentor',
978
- 'slug' => 'gutentor',
979
- ),
980
- array(
981
- 'name' => 'Acme Fix Images',
982
- 'slug' => 'acme-fix-images',
983
- ),
984
- array(
985
- 'name' => 'Contact Form 7',
986
- 'slug' => 'contact-form-7',
987
- 'main_file' => 'wp-contact-form-7.php',
988
- ),
989
- )
990
- ),
991
- );
992
- break;
993
- case "supernewspro":
994
- $demo_list = array(
995
- 'demo-1' =>array(
996
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
997
- 'is_premium' => true,/*Premium*/
998
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
999
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1000
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1001
- 'categories' => array( 'magazine' ),/*Categories*/
1002
- 'template_url' => array(
1003
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1004
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1005
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1006
- ),
1007
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1008
- 'demo_url' => 'http://www.demo.acmethemes.com/supernewspro/',/*Demo Url*/
1009
- /**/
1010
- 'plugins' => array(
1011
- array(
1012
- 'name' => 'Gutentor',
1013
- 'slug' => 'gutentor',
1014
- ),
1015
- array(
1016
- 'name' => 'Acme Fix Images',
1017
- 'slug' => 'acme-fix-images',
1018
- ),
1019
- array(
1020
- 'name' => 'Contact Form 7',
1021
- 'slug' => 'contact-form-7',
1022
- 'main_file' => 'wp-contact-form-7.php',
1023
- ),
1024
- )
1025
- ),
1026
- 'demo-2' =>array(
1027
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1028
- 'is_premium' => true,/*Premium*/
1029
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1030
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1031
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1032
- 'categories' => array( 'magazine' ),/*Categories*/
1033
- 'template_url' => array(
1034
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1035
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1036
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1037
- ),
1038
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1039
- 'demo_url' => 'http://www.demo.acmethemes.com/supernewspro/home-1',/*Demo Url*/
1040
- /**/
1041
- 'plugins' => array(
1042
- array(
1043
- 'name' => 'Gutentor',
1044
- 'slug' => 'gutentor',
1045
- ),
1046
- array(
1047
- 'name' => 'Acme Fix Images',
1048
- 'slug' => 'acme-fix-images',
1049
- ),
1050
- array(
1051
- 'name' => 'Contact Form 7',
1052
- 'slug' => 'contact-form-7',
1053
- 'main_file' => 'wp-contact-form-7.php',
1054
- ),
1055
- )
1056
- ),
1057
- 'demo-3' =>array(
1058
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1059
- 'is_premium' => true,/*Premium*/
1060
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1061
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1062
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1063
- 'categories' => array( 'magazine' ),/*Categories*/
1064
- 'template_url' => array(
1065
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1066
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1067
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1068
- ),
1069
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1070
- 'demo_url' => 'http://www.demo.acmethemes.com/supernewspro/home-2',/*Demo Url*/
1071
- /**/
1072
- 'plugins' => array(
1073
- array(
1074
- 'name' => 'Gutentor',
1075
- 'slug' => 'gutentor',
1076
- ),
1077
- array(
1078
- 'name' => 'Acme Fix Images',
1079
- 'slug' => 'acme-fix-images',
1080
- ),
1081
- array(
1082
- 'name' => 'Contact Form 7',
1083
- 'slug' => 'contact-form-7',
1084
- 'main_file' => 'wp-contact-form-7.php',
1085
- ),
1086
- )
1087
- ),
1088
- 'demo-4' =>array(
1089
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1090
- 'is_premium' => true,/*Premium*/
1091
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1092
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1093
- 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1094
- 'categories' => array( 'magazine' ),/*Categories*/
1095
- 'template_url' => array(
1096
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1097
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1098
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1099
- ),
1100
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1101
- 'demo_url' => 'http://www.demo.acmethemes.com/supernewspro/home-3',/*Demo Url*/
1102
- /**/
1103
- 'plugins' => array(
1104
- array(
1105
- 'name' => 'Gutentor',
1106
- 'slug' => 'gutentor',
1107
- ),
1108
- array(
1109
- 'name' => 'Acme Fix Images',
1110
- 'slug' => 'acme-fix-images',
1111
- ),
1112
- array(
1113
- 'name' => 'Contact Form 7',
1114
- 'slug' => 'contact-form-7',
1115
- 'main_file' => 'wp-contact-form-7.php',
1116
- ),
1117
- )
1118
- ),
1119
- );
1120
- break;
1121
- case "weblog":
1122
- $demo_list = array(
1123
- 'demo-1' =>array(
1124
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1125
- 'is_premium' => false,/*Premium*/
1126
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1127
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1128
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1129
- 'categories' => array( 'magazine' ),/*Categories*/
1130
- 'template_url' => array(
1131
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/master/demo-1/content.json',
1132
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/master/demo-1/options.json',
1133
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/master/demo-1/widgets.json'
1134
- ),
1135
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/master/demo-1/screenshot.jpg',/*Screenshot of block*/
1136
- 'demo_url' => 'http://www.demo.acmethemes.com/weblog/',/*Demo Url*/
1137
- /**/
1138
- 'plugins' => array(
1139
- array(
1140
- 'name' => 'Gutentor',
1141
- 'slug' => 'gutentor',
1142
- ),
1143
- array(
1144
- 'name' => 'Contact Form 7',
1145
- 'slug' => 'contact-form-7',
1146
- 'main_file' => 'wp-contact-form-7.php',
1147
- ),
1148
- )
1149
- ),
1150
- );
1151
- break;
1152
- case "weblogpro":
1153
- $demo_list = array(
1154
- 'demo-1' =>array(
1155
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1156
- 'is_premium' => true,/*Premium*/
1157
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1158
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1159
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1160
- 'categories' => array( 'magazine' ),/*Categories*/
1161
- 'template_url' => array(
1162
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1163
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1164
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1165
- ),
1166
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1167
- 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/',/*Demo Url*/
1168
- /**/
1169
- 'plugins' => array(
1170
- array(
1171
- 'name' => 'Gutentor',
1172
- 'slug' => 'gutentor',
1173
- ),
1174
- array(
1175
- 'name' => 'Easy Twitter Feed Widget Plugin',
1176
- 'slug' => 'easy-twitter-feed-widget',
1177
- ),
1178
- array(
1179
- 'name' => 'Smash Balloon Social Photo Feed',
1180
- 'slug' => 'instagram-feed',
1181
- ),
1182
- array(
1183
- 'name' => 'Widget for Social Page Feeds',
1184
- 'slug' => 'facebook-pagelike-widget',
1185
- ),
1186
- array(
1187
- 'name' => 'Contact Form 7',
1188
- 'slug' => 'contact-form-7',
1189
- 'main_file' => 'wp-contact-form-7.php',
1190
- ),
1191
- )
1192
- ),
1193
- 'demo-2' =>array(
1194
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1195
- 'is_premium' => true,/*Premium*/
1196
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1197
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1198
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1199
- 'categories' => array( 'magazine' ),/*Categories*/
1200
- 'template_url' => array(
1201
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1202
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1203
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1204
- ),
1205
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1206
- 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-1',/*Demo Url*/
1207
- /**/
1208
- 'plugins' => array(
1209
- array(
1210
- 'name' => 'Gutentor',
1211
- 'slug' => 'gutentor',
1212
- ),
1213
- array(
1214
- 'name' => 'Easy Twitter Feed Widget Plugin',
1215
- 'slug' => 'easy-twitter-feed-widget',
1216
- ),
1217
- array(
1218
- 'name' => 'Smash Balloon Social Photo Feed',
1219
- 'slug' => 'instagram-feed',
1220
- ),
1221
- array(
1222
- 'name' => 'Widget for Social Page Feeds',
1223
- 'slug' => 'facebook-pagelike-widget',
1224
- ),
1225
- array(
1226
- 'name' => 'Contact Form 7',
1227
- 'slug' => 'contact-form-7',
1228
- 'main_file' => 'wp-contact-form-7.php',
1229
- ),
1230
- )
1231
- ),
1232
- 'demo-3' =>array(
1233
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1234
- 'is_premium' => true,/*Premium*/
1235
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1236
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1237
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1238
- 'categories' => array( 'magazine' ),/*Categories*/
1239
- 'template_url' => array(
1240
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1241
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1242
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1243
- ),
1244
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1245
- 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-2',/*Demo Url*/
1246
- /**/
1247
- 'plugins' => array(
1248
- array(
1249
- 'name' => 'Gutentor',
1250
- 'slug' => 'gutentor',
1251
- ),
1252
- array(
1253
- 'name' => 'Easy Twitter Feed Widget Plugin',
1254
- 'slug' => 'easy-twitter-feed-widget',
1255
- ),
1256
- array(
1257
- 'name' => 'Smash Balloon Social Photo Feed',
1258
- 'slug' => 'instagram-feed',
1259
- ),
1260
- array(
1261
- 'name' => 'Widget for Social Page Feeds',
1262
- 'slug' => 'facebook-pagelike-widget',
1263
- ),
1264
- array(
1265
- 'name' => 'Contact Form 7',
1266
- 'slug' => 'contact-form-7',
1267
- 'main_file' => 'wp-contact-form-7.php',
1268
- ),
1269
- )
1270
- ),
1271
- 'demo-4' =>array(
1272
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1273
- 'is_premium' => true,/*Premium*/
1274
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1275
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1276
- 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1277
- 'categories' => array( 'magazine' ),/*Categories*/
1278
- 'template_url' => array(
1279
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1280
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1281
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1282
- ),
1283
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1284
- 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-3',/*Demo Url*/
1285
- /**/
1286
- 'plugins' => array(
1287
- array(
1288
- 'name' => 'Gutentor',
1289
- 'slug' => 'gutentor',
1290
- ),
1291
- array(
1292
- 'name' => 'Easy Twitter Feed Widget Plugin',
1293
- 'slug' => 'easy-twitter-feed-widget',
1294
- ),
1295
- array(
1296
- 'name' => 'Smash Balloon Social Photo Feed',
1297
- 'slug' => 'instagram-feed',
1298
- ),
1299
- array(
1300
- 'name' => 'Widget for Social Page Feeds',
1301
- 'slug' => 'facebook-pagelike-widget',
1302
- ),
1303
- array(
1304
- 'name' => 'Contact Form 7',
1305
- 'slug' => 'contact-form-7',
1306
- 'main_file' => 'wp-contact-form-7.php',
1307
- ),
1308
- )
1309
- ),
1310
- 'demo-5' =>array(
1311
- 'title' => __( 'Demo 5', 'acmethemes' ),/*Title*/
1312
- 'is_premium' => true,/*Premium*/
1313
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1314
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1315
- 'keywords' => array( 'main', 'demo' ,'demo-5' ),/*Search keyword*/
1316
- 'categories' => array( 'magazine' ),/*Categories*/
1317
- 'template_url' => array(
1318
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/content.json',
1319
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/options.json',
1320
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/widgets.json'
1321
- ),
1322
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/screenshot.jpg',/*Screenshot of block*/
1323
- 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-4',/*Demo Url*/
1324
- /**/
1325
- 'plugins' => array(
1326
- array(
1327
- 'name' => 'Gutentor',
1328
- 'slug' => 'gutentor',
1329
- ),
1330
- array(
1331
- 'name' => 'Easy Twitter Feed Widget Plugin',
1332
- 'slug' => 'easy-twitter-feed-widget',
1333
- ),
1334
- array(
1335
- 'name' => 'Smash Balloon Social Photo Feed',
1336
- 'slug' => 'instagram-feed',
1337
- ),
1338
- array(
1339
- 'name' => 'Widget for Social Page Feeds',
1340
- 'slug' => 'facebook-pagelike-widget',
1341
- ),
1342
- array(
1343
- 'name' => 'Contact Form 7',
1344
- 'slug' => 'contact-form-7',
1345
- 'main_file' => 'wp-contact-form-7.php',
1346
- ),
1347
- )
1348
- ),
1349
- 'demo-6' =>array(
1350
- 'title' => __( 'Demo 6', 'acmethemes' ),/*Title*/
1351
- 'is_premium' => true,/*Premium*/
1352
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1353
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1354
- 'keywords' => array( 'main', 'demo' ,'demo-5' ),/*Search keyword*/
1355
- 'categories' => array( 'magazine' ),/*Categories*/
1356
- 'template_url' => array(
1357
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/content.json',
1358
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/options.json',
1359
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/widgets.json'
1360
- ),
1361
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/screenshot.jpg',/*Screenshot of block*/
1362
- 'demo_url' => 'http://www.demo.acmethemes.com/weblogpro/home-5',/*Demo Url*/
1363
- /**/
1364
- 'plugins' => array(
1365
- array(
1366
- 'name' => 'Gutentor',
1367
- 'slug' => 'gutentor',
1368
- ),
1369
- array(
1370
- 'name' => 'WooCommerce',
1371
- 'slug' => 'woocommerce'
1372
- ),
1373
- array(
1374
- 'name' => 'Easy Twitter Feed Widget Plugin',
1375
- 'slug' => 'easy-twitter-feed-widget',
1376
- ),
1377
- array(
1378
- 'name' => 'Smash Balloon Social Photo Feed',
1379
- 'slug' => 'instagram-feed',
1380
- ),
1381
- array(
1382
- 'name' => 'Widget for Social Page Feeds',
1383
- 'slug' => 'facebook-pagelike-widget',
1384
- ),
1385
- array(
1386
- 'name' => 'Contact Form 7',
1387
- 'slug' => 'contact-form-7',
1388
- 'main_file' => 'wp-contact-form-7.php',
1389
- ),
1390
- )
1391
- ),
1392
 
1393
- );
1394
- break;
1395
- case "dupermag":
1396
- $demo_list = array(
1397
- 'demo-1' =>array(
1398
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1399
- 'is_premium' => false,/*Premium*/
1400
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1401
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1402
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1403
- 'categories' => array( 'magazine' ),/*Categories*/
1404
- 'template_url' => array(
1405
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1406
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1407
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1408
- ),
1409
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1410
- 'demo_url' => 'http://www.demo.acmethemes.com/dupermag/',/*Demo Url*/
1411
- /**/
1412
- 'plugins' => array(
1413
- array(
1414
- 'name' => 'Gutentor',
1415
- 'slug' => 'gutentor',
1416
- ),
1417
- array(
1418
- 'name' => 'Contact Form 7',
1419
- 'slug' => 'contact-form-7',
1420
- 'main_file' => 'wp-contact-form-7.php',
1421
- ),
1422
- )
1423
- ),
1424
- );
1425
- break;
1426
- case "dupermagpro":
1427
- $demo_list = array(
1428
- 'demo-1' =>array(
1429
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1430
- 'is_premium' => true,/*Premium*/
1431
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1432
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1433
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1434
- 'categories' => array( 'magazine' ),/*Categories*/
1435
- 'template_url' => array(
1436
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1437
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1438
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1439
- ),
1440
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1441
- 'demo_url' => 'http://www.demo.acmethemes.com/dupermagpro/',/*Demo Url*/
1442
- /**/
1443
- 'plugins' => array(
1444
- array(
1445
- 'name' => 'Gutentor',
1446
- 'slug' => 'gutentor',
1447
- ),
1448
- )
1449
- ),
1450
- 'demo-2' =>array(
1451
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1452
- 'is_premium' => true,/*Premium*/
1453
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1454
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1455
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1456
- 'categories' => array( 'magazine' ),/*Categories*/
1457
- 'template_url' => array(
1458
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1459
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1460
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1461
- ),
1462
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1463
- 'demo_url' => 'http://www.demo.acmethemes.com/dupermagpro/home-1',/*Demo Url*/
1464
- /**/
1465
- 'plugins' => array(
1466
- array(
1467
- 'name' => 'Gutentor',
1468
- 'slug' => 'gutentor',
1469
- ),
1470
- )
1471
- ),
1472
- );
1473
- break;
1474
- case "acmephoto":
1475
- $demo_list = array(
1476
- 'demo-1' =>array(
1477
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1478
- 'is_premium' => false,/*Premium*/
1479
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1480
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1481
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1482
- 'categories' => array( 'photo' ),/*Categories*/
1483
- 'template_url' => array(
1484
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1485
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1486
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1487
- ),
1488
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1489
- 'demo_url' => 'http://www.demo.acmethemes.com/acmephoto/',/*Demo Url*/
1490
- /**/
1491
- 'plugins' => array(
1492
- array(
1493
- 'name' => 'Gutentor',
1494
- 'slug' => 'gutentor',
1495
- ),
1496
- array(
1497
- 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1498
- 'slug' => 'nextgen-gallery',
1499
- ),
1500
- array(
1501
- 'name' => 'Contact Form 7',
1502
- 'slug' => 'contact-form-7',
1503
- 'main_file' => 'wp-contact-form-7.php',
1504
- ),
1505
- )
1506
- ),
1507
- 'demo-2' =>array(
1508
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1509
- 'is_premium' => false,/*Premium*/
1510
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1511
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1512
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1513
- 'categories' => array( 'photo' ),/*Categories*/
1514
- 'template_url' => array(
1515
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1516
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1517
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1518
- ),
1519
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1520
- 'demo_url' => 'http://www.demo.acmethemes.com/acmephoto/home-1',/*Demo Url*/
1521
- /**/
1522
- 'plugins' => array(
1523
- array(
1524
- 'name' => 'Gutentor',
1525
- 'slug' => 'gutentor',
1526
- ),
1527
- array(
1528
- 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1529
- 'slug' => 'nextgen-gallery',
1530
- ),
1531
- array(
1532
- 'name' => 'Contact Form 7',
1533
- 'slug' => 'contact-form-7',
1534
- 'main_file' => 'wp-contact-form-7.php',
1535
- ),
1536
- )
1537
- ),
1538
- );
1539
- break;
1540
- case "acmephotopro":
1541
- $demo_list = array(
1542
- 'demo-1' =>array(
1543
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1544
- 'is_premium' => true,/*Premium*/
1545
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1546
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1547
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1548
- 'categories' => array( 'photo' ),/*Categories*/
1549
- 'template_url' => array(
1550
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1551
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1552
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1553
- ),
1554
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1555
- 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/',/*Demo Url*/
1556
- /**/
1557
- 'plugins' => array(
1558
- array(
1559
- 'name' => 'Gutentor',
1560
- 'slug' => 'gutentor',
1561
- ),
1562
- array(
1563
- 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1564
- 'slug' => 'nextgen-gallery',
1565
- ),
1566
- array(
1567
- 'name' => 'Contact Form 7',
1568
- 'slug' => 'contact-form-7',
1569
- 'main_file' => 'wp-contact-form-7.php',
1570
- ),
1571
- )
1572
- ),
1573
- 'demo-2' =>array(
1574
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1575
- 'is_premium' => true,/*Premium*/
1576
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1577
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1578
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1579
- 'categories' => array( 'photo' ),/*Categories*/
1580
- 'template_url' => array(
1581
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1582
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1583
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1584
- ),
1585
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1586
- 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-1',/*Demo Url*/
1587
- /**/
1588
- 'plugins' => array(
1589
- array(
1590
- 'name' => 'Gutentor',
1591
- 'slug' => 'gutentor',
1592
- ),
1593
- array(
1594
- 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1595
- 'slug' => 'nextgen-gallery',
1596
- ),
1597
- array(
1598
- 'name' => 'Contact Form 7',
1599
- 'slug' => 'contact-form-7',
1600
- 'main_file' => 'wp-contact-form-7.php',
1601
- ),
1602
- )
1603
- ),
1604
- 'demo-3' =>array(
1605
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1606
- 'is_premium' => true,/*Premium*/
1607
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1608
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1609
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1610
- 'categories' => array( 'photo' ),/*Categories*/
1611
- 'template_url' => array(
1612
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1613
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1614
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1615
- ),
1616
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1617
- 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-2',/*Demo Url*/
1618
- /**/
1619
- 'plugins' => array(
1620
- array(
1621
- 'name' => 'Gutentor',
1622
- 'slug' => 'gutentor',
1623
- ),
1624
- array(
1625
- 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1626
- 'slug' => 'nextgen-gallery',
1627
- ),
1628
- array(
1629
- 'name' => 'Contact Form 7',
1630
- 'slug' => 'contact-form-7',
1631
- 'main_file' => 'wp-contact-form-7.php',
1632
- ),
1633
- )
1634
- ),
1635
- 'demo-4' =>array(
1636
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1637
- 'is_premium' => true,/*Premium*/
1638
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1639
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1640
- 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1641
- 'categories' => array( 'photo' ),/*Categories*/
1642
- 'template_url' => array(
1643
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1644
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1645
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1646
- ),
1647
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1648
- 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-3',/*Demo Url*/
1649
- /**/
1650
- 'plugins' => array(
1651
- array(
1652
- 'name' => 'Gutentor',
1653
- 'slug' => 'gutentor',
1654
- ),
1655
- array(
1656
- 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1657
- 'slug' => 'nextgen-gallery',
1658
- ),
1659
- array(
1660
- 'name' => 'Contact Form 7',
1661
- 'slug' => 'contact-form-7',
1662
- 'main_file' => 'wp-contact-form-7.php',
1663
- ),
1664
- )
1665
- ),
1666
- 'demo-5' =>array(
1667
- 'title' => __( 'Demo 5', 'acmethemes' ),/*Title*/
1668
- 'is_premium' => true,/*Premium*/
1669
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1670
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1671
- 'keywords' => array( 'main', 'demo' ,'demo-5' ),/*Search keyword*/
1672
- 'categories' => array( 'photo' ),/*Categories*/
1673
- 'template_url' => array(
1674
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/content.json',
1675
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/options.json',
1676
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/widgets.json'
1677
- ),
1678
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/screenshot.jpg',/*Screenshot of block*/
1679
- 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-4',/*Demo Url*/
1680
- /**/
1681
- 'plugins' => array(
1682
- array(
1683
- 'name' => 'Gutentor',
1684
- 'slug' => 'gutentor',
1685
- ),
1686
- array(
1687
- 'name' => 'WooCommerce',
1688
- 'slug' => 'woocommerce'
1689
- ),
1690
- array(
1691
- 'name' => 'Contact Form 7',
1692
- 'slug' => 'contact-form-7',
1693
- 'main_file' => 'wp-contact-form-7.php',
1694
- ),
1695
- )
1696
- ),
1697
- 'demo-6' =>array(
1698
- 'title' => __( 'Demo 6', 'acmethemes' ),/*Title*/
1699
- 'is_premium' => true,/*Premium*/
1700
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1701
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1702
- 'keywords' => array( 'main', 'demo' ,'demo-6' ),/*Search keyword*/
1703
- 'categories' => array( 'photo' ),/*Categories*/
1704
- 'template_url' => array(
1705
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/content.json',
1706
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/options.json',
1707
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/widgets.json'
1708
- ),
1709
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-6/screenshot.jpg',/*Screenshot of block*/
1710
- 'demo_url' => 'http://www.demo.acmethemes.com/acmephotopro/home-5',/*Demo Url*/
1711
- /**/
1712
- 'plugins' => array(
1713
- array(
1714
- 'name' => 'Gutentor',
1715
- 'slug' => 'gutentor',
1716
- ),
1717
- array(
1718
- 'name' => 'WordPress Gallery Plugin – NextGEN Gallery',
1719
- 'slug' => 'nextgen-gallery',
1720
- ),
1721
- array(
1722
- 'name' => 'Contact Form 7',
1723
- 'slug' => 'contact-form-7',
1724
- 'main_file' => 'wp-contact-form-7.php',
1725
- ),
1726
- )
1727
- ),
1728
- );
1729
- break;
1730
- case "mercantile":
1731
- $demo_list = array(
1732
- 'demo-1' =>array(
1733
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1734
- 'is_premium' => false,/*Premium*/
1735
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1736
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1737
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1738
- 'categories' => array( 'mercantile' ),/*Categories*/
1739
- 'template_url' => array(
1740
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1741
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1742
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1743
- ),
1744
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1745
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantile/',/*Demo Url*/
1746
- /**/
1747
- 'plugins' => array(
1748
- array(
1749
- 'name' => 'Gutentor',
1750
- 'slug' => 'gutentor',
1751
- ),
1752
- array(
1753
- 'name' => 'Page Builder by SiteOrigin',
1754
- 'slug' => 'siteorigin-panels'
1755
- ),
1756
- array(
1757
- 'name' => 'Contact Form 7',
1758
- 'slug' => 'contact-form-7',
1759
- 'main_file' => 'wp-contact-form-7.php',
1760
- ),
1761
- )
1762
- ),
1763
- 'demo-2' =>array(
1764
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1765
- 'is_premium' => false,/*Premium*/
1766
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1767
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1768
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1769
- 'categories' => array( 'mercantile' ),/*Categories*/
1770
- 'template_url' => array(
1771
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1772
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1773
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1774
- ),
1775
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1776
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantile/home-1',/*Demo Url*/
1777
- /**/
1778
- 'plugins' => array(
1779
- array(
1780
- 'name' => 'Gutentor',
1781
- 'slug' => 'gutentor',
1782
- ),
1783
- array(
1784
- 'name' => 'Page Builder by SiteOrigin',
1785
- 'slug' => 'siteorigin-panels'
1786
- ),
1787
- array(
1788
- 'name' => 'Contact Form 7',
1789
- 'slug' => 'contact-form-7',
1790
- 'main_file' => 'wp-contact-form-7.php',
1791
- ),
1792
- )
1793
- ),
1794
- 'demo-3' =>array(
1795
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1796
- 'is_premium' => false,/*Premium*/
1797
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1798
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1799
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1800
- 'categories' => array( 'mercantile' ),/*Categories*/
1801
- 'template_url' => array(
1802
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1803
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1804
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1805
- ),
1806
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1807
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantile/home-2',/*Demo Url*/
1808
- /**/
1809
- 'plugins' => array(
1810
- array(
1811
- 'name' => 'Gutentor',
1812
- 'slug' => 'gutentor',
1813
- ),
1814
- array(
1815
- 'name' => 'Page Builder by SiteOrigin',
1816
- 'slug' => 'siteorigin-panels'
1817
- ),
1818
- array(
1819
- 'name' => 'Contact Form 7',
1820
- 'slug' => 'contact-form-7',
1821
- 'main_file' => 'wp-contact-form-7.php',
1822
- ),
1823
- )
1824
- ),
1825
- 'demo-4' =>array(
1826
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1827
- 'is_premium' => false,/*Premium*/
1828
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1829
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1830
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1831
- 'categories' => array( 'mercantile' ),/*Categories*/
1832
- 'template_url' => array(
1833
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1834
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1835
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1836
- ),
1837
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1838
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantile/home-3',/*Demo Url*/
1839
- /**/
1840
- 'plugins' => array(
1841
- array(
1842
- 'name' => 'Gutentor',
1843
- 'slug' => 'gutentor',
1844
- ),
1845
- array(
1846
- 'name' => 'Page Builder by SiteOrigin',
1847
- 'slug' => 'siteorigin-panels'
1848
- ),
1849
- array(
1850
- 'name' => 'Contact Form 7',
1851
- 'slug' => 'contact-form-7',
1852
- 'main_file' => 'wp-contact-form-7.php',
1853
- ),
1854
- )
1855
- ),
1856
- );
1857
- break;
1858
- case "mercantilepro":
1859
- $demo_list = array(
1860
- 'demo-1' =>array(
1861
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
1862
- 'is_premium' => true,/*Premium*/
1863
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1864
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
1865
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
1866
- 'categories' => array( 'mercantile' ),/*Categories*/
1867
- 'template_url' => array(
1868
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
1869
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
1870
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
1871
- ),
1872
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
1873
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/',/*Demo Url*/
1874
- /**/
1875
- 'plugins' => array(
1876
- array(
1877
- 'name' => 'Gutentor',
1878
- 'slug' => 'gutentor',
1879
- ),
1880
- array(
1881
- 'name' => 'Page Builder by SiteOrigin',
1882
- 'slug' => 'siteorigin-panels'
1883
- ),
1884
- array(
1885
- 'name' => 'Contact Form 7',
1886
- 'slug' => 'contact-form-7',
1887
- 'main_file' => 'wp-contact-form-7.php',
1888
- ),
1889
- )
1890
- ),
1891
- 'demo-2' =>array(
1892
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
1893
- 'is_premium' => true,/*Premium*/
1894
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1895
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1896
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
1897
- 'categories' => array( 'mercantile' ),/*Categories*/
1898
- 'template_url' => array(
1899
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
1900
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
1901
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
1902
- ),
1903
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
1904
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/home-1',/*Demo Url*/
1905
- /**/
1906
- 'plugins' => array(
1907
- array(
1908
- 'name' => 'Gutentor',
1909
- 'slug' => 'gutentor',
1910
- ),
1911
- array(
1912
- 'name' => 'Page Builder by SiteOrigin',
1913
- 'slug' => 'siteorigin-panels'
1914
- ),
1915
- array(
1916
- 'name' => 'Contact Form 7',
1917
- 'slug' => 'contact-form-7',
1918
- 'main_file' => 'wp-contact-form-7.php',
1919
- ),
1920
- )
1921
- ),
1922
- 'demo-3' =>array(
1923
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
1924
- 'is_premium' => true,/*Premium*/
1925
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1926
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1927
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
1928
- 'categories' => array( 'mercantile' ),/*Categories*/
1929
- 'template_url' => array(
1930
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
1931
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
1932
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
1933
- ),
1934
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
1935
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/home-2',/*Demo Url*/
1936
- /**/
1937
- 'plugins' => array(
1938
- array(
1939
- 'name' => 'Gutentor',
1940
- 'slug' => 'gutentor',
1941
- ),
1942
- array(
1943
- 'name' => 'Page Builder by SiteOrigin',
1944
- 'slug' => 'siteorigin-panels'
1945
- ),
1946
- array(
1947
- 'name' => 'Contact Form 7',
1948
- 'slug' => 'contact-form-7',
1949
- 'main_file' => 'wp-contact-form-7.php',
1950
- ),
1951
- )
1952
- ),
1953
- 'demo-4' =>array(
1954
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
1955
- 'is_premium' => true,/*Premium*/
1956
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1957
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1958
- 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
1959
- 'categories' => array( 'mercantile' ),/*Categories*/
1960
- 'template_url' => array(
1961
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
1962
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
1963
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
1964
- ),
1965
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
1966
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/home-3',/*Demo Url*/
1967
- /**/
1968
- 'plugins' => array(
1969
- array(
1970
- 'name' => 'Gutentor',
1971
- 'slug' => 'gutentor',
1972
- ),
1973
- array(
1974
- 'name' => 'Page Builder by SiteOrigin',
1975
- 'slug' => 'siteorigin-panels'
1976
- ),
1977
- array(
1978
- 'name' => 'WooCommerce',
1979
- 'slug' => 'woocommerce'
1980
- ),
1981
- array(
1982
- 'name' => 'Contact Form 7',
1983
- 'slug' => 'contact-form-7',
1984
- 'main_file' => 'wp-contact-form-7.php',
1985
- ),
1986
- )
1987
- ),
1988
- 'demo-5' =>array(
1989
- 'title' => __( 'Demo 5', 'acmethemes' ),/*Title*/
1990
- 'is_premium' => true,/*Premium*/
1991
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
1992
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
1993
- 'keywords' => array( 'main', 'demo' ,'demo-5' ),/*Search keyword*/
1994
- 'categories' => array( 'mercantile' ),/*Categories*/
1995
- 'template_url' => array(
1996
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/content.json',
1997
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/options.json',
1998
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/widgets.json'
1999
- ),
2000
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-5/screenshot.jpg',/*Screenshot of block*/
2001
- 'demo_url' => 'http://www.demo.acmethemes.com/mercantilepro/home-4',/*Demo Url*/
2002
- /**/
2003
- 'plugins' => array(
2004
- array(
2005
- 'name' => 'Gutentor',
2006
- 'slug' => 'gutentor',
2007
- ),
2008
- array(
2009
- 'name' => 'Page Builder by SiteOrigin',
2010
- 'slug' => 'siteorigin-panels'
2011
- ),
2012
- array(
2013
- 'name' => 'Contact Form 7',
2014
- 'slug' => 'contact-form-7',
2015
- 'main_file' => 'wp-contact-form-7.php',
2016
- ),
2017
- )
2018
- ),
2019
- );
2020
- break;
2021
- case "read-more":
2022
- $demo_list = array(
2023
- 'demo-1' =>array(
2024
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
2025
- 'is_premium' => false,/*Premium*/
2026
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2027
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
2028
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
2029
- 'categories' => array( 'magazine' ),/*Categories*/
2030
- 'template_url' => array(
2031
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2032
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2033
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2034
- ),
2035
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2036
- 'demo_url' => 'http://www.demo.acmethemes.com/read-more/',/*Demo Url*/
2037
- /**/
2038
- 'plugins' => array(
2039
- array(
2040
- 'name' => 'Gutentor',
2041
- 'slug' => 'gutentor',
2042
- ),
2043
- array(
2044
- 'name' => 'Acme Fix Images',
2045
- 'slug' => 'acme-fix-images',
2046
- ),
2047
- array(
2048
- 'name' => 'Contact Form 7',
2049
- 'slug' => 'contact-form-7',
2050
- 'main_file' => 'wp-contact-form-7.php',
2051
- ),
2052
- )
2053
- ),
2054
- 'demo-2' =>array(
2055
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
2056
- 'is_premium' => false,/*Premium*/
2057
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2058
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
2059
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
2060
- 'categories' => array( 'woocommerce' ),/*Categories*/
2061
- 'template_url' => array(
2062
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2063
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2064
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2065
- ),
2066
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2067
- 'demo_url' => 'http://www.demo.acmethemes.com/read-more/home-1',/*Demo Url*/
2068
- /**/
2069
- 'plugins' => array(
2070
- array(
2071
- 'name' => 'Gutentor',
2072
- 'slug' => 'gutentor',
2073
- ),
2074
- array(
2075
- 'name' => 'Acme Fix Images',
2076
- 'slug' => 'acme-fix-images',
2077
- ),
2078
- array(
2079
- 'name' => 'WooCommerce',
2080
- 'slug' => 'woocommerce'
2081
- ),
2082
- array(
2083
- 'name' => 'Contact Form 7',
2084
- 'slug' => 'contact-form-7',
2085
- 'main_file' => 'wp-contact-form-7.php',
2086
- ),
2087
- )
2088
- ),
2089
- 'demo-3' =>array(
2090
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
2091
- 'is_premium' => false,/*Premium*/
2092
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2093
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
2094
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
2095
- 'categories' => array( 'magazine' ),/*Categories*/
2096
- 'template_url' => array(
2097
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
2098
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
2099
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
2100
- ),
2101
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
2102
- 'demo_url' => 'http://www.demo.acmethemes.com/read-more/home-2',/*Demo Url*/
2103
- /**/
2104
- 'plugins' => array(
2105
- array(
2106
- 'name' => 'Gutentor',
2107
- 'slug' => 'gutentor',
2108
- ),
2109
- array(
2110
- 'name' => 'Acme Fix Images',
2111
- 'slug' => 'acme-fix-images',
2112
- ),
2113
- array(
2114
- 'name' => 'Contact Form 7',
2115
- 'slug' => 'contact-form-7',
2116
- 'main_file' => 'wp-contact-form-7.php',
2117
- ),
2118
- )
2119
- ),
2120
- 'demo-4' =>array(
2121
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
2122
- 'is_premium' => false,/*Premium*/
2123
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2124
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
2125
- 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
2126
- 'categories' => array( 'magazine' ),/*Categories*/
2127
- 'template_url' => array(
2128
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
2129
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
2130
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
2131
- ),
2132
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
2133
- 'demo_url' => 'http://www.demo.acmethemes.com/read-more/home-3',/*Demo Url*/
2134
- /**/
2135
- 'plugins' => array(
2136
- array(
2137
- 'name' => 'Gutentor',
2138
- 'slug' => 'gutentor',
2139
- ),
2140
- array(
2141
- 'name' => 'Acme Fix Images',
2142
- 'slug' => 'acme-fix-images',
2143
- ),
2144
- array(
2145
- 'name' => 'Contact Form 7',
2146
- 'slug' => 'contact-form-7',
2147
- 'main_file' => 'wp-contact-form-7.php',
2148
- ),
2149
- )
2150
- ),
2151
- );
2152
- break;
2153
- case "read-more-pro":
2154
- $demo_list = array(
2155
- 'demo-1' =>array(
2156
- 'title' => __( 'Demo 1', 'acmethemes' ),/*Title*/
2157
- 'is_premium' => false,/*Premium*/
2158
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2159
- 'author' => __( 'Acme Themes','acmethemes' ),/*Author Name*/
2160
- 'keywords' => array( 'main', 'demo' ,'demo-1' ),/*Search keyword*/
2161
- 'categories' => array( 'magazine' ),/*Categories*/
2162
- 'template_url' => array(
2163
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2164
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2165
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2166
- ),
2167
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2168
- 'demo_url' => 'http://www.demo.acmethemes.com/read-more-pro/',/*Demo Url*/
2169
- /**/
2170
- 'plugins' => array(
2171
- array(
2172
- 'name' => 'Gutentor',
2173
- 'slug' => 'gutentor',
2174
- ),
2175
- array(
2176
- 'name' => 'Acme Fix Images',
2177
- 'slug' => 'acme-fix-images',
2178
- ),
2179
- array(
2180
- 'name' => 'Contact Form 7',
2181
- 'slug' => 'contact-form-7',
2182
- 'main_file' => 'wp-contact-form-7.php',
2183
- ),
2184
- )
2185
- ),
2186
- 'demo-2' =>array(
2187
- 'title' => __( 'Demo 2', 'acmethemes' ),/*Title*/
2188
- 'is_premium' => false,/*Premium*/
2189
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2190
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
2191
- 'keywords' => array( 'main', 'demo' ,'demo-2' ),/*Search keyword*/
2192
- 'categories' => array( 'woocommerce' ),/*Categories*/
2193
- 'template_url' => array(
2194
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2195
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2196
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2197
- ),
2198
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2199
- 'demo_url' => 'http://www.demo.acmethemes.com/read-more-pro/home-1',/*Demo Url*/
2200
- /**/
2201
- 'plugins' => array(
2202
- array(
2203
- 'name' => 'Gutentor',
2204
- 'slug' => 'gutentor',
2205
- ),
2206
- array(
2207
- 'name' => 'Acme Fix Images',
2208
- 'slug' => 'acme-fix-images',
2209
- ),
2210
- array(
2211
- 'name' => 'WooCommerce',
2212
- 'slug' => 'woocommerce'
2213
- ),
2214
- array(
2215
- 'name' => 'Contact Form 7',
2216
- 'slug' => 'contact-form-7',
2217
- 'main_file' => 'wp-contact-form-7.php',
2218
- ),
2219
- )
2220
- ),
2221
- 'demo-3' =>array(
2222
- 'title' => __( 'Demo 3', 'acmethemes' ),/*Title*/
2223
- 'is_premium' => false,/*Premium*/
2224
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2225
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
2226
- 'keywords' => array( 'main', 'demo' ,'demo-3' ),/*Search keyword*/
2227
- 'categories' => array( 'magazine' ),/*Categories*/
2228
- 'template_url' => array(
2229
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
2230
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
2231
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
2232
- ),
2233
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
2234
- 'demo_url' => 'http://www.demo.acmethemes.com/read-more-pro/home-2',/*Demo Url*/
2235
- /**/
2236
- 'plugins' => array(
2237
- array(
2238
- 'name' => 'Gutentor',
2239
- 'slug' => 'gutentor',
2240
- ),
2241
- array(
2242
- 'name' => 'Acme Fix Images',
2243
- 'slug' => 'acme-fix-images',
2244
- ),
2245
- array(
2246
- 'name' => 'Contact Form 7',
2247
- 'slug' => 'contact-form-7',
2248
- 'main_file' => 'wp-contact-form-7.php',
2249
- ),
2250
- )
2251
- ),
2252
- 'demo-4' =>array(
2253
- 'title' => __( 'Demo 4', 'acmethemes' ),/*Title*/
2254
- 'is_premium' => false,/*Premium*/
2255
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2256
- 'author' => __( 'Acme Themes', 'acmethemes' ),/*Author Name*/
2257
- 'keywords' => array( 'main', 'demo' ,'demo-4' ),/*Search keyword*/
2258
- 'categories' => array( 'personal-blog' ),/*Categories*/
2259
- 'template_url' => array(
2260
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
2261
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
2262
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
2263
- ),
2264
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
2265
- 'demo_url' => 'http://www.demo.acmethemes.com/read-more-pro/home-3',/*Demo Url*/
2266
- /**/
2267
- 'plugins' => array(
2268
- array(
2269
- 'name' => 'Gutentor',
2270
- 'slug' => 'gutentor',
2271
- ),
2272
- array(
2273
- 'name' => 'Acme Fix Images',
2274
- 'slug' => 'acme-fix-images',
2275
- ),
2276
- array(
2277
- 'name' => 'Contact Form 7',
2278
- 'slug' => 'contact-form-7',
2279
- 'main_file' => 'wp-contact-form-7.php',
2280
- ),
2281
- )
2282
- ),
2283
- );
2284
- break;
2285
- case "education-base":
2286
- $demo_list = array(
2287
- 'demo-1' =>array(
2288
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2289
- 'is_premium' => false,/*Premium*/
2290
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2291
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2292
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2293
- 'categories' => array( 'education' ),/*Categories*/
2294
- 'template_url' => array(
2295
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2296
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2297
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2298
- ),
2299
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2300
- 'demo_url' => 'http://www.demo.acmethemes.com/education-base/',/*Demo Url*/
2301
- /**/
2302
- 'plugins' => array(
2303
- array(
2304
- 'name' => 'Gutentor',
2305
- 'slug' => 'gutentor',
2306
- ),
2307
- array(
2308
- 'name' => 'Acme Fix Images',
2309
- 'slug' => 'acme-fix-images',
2310
- ),
2311
- array(
2312
- 'name' => 'Contact Form 7',
2313
- 'slug' => 'contact-form-7',
2314
- 'main_file' => 'wp-contact-form-7.php',
2315
- ),
2316
- array(
2317
- 'name' => 'Honeypot for Contact Form 7',
2318
- 'slug' => 'contact-form-7-honeypot',
2319
- ),
2320
- )
2321
- ),
2322
- );
2323
- break;
2324
- case "education-base-pro":
2325
- $demo_list = array(
2326
- 'demo-1' =>array(
2327
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2328
- 'is_premium' => true,/*Premium*/
2329
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2330
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2331
- 'keywords' => array( 'main', 'demo','demo-2' ),/*Search keyword*/
2332
- 'categories' => array( 'education' ),/*Categories*/
2333
- 'template_url' => array(
2334
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2335
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2336
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2337
- ),
2338
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2339
- 'demo_url' => 'http://www.demo.acmethemes.com/education-base-pro/',/*Demo Url*/
2340
- /**/
2341
- 'plugins' => array(
2342
- array(
2343
- 'name' => 'Gutentor',
2344
- 'slug' => 'gutentor',
2345
- ),
2346
- array(
2347
- 'name' => 'Acme Fix Images',
2348
- 'slug' => 'acme-fix-images',
2349
- ),
2350
- array(
2351
- 'name' => 'Contact Form 7',
2352
- 'slug' => 'contact-form-7',
2353
- 'main_file' => 'wp-contact-form-7.php',
2354
- ),
2355
- array(
2356
- 'name' => 'WooCommerce',
2357
- 'slug' => 'woocommerce'
2358
- ),
2359
- )
2360
- ),
2361
- 'demo-2' =>array(
2362
- 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
2363
- 'is_premium' => true,/*Premium*/
2364
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2365
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2366
- 'keywords' => array( 'main','demo', 'demo-2' ),/*Search keyword*/
2367
- 'categories' => array( 'education' ),/*Categories*/
2368
- 'template_url' => array(
2369
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2370
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2371
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2372
- ),
2373
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2374
- 'demo_url' => 'http://www.demo.acmethemes.com/education-base-pro/home-1',/*Demo Url*/
2375
- /**/
2376
- 'plugins' => array(
2377
- array(
2378
- 'name' => 'Gutentor',
2379
- 'slug' => 'gutentor',
2380
- ),
2381
- array(
2382
- 'name' => 'Acme Fix Images',
2383
- 'slug' => 'acme-fix-images',
2384
- ),
2385
- array(
2386
- 'name' => 'Contact Form 7',
2387
- 'slug' => 'contact-form-7',
2388
- 'main_file' => 'wp-contact-form-7.php',
2389
- ),
2390
- array(
2391
- 'name' => 'WooCommerce',
2392
- 'slug' => 'woocommerce'
2393
- ),
2394
- )
2395
- ),
2396
- 'demo-3' =>array(
2397
- 'title' => __( 'Demo 3', 'acmeblog' ),/*Title*/
2398
- 'is_premium' => true,/*Premium*/
2399
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2400
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2401
- 'keywords' => array( 'main', 'demo','demo-3' ),/*Search keyword*/
2402
- 'categories' => array( 'multipurpose' ),/*Categories*/
2403
- 'template_url' => array(
2404
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
2405
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
2406
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
2407
- ),
2408
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
2409
- 'demo_url' => 'http://www.demo.acmethemes.com/education-base-pro/home-2',/*Demo Url*/
2410
- /**/
2411
- 'plugins' => array(
2412
- array(
2413
- 'name' => 'Gutentor',
2414
- 'slug' => 'gutentor',
2415
- ),
2416
- array(
2417
- 'name' => 'Acme Fix Images',
2418
- 'slug' => 'acme-fix-images',
2419
- ),
2420
- array(
2421
- 'name' => 'Contact Form 7',
2422
- 'slug' => 'contact-form-7',
2423
- 'main_file' => 'wp-contact-form-7.php',
2424
- ),
2425
- array(
2426
- 'name' => 'WooCommerce',
2427
- 'slug' => 'woocommerce'
2428
- ),
2429
- )
2430
- ),
2431
- 'demo-4' =>array(
2432
- 'title' => __( 'Demo 4', 'acmeblog' ),/*Title*/
2433
- 'is_premium' => true,/*Premium*/
2434
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2435
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2436
- 'keywords' => array( 'main', 'demo','demo-4'),/*Search keyword*/
2437
- 'categories' => array( 'blog' ),/*Categories*/
2438
- 'template_url' => array(
2439
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/content.json',
2440
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/options.json',
2441
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/widgets.json'
2442
- ),
2443
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-4/screenshot.jpg',/*Screenshot of block*/
2444
- 'demo_url' => 'http://www.demo.acmethemes.com/education-base-pro/home-3',/*Demo Url*/
2445
- /**/
2446
- 'plugins' => array(
2447
- array(
2448
- 'name' => 'Gutentor',
2449
- 'slug' => 'gutentor',
2450
- ),
2451
- array(
2452
- 'name' => 'Acme Fix Images',
2453
- 'slug' => 'acme-fix-images',
2454
- ),
2455
- array(
2456
- 'name' => 'Contact Form 7',
2457
- 'slug' => 'contact-form-7',
2458
- 'main_file' => 'wp-contact-form-7.php',
2459
- ),
2460
- array(
2461
- 'name' => 'WooCommerce',
2462
- 'slug' => 'woocommerce'
2463
- ),
2464
- )
2465
- ),
2466
- );
2467
- break;
2468
- case "prolific":
2469
- $demo_list = array(
2470
- 'demo-1' =>array(
2471
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2472
- 'is_premium' => false,/*Premium*/
2473
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2474
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2475
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2476
- 'categories' => array( 'blog' ),/*Categories*/
2477
- 'template_url' => array(
2478
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2479
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2480
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2481
- ),
2482
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2483
- 'demo_url' => 'http://www.demo.acmethemes.com/prolific/',/*Demo Url*/
2484
- /**/
2485
- 'plugins' => array(
2486
- array(
2487
- 'name' => 'Gutentor',
2488
- 'slug' => 'gutentor',
2489
- ),
2490
- array(
2491
- 'name' => 'WooCommerce',
2492
- 'slug' => 'woocommerce'
2493
- ),
2494
- array(
2495
- 'name' => 'Contact Form 7',
2496
- 'slug' => 'contact-form-7',
2497
- 'main_file' => 'wp-contact-form-7.php',
2498
- ),
2499
- )
2500
- ),
2501
- );
2502
- break;
2503
- case "prolificpro":
2504
- $demo_list = array(
2505
- 'demo-1' =>array(
2506
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2507
- 'is_premium' => true,/*Premium*/
2508
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2509
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2510
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2511
- 'categories' => array( 'blog' ),/*Categories*/
2512
- 'template_url' => array(
2513
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2514
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2515
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2516
- ),
2517
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2518
- 'demo_url' => 'http://www.demo.acmethemes.com/prolificpro/',/*Demo Url*/
2519
- /**/
2520
- 'plugins' => array(
2521
- array(
2522
- 'name' => 'Gutentor',
2523
- 'slug' => 'gutentor',
2524
- ),
2525
- array(
2526
- 'name' => 'Contact Form 7',
2527
- 'slug' => 'contact-form-7',
2528
- 'main_file' => 'wp-contact-form-7.php',
2529
- ),
2530
- )
2531
- ),
2532
- 'demo-2' =>array(
2533
- 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
2534
- 'is_premium' => true,/*Premium*/
2535
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2536
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2537
- 'keywords' => array( 'main', 'demo', 'demo-2'),/*Search keyword*/
2538
- 'categories' => array( 'blog' ),/*Categories*/
2539
- 'template_url' => array(
2540
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2541
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2542
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2543
- ),
2544
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2545
- 'demo_url' => 'http://www.demo.acmethemes.com/prolificpro/home-1',/*Demo Url*/
2546
- /**/
2547
- 'plugins' => array(
2548
- array(
2549
- 'name' => 'Gutentor',
2550
- 'slug' => 'gutentor',
2551
- ),
2552
- array(
2553
- 'name' => 'Contact Form 7',
2554
- 'slug' => 'contact-form-7',
2555
- 'main_file' => 'wp-contact-form-7.php',
2556
- ),
2557
- )
2558
- ),
2559
- );
2560
- break;
2561
- case "medical-circle":
2562
- $demo_list = array(
2563
- 'demo-1' =>array(
2564
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2565
- 'is_premium' => false,/*Premium*/
2566
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2567
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2568
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2569
- 'categories' => array( 'medical' ),/*Categories*/
2570
- 'template_url' => array(
2571
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2572
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2573
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2574
- ),
2575
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2576
- 'demo_url' => 'http://www.demo.acmethemes.com/medical-circle/',/*Demo Url*/
2577
- /**/
2578
- 'plugins' => array(
2579
- array(
2580
- 'name' => 'Gutentor',
2581
- 'slug' => 'gutentor',
2582
- ),
2583
- array(
2584
- 'name' => 'Contact Form 7',
2585
- 'slug' => 'contact-form-7',
2586
- 'main_file' => 'wp-contact-form-7.php',
2587
- ),
2588
- )
2589
- ),
2590
- );
2591
- break;
2592
- case "medical-circle-pro":
2593
- $demo_list = array(
2594
- 'demo-1' =>array(
2595
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2596
- 'is_premium' => true,/*Premium*/
2597
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2598
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2599
- 'keywords' => array( 'main', 'demo' ),/*Search keyword*/
2600
- 'categories' => array( 'medical' ),/*Categories*/
2601
- 'template_url' => array(
2602
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2603
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2604
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2605
- ),
2606
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2607
- 'demo_url' => 'http://www.demo.acmethemes.com/medical-circle-pro/',/*Demo Url*/
2608
- /**/
2609
- 'plugins' => array(
2610
- array(
2611
- 'name' => 'Gutentor',
2612
- 'slug' => 'gutentor',
2613
- ),
2614
- array(
2615
- 'name' => 'Contact Form 7',
2616
- 'slug' => 'contact-form-7',
2617
- 'main_file' => 'wp-contact-form-7.php',
2618
- ),
2619
- )
2620
- ),
2621
- );
2622
- break;
2623
- case "online-shop":
2624
- $demo_list = array(
2625
- 'demo-1' =>array(
2626
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2627
- 'is_premium' => false,/*Premium*/
2628
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2629
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2630
- 'keywords' => array( 'main', 'demo' ,'demo-1'),/*Search keyword*/
2631
- 'categories' => array( 'shop' ),/*Categories*/
2632
- 'template_url' => array(
2633
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2634
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2635
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2636
- ),
2637
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2638
- 'demo_url' => 'http://www.demo.acmethemes.com/online-shop/',/*Demo Url*/
2639
- /**/
2640
- 'plugins' => array(
2641
- array(
2642
- 'name' => 'Gutentor',
2643
- 'slug' => 'gutentor',
2644
- ),
2645
- array(
2646
- 'name' => 'Acme Fix Images',
2647
- 'slug' => 'acme-fix-images',
2648
- ),
2649
- array(
2650
- 'name' => 'WooCommerce',
2651
- 'slug' => 'woocommerce'
2652
- ),
2653
- array(
2654
- 'name' => 'Contact Form 7',
2655
- 'slug' => 'contact-form-7',
2656
- 'main_file' => 'wp-contact-form-7.php',
2657
- ),
2658
- )
2659
- ),
2660
- 'demo-2' =>array(
2661
- 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
2662
- 'is_premium' => false,/*Premium*/
2663
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2664
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2665
- 'keywords' => array( 'main', 'demo', 'demo-2' ),/*Search keyword*/
2666
- 'categories' => array( 'shop' ),/*Categories*/
2667
- 'template_url' => array(
2668
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2669
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2670
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2671
- ),
2672
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2673
- 'demo_url' => 'http://www.demo.acmethemes.com/online-shop/home-1',/*Demo Url*/
2674
- /**/
2675
- 'plugins' => array(
2676
- array(
2677
- 'name' => 'Gutentor',
2678
- 'slug' => 'gutentor',
2679
- ),
2680
- array(
2681
- 'name' => 'Acme Fix Images',
2682
- 'slug' => 'acme-fix-images',
2683
- ),
2684
- array(
2685
- 'name' => 'WooCommerce',
2686
- 'slug' => 'woocommerce'
2687
- ),
2688
- array(
2689
- 'name' => 'YITH WooCommerce Wishlist',
2690
- 'slug' => 'yith-woocommerce-wishlist'
2691
- ),
2692
- array(
2693
- 'name' => 'Contact Form 7',
2694
- 'slug' => 'contact-form-7',
2695
- 'main_file' => 'wp-contact-form-7.php',
2696
- ),
2697
- )
2698
- ),
2699
- );
2700
- break;
2701
- case "online-shop-pro":
2702
- $demo_list = array(
2703
- 'demo-1' =>array(
2704
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2705
- 'is_premium' => true,/*Premium*/
2706
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2707
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2708
- 'keywords' => array( 'main', 'demo' ,'demo-1'),/*Search keyword*/
2709
- 'categories' => array( 'shop' ),/*Categories*/
2710
- 'template_url' => array(
2711
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2712
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2713
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2714
- ),
2715
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2716
- 'demo_url' => 'http://www.demo.acmethemes.com/online-shop-pro/',/*Demo Url*/
2717
- /**/
2718
- 'plugins' => array(
2719
- array(
2720
- 'name' => 'Gutentor',
2721
- 'slug' => 'gutentor',
2722
- ),
2723
- array(
2724
- 'name' => 'Acme Fix Images',
2725
- 'slug' => 'acme-fix-images',
2726
- ),
2727
- array(
2728
- 'name' => 'WooCommerce',
2729
- 'slug' => 'woocommerce'
2730
- ),
2731
- array(
2732
- 'name' => 'YITH WooCommerce Wishlist',
2733
- 'slug' => 'yith-woocommerce-wishlist'
2734
- ),
2735
- array(
2736
- 'name' => 'Contact Form 7',
2737
- 'slug' => 'contact-form-7',
2738
- 'main_file' => 'wp-contact-form-7.php',
2739
- ),
2740
- )
2741
- ),
2742
- 'demo-2' =>array(
2743
- 'title' => __( 'Demo 2', 'acmeblog' ),/*Title*/
2744
- 'is_premium' => true,/*Premium*/
2745
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2746
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2747
- 'keywords' => array( 'main', 'demo', 'demo-2' ),/*Search keyword*/
2748
- 'categories' => array( 'shop' ),/*Categories*/
2749
- 'template_url' => array(
2750
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/content.json',
2751
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/options.json',
2752
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/widgets.json'
2753
- ),
2754
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-2/screenshot.jpg',/*Screenshot of block*/
2755
- 'demo_url' => 'http://www.demo.acmethemes.com/online-shop-pro/home-1',/*Demo Url*/
2756
- /**/
2757
- 'plugins' => array(
2758
- array(
2759
- 'name' => 'Gutentor',
2760
- 'slug' => 'gutentor',
2761
- ),
2762
- array(
2763
- 'name' => 'Acme Fix Images',
2764
- 'slug' => 'acme-fix-images',
2765
- ),
2766
- array(
2767
- 'name' => 'WooCommerce',
2768
- 'slug' => 'woocommerce'
2769
- ),
2770
- array(
2771
- 'name' => 'YITH WooCommerce Wishlist',
2772
- 'slug' => 'yith-woocommerce-wishlist'
2773
- ),
2774
- array(
2775
- 'name' => 'Contact Form 7',
2776
- 'slug' => 'contact-form-7',
2777
- 'main_file' => 'wp-contact-form-7.php',
2778
- ),
2779
- )
2780
- ),
2781
- 'demo-3' =>array(
2782
- 'title' => __( 'Demo 3', 'acmeblog' ),/*Title*/
2783
- 'is_premium' => true,/*Premium*/
2784
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2785
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2786
- 'keywords' => array( 'main', 'demo', 'demo-3' ),/*Search keyword*/
2787
- 'categories' => array( 'shop' ),/*Categories*/
2788
- 'template_url' => array(
2789
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/content.json',
2790
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/options.json',
2791
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/widgets.json'
2792
- ),
2793
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-3/screenshot.jpg',/*Screenshot of block*/
2794
- 'demo_url' => 'http://www.demo.acmethemes.com/online-shop-pro/home-2',/*Demo Url*/
2795
- /**/
2796
- 'plugins' => array(
2797
- array(
2798
- 'name' => 'Gutentor',
2799
- 'slug' => 'gutentor',
2800
- ),
2801
- array(
2802
- 'name' => 'Acme Fix Images',
2803
- 'slug' => 'acme-fix-images',
2804
- ),
2805
- array(
2806
- 'name' => 'WooCommerce',
2807
- 'slug' => 'woocommerce'
2808
- ),
2809
- array(
2810
- 'name' => 'YITH WooCommerce Wishlist',
2811
- 'slug' => 'yith-woocommerce-wishlist'
2812
- ),
2813
- array(
2814
- 'name' => 'Contact Form 7',
2815
- 'slug' => 'contact-form-7',
2816
- 'main_file' => 'wp-contact-form-7.php',
2817
- ),
2818
- )
2819
- ),
2820
- );
2821
- break;
2822
- case "event-star-pro":
2823
- $demo_list = array(
2824
- 'demo-1' =>array(
2825
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2826
- 'is_premium' => true,/*Premium*/
2827
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2828
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2829
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2830
- 'categories' => array( 'event' ),/*Categories*/
2831
- 'template_url' => array(
2832
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2833
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2834
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2835
- ),
2836
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2837
- 'demo_url' => 'http://www.demo.acmethemes.com/event-star-pro/',/*Demo Url*/
2838
- /**/
2839
- 'plugins' => array(
2840
- array(
2841
- 'name' => 'Gutentor',
2842
- 'slug' => 'gutentor',
2843
- ),
2844
- array(
2845
- 'name' => 'Page Builder by SiteOrigin',
2846
- 'slug' => 'siteorigin-panels'
2847
- ),
2848
- array(
2849
- 'name' => 'Contact Form 7',
2850
- 'slug' => 'contact-form-7',
2851
- 'main_file' => 'wp-contact-form-7.php',
2852
- ),
2853
- )
2854
- ),
2855
- );
2856
- break;
2857
- case "event-star":
2858
- $demo_list = array(
2859
- 'demo-1' =>array(
2860
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2861
- 'is_premium' => false,/*Premium*/
2862
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2863
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2864
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2865
- 'categories' => array( 'event' ),/*Categories*/
2866
- 'template_url' => array(
2867
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2868
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2869
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2870
- ),
2871
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2872
- 'demo_url' => 'http://www.demo.acmethemes.com/event-star/',/*Demo Url*/
2873
- /**/
2874
- 'plugins' => array(
2875
- array(
2876
- 'name' => 'Gutentor',
2877
- 'slug' => 'gutentor',
2878
- ),
2879
- array(
2880
- 'name' => 'Page Builder by SiteOrigin',
2881
- 'slug' => 'siteorigin-panels'
2882
- ),
2883
- array(
2884
- 'name' => 'Contact Form 7',
2885
- 'slug' => 'contact-form-7',
2886
- 'main_file' => 'wp-contact-form-7.php',
2887
- ),
2888
- )
2889
- ),
2890
- );
2891
- break;
2892
- case "construction-field-pro":
2893
- $demo_list = array(
2894
- 'demo-1' =>array(
2895
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2896
- 'is_premium' => true,/*Premium*/
2897
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2898
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2899
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2900
- 'categories' => array( 'construction' ),/*Categories*/
2901
- 'template_url' => array(
2902
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2903
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2904
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2905
- ),
2906
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2907
- 'demo_url' => 'http://www.demo.acmethemes.com/construction-field-pro/',/*Demo Url*/
2908
- /**/
2909
- 'plugins' => array(
2910
- array(
2911
- 'name' => 'Gutentor',
2912
- 'slug' => 'gutentor',
2913
- ),
2914
- array(
2915
- 'name' => 'Page Builder by SiteOrigin',
2916
- 'slug' => 'siteorigin-panels'
2917
- ),
2918
- array(
2919
- 'name' => 'Contact Form 7',
2920
- 'slug' => 'contact-form-7',
2921
- 'main_file' => 'wp-contact-form-7.php',
2922
- ),
2923
- )
2924
- ),
2925
- );
2926
- break;
2927
- case "construction-field":
2928
- $demo_list = array(
2929
- 'demo-1' =>array(
2930
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2931
- 'is_premium' => false,/*Premium*/
2932
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2933
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2934
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2935
- 'categories' => array( 'construction' ),/*Categories*/
2936
- 'template_url' => array(
2937
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2938
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2939
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2940
- ),
2941
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2942
- 'demo_url' => 'http://www.demo.acmethemes.com/construction-field/',/*Demo Url*/
2943
- /**/
2944
- 'plugins' => array(
2945
- array(
2946
- 'name' => 'Gutentor',
2947
- 'slug' => 'gutentor',
2948
- ),
2949
- array(
2950
- 'name' => 'Page Builder by SiteOrigin',
2951
- 'slug' => 'siteorigin-panels'
2952
- ),
2953
- array(
2954
- 'name' => 'Contact Form 7',
2955
- 'slug' => 'contact-form-7',
2956
- 'main_file' => 'wp-contact-form-7.php',
2957
- ),
2958
- )
2959
- ),
2960
- );
2961
- break;
2962
- case "beauty-studio-pro":
2963
- $demo_list = array(
2964
- 'demo-1' =>array(
2965
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
2966
- 'is_premium' => true,/*Premium*/
2967
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
2968
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
2969
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
2970
- 'categories' => array( 'beauty' ),/*Categories*/
2971
- 'template_url' => array(
2972
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
2973
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
2974
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
2975
- ),
2976
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
2977
- 'demo_url' => 'http://www.demo.acmethemes.com/beauty-studio-pro/',/*Demo Url*/
2978
- /**/
2979
- 'plugins' => array(
2980
- array(
2981
- 'name' => 'Gutentor',
2982
- 'slug' => 'gutentor',
2983
- ),
2984
- array(
2985
- 'name' => 'Page Builder by SiteOrigin',
2986
- 'slug' => 'siteorigin-panels'
2987
- ),
2988
- array(
2989
- 'name' => 'Contact Form 7',
2990
- 'slug' => 'contact-form-7',
2991
- 'main_file' => 'wp-contact-form-7.php',
2992
- ),
2993
- )
2994
- ),
2995
- );
2996
- break;
2997
- break;
2998
- case "beauty-studio":
2999
- $demo_list = array(
3000
- 'demo-1' =>array(
3001
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3002
- 'is_premium' => false,/*Premium*/
3003
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3004
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3005
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3006
- 'categories' => array( 'beauty' ),/*Categories*/
3007
- 'template_url' => array(
3008
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3009
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3010
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3011
- ),
3012
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3013
- 'demo_url' => 'http://www.demo.acmethemes.com/beauty-studio/',/*Demo Url*/
3014
- /**/
3015
- 'plugins' => array(
3016
- array(
3017
- 'name' => 'Gutentor',
3018
- 'slug' => 'gutentor',
3019
- ),
3020
- array(
3021
- 'name' => 'Page Builder by SiteOrigin',
3022
- 'slug' => 'siteorigin-panels'
3023
- ),
3024
- array(
3025
- 'name' => 'Contact Form 7',
3026
- 'slug' => 'contact-form-7',
3027
- 'main_file' => 'wp-contact-form-7.php',
3028
- ),
3029
- )
3030
- ),
3031
- );
3032
- break;
3033
- break;
3034
- case "lawyer-zone-pro":
3035
- $demo_list = array(
3036
- 'demo-1' =>array(
3037
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3038
- 'is_premium' => true,/*Premium*/
3039
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3040
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3041
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3042
- 'categories' => array( 'lawyer' ),/*Categories*/
3043
- 'template_url' => array(
3044
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3045
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3046
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3047
- ),
3048
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3049
- 'demo_url' => 'http://www.demo.acmethemes.com/lawyer-zone-pro/',/*Demo Url*/
3050
- /**/
3051
- 'plugins' => array(
3052
- array(
3053
- 'name' => 'Gutentor',
3054
- 'slug' => 'gutentor',
3055
- ),
3056
- array(
3057
- 'name' => 'Page Builder by SiteOrigin',
3058
- 'slug' => 'siteorigin-panels'
3059
- ),
3060
- array(
3061
- 'name' => 'Contact Form 7',
3062
- 'slug' => 'contact-form-7',
3063
- 'main_file' => 'wp-contact-form-7.php',
3064
- ),
3065
- )
3066
- ),
3067
- );
3068
- break;
3069
- case "lawyer-zone":
3070
- $demo_list = array(
3071
- 'demo-1' =>array(
3072
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3073
- 'is_premium' => false,/*Premium*/
3074
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3075
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3076
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3077
- 'categories' => array( 'lawyer' ),/*Categories*/
3078
- 'template_url' => array(
3079
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3080
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3081
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3082
- ),
3083
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3084
- 'demo_url' => 'http://www.demo.acmethemes.com/lawyer-zone/',/*Demo Url*/
3085
- /**/
3086
- 'plugins' => array(
3087
- array(
3088
- 'name' => 'Gutentor',
3089
- 'slug' => 'gutentor',
3090
- ),
3091
- array(
3092
- 'name' => 'Page Builder by SiteOrigin',
3093
- 'slug' => 'siteorigin-panels'
3094
- ),
3095
- array(
3096
- 'name' => 'Contact Form 7',
3097
- 'slug' => 'contact-form-7',
3098
- 'main_file' => 'wp-contact-form-7.php',
3099
- ),
3100
- )
3101
- ),
3102
- );
3103
- break;
3104
- case "travel-way-pro":
3105
- $demo_list = array(
3106
- 'demo-1' =>array(
3107
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3108
- 'is_premium' => true,/*Premium*/
3109
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3110
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3111
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3112
- 'categories' => array( 'Travel' ),/*Categories*/
3113
- 'template_url' => array(
3114
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3115
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3116
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3117
- ),
3118
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3119
- 'demo_url' => 'http://www.demo.acmethemes.com/travel-way-pro/',/*Demo Url*/
3120
- /**/
3121
- 'plugins' => array(
3122
- array(
3123
- 'name' => 'Gutentor',
3124
- 'slug' => 'gutentor',
3125
- ),
3126
- array(
3127
- 'name' => 'Page Builder by SiteOrigin',
3128
- 'slug' => 'siteorigin-panels'
3129
- ),
3130
- array(
3131
- 'name' => 'WooCommerce',
3132
- 'slug' => 'woocommerce'
3133
- ),
3134
- array(
3135
- 'name' => 'WPForms Lite',
3136
- 'slug' => 'wpforms-lite',
3137
- ),
3138
- )
3139
- ),
3140
- );
3141
- break;
3142
- case "travel-way":
3143
- $demo_list = array(
3144
- 'demo-1' =>array(
3145
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3146
- 'is_premium' => false,/*Premium*/
3147
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3148
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3149
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3150
- 'categories' => array( 'travel' ),/*Categories*/
3151
- 'template_url' => array(
3152
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3153
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3154
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3155
- ),
3156
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3157
- 'demo_url' => 'http://www.demo.acmethemes.com/travel-way/',/*Demo Url*/
3158
- /**/
3159
- 'plugins' => array(
3160
- array(
3161
- 'name' => 'Gutentor',
3162
- 'slug' => 'gutentor',
3163
- ),
3164
- array(
3165
- 'name' => 'Page Builder by SiteOrigin',
3166
- 'slug' => 'siteorigin-panels'
3167
- ),
3168
- array(
3169
- 'name' => 'WooCommerce',
3170
- 'slug' => 'woocommerce'
3171
- ),
3172
- array(
3173
- 'name' => 'Contact Form 7',
3174
- 'slug' => 'contact-form-7',
3175
- 'main_file' => 'wp-contact-form-7.php',
3176
- ),
3177
- )
3178
- ),
3179
- );
3180
- break;
3181
- case "fitness-hub-pro":
3182
- $demo_list = array(
3183
- 'demo-1' =>array(
3184
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3185
- 'is_premium' => true,/*Premium*/
3186
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3187
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3188
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3189
- 'categories' => array( 'Fitness' ),/*Categories*/
3190
- 'template_url' => array(
3191
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3192
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3193
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3194
- ),
3195
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3196
- 'demo_url' => 'http://www.demo.acmethemes.com/fitness-hub-pro/',/*Demo Url*/
3197
- /**/
3198
- 'plugins' => array(
3199
- array(
3200
- 'name' => 'Gutentor',
3201
- 'slug' => 'gutentor',
3202
- ),
3203
- array(
3204
- 'name' => 'Page Builder by SiteOrigin',
3205
- 'slug' => 'siteorigin-panels'
3206
- ),
3207
- array(
3208
- 'name' => 'Contact Form 7',
3209
- 'slug' => 'contact-form-7',
3210
- 'main_file' => 'wp-contact-form-7.php',
3211
- ),
3212
- )
3213
- ),
3214
- );
3215
- break;
3216
- case "fitness-hub":
3217
- $demo_list = array(
3218
- 'demo-1' =>array(
3219
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3220
- 'is_premium' => false,/*Premium*/
3221
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3222
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3223
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3224
- 'categories' => array( 'fitness' ),/*Categories*/
3225
- 'template_url' => array(
3226
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3227
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3228
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3229
- ),
3230
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3231
- 'demo_url' => 'http://www.demo.acmethemes.com/fitness-hub/',/*Demo Url*/
3232
- /**/
3233
- 'plugins' => array(
3234
- array(
3235
- 'name' => 'Gutentor',
3236
- 'slug' => 'gutentor',
3237
- ),
3238
- array(
3239
- 'name' => 'Page Builder by SiteOrigin',
3240
- 'slug' => 'siteorigin-panels'
3241
- ),
3242
- array(
3243
- 'name' => 'Contact Form 7',
3244
- 'slug' => 'contact-form-7',
3245
- 'main_file' => 'wp-contact-form-7.php',
3246
- ),
3247
- )
3248
- ),
3249
- );
3250
- break;
3251
- case "restaurant-recipe-pro":
3252
- $demo_list = array(
3253
- 'demo-1' =>array(
3254
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3255
- 'is_premium' => true,/*Premium*/
3256
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3257
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3258
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3259
- 'categories' => array( 'restaurant' ),/*Categories*/
3260
- 'template_url' => array(
3261
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3262
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3263
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3264
- ),
3265
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3266
- 'demo_url' => 'http://www.demo.acmethemes.com/restaurant-recipe-pro/',/*Demo Url*/
3267
- /**/
3268
- 'plugins' => array(
3269
- array(
3270
- 'name' => 'Gutentor',
3271
- 'slug' => 'gutentor',
3272
- ),
3273
- array(
3274
- 'name' => 'Page Builder by SiteOrigin',
3275
- 'slug' => 'siteorigin-panels'
3276
- ),
3277
- array(
3278
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
3279
- 'slug' => 'breadcrumb-navxt',
3280
- ),
3281
- array(
3282
- 'name' => 'Contact Form 7',
3283
- 'slug' => 'contact-form-7',
3284
- 'main_file' => 'wp-contact-form-7.php',
3285
- ),
3286
- )
3287
- ),
3288
- );
3289
- break;
3290
- case "restaurant-recipe":
3291
- $demo_list = array(
3292
- 'demo-1' =>array(
3293
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3294
- 'is_premium' => false,/*Premium*/
3295
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3296
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3297
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3298
- 'categories' => array( 'restaurant' ),/*Categories*/
3299
- 'template_url' => array(
3300
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3301
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3302
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3303
- ),
3304
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3305
- 'demo_url' => 'http://www.demo.acmethemes.com/restaurant-recipe/',/*Demo Url*/
3306
- /**/
3307
- 'plugins' => array(
3308
- array(
3309
- 'name' => 'Gutentor',
3310
- 'slug' => 'gutentor',
3311
- ),
3312
- array(
3313
- 'name' => 'Page Builder by SiteOrigin',
3314
- 'slug' => 'siteorigin-panels'
3315
- ),
3316
- array(
3317
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
3318
- 'slug' => 'breadcrumb-navxt',
3319
- ),
3320
- array(
3321
- 'name' => 'Contact Form 7',
3322
- 'slug' => 'contact-form-7',
3323
- 'main_file' => 'wp-contact-form-7.php',
3324
- ),
3325
- )
3326
- ),
3327
- );
3328
- break;
3329
- case "portfolio-web-pro":
3330
- $demo_list = array(
3331
- 'demo-1' =>array(
3332
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3333
- 'is_premium' => true,/*Premium*/
3334
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3335
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3336
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3337
- 'categories' => array( 'portfolio' ),/*Categories*/
3338
- 'template_url' => array(
3339
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3340
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3341
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3342
- ),
3343
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3344
- 'demo_url' => 'http://www.demo.acmethemes.com/portfolio-web-pro/',/*Demo Url*/
3345
- /**/
3346
- 'plugins' => array(
3347
- array(
3348
- 'name' => 'Gutentor',
3349
- 'slug' => 'gutentor',
3350
- ),
3351
- array(
3352
- 'name' => 'Page Builder by SiteOrigin',
3353
- 'slug' => 'siteorigin-panels'
3354
- ),
3355
- array(
3356
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
3357
- 'slug' => 'breadcrumb-navxt',
3358
- ),
3359
- array(
3360
- 'name' => 'Contact Form 7',
3361
- 'slug' => 'contact-form-7',
3362
- 'main_file' => 'wp-contact-form-7.php',
3363
- ),
3364
- )
3365
- ),
3366
- );
3367
- break;
3368
- case "portfolio-web":
3369
- $demo_list = array(
3370
- 'demo-1' =>array(
3371
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3372
- 'is_premium' => false,/*Premium*/
3373
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3374
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3375
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3376
- 'categories' => array( 'portfolio' ),/*Categories*/
3377
- 'template_url' => array(
3378
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3379
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3380
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3381
- ),
3382
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3383
- 'demo_url' => 'http://www.demo.acmethemes.com/portfolio-web/',/*Demo Url*/
3384
- /**/
3385
- 'plugins' => array(
3386
- array(
3387
- 'name' => 'Gutentor',
3388
- 'slug' => 'gutentor',
3389
- ),
3390
- array(
3391
- 'name' => 'Page Builder by SiteOrigin',
3392
- 'slug' => 'siteorigin-panels'
3393
- ),
3394
- array(
3395
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
3396
- 'slug' => 'breadcrumb-navxt',
3397
- ),
3398
- array(
3399
- 'name' => 'Contact Form 7',
3400
- 'slug' => 'contact-form-7',
3401
- 'main_file' => 'wp-contact-form-7.php',
3402
- ),
3403
- )
3404
- ),
3405
- );
3406
- break;
3407
- case "feminine-style-pro":
3408
- $demo_list = array(
3409
- 'demo-1' =>array(
3410
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3411
- 'is_premium' => true,/*Premium*/
3412
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3413
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3414
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3415
- 'categories' => array( 'feminine' ),/*Categories*/
3416
- 'template_url' => array(
3417
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3418
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3419
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3420
- ),
3421
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3422
- 'demo_url' => 'http://www.demo.acmethemes.com/feminine-style-pro/',/*Demo Url*/
3423
- /**/
3424
- 'plugins' => array(
3425
- array(
3426
- 'name' => 'Gutentor',
3427
- 'slug' => 'gutentor',
3428
- ),
3429
- array(
3430
- 'name' => 'Page Builder by SiteOrigin',
3431
- 'slug' => 'siteorigin-panels'
3432
- ),
3433
- array(
3434
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
3435
- 'slug' => 'breadcrumb-navxt',
3436
- ),
3437
- array(
3438
- 'name' => 'Contact Form 7',
3439
- 'slug' => 'contact-form-7',
3440
- 'main_file' => 'wp-contact-form-7.php',
3441
- ),
3442
- )
3443
- ),
3444
- );
3445
- break;
3446
- case "feminine-style":
3447
- $demo_list = array(
3448
- 'demo-1' =>array(
3449
- 'title' => __( 'Demo 1', 'acmeblog' ),/*Title*/
3450
- 'is_premium' => false,/*Premium*/
3451
- 'type' => 'normal',/*Optional eg gutentor, elementor or other page builders*/
3452
- 'author' => __( 'Acme Themes', 'acmeblog' ),/*Author Name*/
3453
- 'keywords' => array( 'main', 'demo','demo-1'),/*Search keyword*/
3454
- 'categories' => array( 'feminine' ),/*Categories*/
3455
- 'template_url' => array(
3456
- 'content' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/content.json',
3457
- 'options' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/options.json',
3458
- 'widgets' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/widgets.json'
3459
- ),
3460
- 'screenshot_url' => ACME_DEMO_SETUP_TEMPLATE_URL.$theme_slug.'/demo-1/screenshot.jpg',/*Screenshot of block*/
3461
- 'demo_url' => 'http://www.demo.acmethemes.com/feminine-style/',/*Demo Url*/
3462
- /**/
3463
- 'plugins' => array(
3464
- array(
3465
- 'name' => 'Gutentor',
3466
- 'slug' => 'gutentor',
3467
- ),
3468
- array(
3469
- 'name' => 'Page Builder by SiteOrigin',
3470
- 'slug' => 'siteorigin-panels'
3471
- ),
3472
- array(
3473
- 'name' => __('Breadcrumb NavXT','acmethemes' ),
3474
- 'slug' => 'breadcrumb-navxt',
3475
- ),
3476
- array(
3477
- 'name' => 'Contact Form 7',
3478
- 'slug' => 'contact-form-7',
3479
- 'main_file' => 'wp-contact-form-7.php',
3480
- ),
3481
- )
3482
- ),
3483
- );
3484
- break;
3485
- default:
3486
- $demo_list = array();
3487
- endswitch;
3488
-
3489
- return array_merge( $current_demo_list, $demo_list );
3490
 
3491
  }
3492
  }
276
  /**
277
  * Function to fetch templates.
278
  *
279
+ * @param $current_demo_list array
280
  * @return array
281
  */
282
  public function add_demo_lists( $current_demo_list ) {
283
 
284
+ if( acme_demo_setup_get_current_theme_author() != $this->theme_author ){
285
  return $current_demo_list;
286
  }
287
 
288
  $theme_slug = acme_demo_setup_get_current_theme_slug();
289
 
290
+ $templates = acme_demo_setup_get_templates_lists( $theme_slug );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
 
292
+ return array_merge( $current_demo_list, $templates );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
 
294
  }
295
  }
includes/init.php CHANGED
@@ -171,7 +171,11 @@ class Acme_Demo_Setup {
171
  require_once ACME_DEMO_SETUP_PATH . 'includes/functions.php';
172
  require_once ACME_DEMO_SETUP_PATH . 'includes/hooks.php';
173
 
174
- $this->loader = new Acme_Demo_Setup_Loader();
 
 
 
 
175
 
176
  }
177
 
171
  require_once ACME_DEMO_SETUP_PATH . 'includes/functions.php';
172
  require_once ACME_DEMO_SETUP_PATH . 'includes/hooks.php';
173
 
174
+ /*API*/
175
+ require_once ACME_DEMO_SETUP_PATH . 'includes/api.php';
176
+
177
+
178
+ $this->loader = new Acme_Demo_Setup_Loader();
179
 
180
  }
181
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: acmethemes, codersantosh
4
  Tags: demo, dummydata, import, acmethemes, themes, oneclick, customizer, widget
5
  Requires at least: 4.8
6
  Tested up to: 5.3
7
- Stable tag: 2.0.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -52,6 +52,12 @@ If you have the issues on the plugin [Visit Support Page](https://wordpress.org/
52
 
53
  == Changelog ==
54
 
 
 
 
 
 
 
55
  = 2.0.0
56
  * Rewriting plugin using Advanced Import
57
 
4
  Tags: demo, dummydata, import, acmethemes, themes, oneclick, customizer, widget
5
  Requires at least: 4.8
6
  Tested up to: 5.3
7
+ Stable tag: 2.0.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
52
 
53
  == Changelog ==
54
 
55
+ = 2.0.1
56
+ * all screenshot image jpeg
57
+ * optimized image size
58
+ * api added for acmethemes demo
59
+ * Minor changes
60
+
61
  = 2.0.0
62
  * Rewriting plugin using Advanced Import
63