HT Mega – Addons for Elementor Page Builder ( Elementor Addons, Post Grid, Post Slider, Post Carousel, Mega Menu, Elementor Widgets, Elementor Templates, Accordion, Forms, Tables) - Version 1.5.9

Version Description

Download this release

Release Info

Developer devitemsllc
Plugin Icon 128x128 HT Mega – Addons for Elementor Page Builder ( Elementor Addons, Post Grid, Post Slider, Post Carousel, Mega Menu, Elementor Widgets, Elementor Templates, Accordion, Forms, Tables)
Version 1.5.9
Comparing to
See all releases

Code changes from version 1.5.8 to 1.5.9

admin/assets/css/tmp-style.css CHANGED
@@ -357,8 +357,8 @@ body {
357
  position: absolute;
358
  z-index: 9;
359
  left: 0;
360
- width: 100%;
361
- height: 100%;
362
  -webkit-transition: all 0.5s ease 0s;
363
  -o-transition: all 0.5s ease 0s;
364
  transition: all 0.5s ease 0s;
@@ -643,7 +643,7 @@ body {
643
 
644
  /* Scroll Top Top */
645
  .htwpt-scrollToTop, .htwpt-groupScrollToTop {
646
- font-size: 12px;
647
  font-weight: 600;
648
  position: fixed;
649
  z-index: 99;
357
  position: absolute;
358
  z-index: 9;
359
  left: 0;
360
+ max-width: 100%;
361
+ height: auto;
362
  -webkit-transition: all 0.5s ease 0s;
363
  -o-transition: all 0.5s ease 0s;
364
  transition: all 0.5s ease 0s;
643
 
644
  /* Scroll Top Top */
645
  .htwpt-scrollToTop, .htwpt-groupScrollToTop {
646
+ font-size: 0;
647
  font-weight: 600;
648
  position: fixed;
649
  z-index: 99;
admin/include/admin-setting.php CHANGED
@@ -601,6 +601,14 @@ class HTMega_Admin_Settings {
601
  'class'=>'htmega_table_row',
602
  ),
603
 
 
 
 
 
 
 
 
 
604
  ),
605
 
606
  'htmega_general_tabs'=>array(
601
  'class'=>'htmega_table_row',
602
  ),
603
 
604
+ array(
605
+ 'name' => 'template_selector',
606
+ 'label' => __( 'Remote Template', 'htmega-addons' ),
607
+ 'type' => 'checkbox',
608
+ 'default'=>'off',
609
+ 'class'=>'htmega_table_row',
610
+ ),
611
+
612
  ),
613
 
614
  'htmega_general_tabs'=>array(
admin/include/template-library.php CHANGED
@@ -7,8 +7,8 @@ class HTMega_Template_Library{
7
  const TRANSIENT_KEY = 'htmega_template_info';
8
  public static $buylink = null;
9
 
10
- public static $endpoint = HTMEGA_ADDONS_PL_URL.'admin/json/layoutinfofree.json';
11
- public static $templateapi = 'https://api.hasthemes.com/api/htmega/v1/layouts-free/%s.json';
12
 
13
  public static $api_args = [];
14
 
@@ -21,7 +21,7 @@ class HTMega_Template_Library{
21
  }
22
 
23
  function __construct(){
24
- self::$buylink = isset( HTMega_Addons_Elementor::$template_info['pro_link'][0]['url'] ) ? HTMega_Addons_Elementor::$template_info['pro_link'][0]['url'] : '#';
25
  if ( is_admin() ) {
26
  add_action( 'admin_menu', [ $this, 'admin_menu' ], 225 );
27
  add_action( 'wp_ajax_htmega_ajax_request', [ $this, 'templates_ajax_request' ] );
@@ -161,10 +161,10 @@ class HTMega_Template_Library{
161
 
162
  if ( isset( $_REQUEST ) ) {
163
 
164
- $template_id = $_REQUEST['httemplateid'];
165
- $template_parentid = $_REQUEST['htparentid'];
166
- $template_title = $_REQUEST['httitle'];
167
- $page_title = $_REQUEST['pagetitle'];
168
 
169
  $templateurl = sprintf( self::get_api_templateapi(), $template_id );
170
  $response_data = $this->templates_get_content_remote_request( $templateurl );
@@ -177,12 +177,16 @@ class HTMega_Template_Library{
177
  'post_title' => !empty( $page_title ) ? $page_title : $defaulttitle,
178
  'post_content' => '',
179
  ];
 
180
  $new_post_id = wp_insert_post( $args );
181
 
182
- update_post_meta( $new_post_id, '_elementor_data', $response_data['content'] );
183
- update_post_meta( $new_post_id, '_elementor_page_settings', $response_data['page_settings'] );
184
  update_post_meta( $new_post_id, '_elementor_template_type', $response_data['type'] );
185
  update_post_meta( $new_post_id, '_elementor_edit_mode', 'builder' );
 
 
 
 
186
 
187
  if ( $new_post_id && ! is_wp_error( $new_post_id ) ) {
188
  update_post_meta( $new_post_id, '_wp_page_template', !empty( $response_data['page_template'] ) ? $response_data['page_template'] : 'elementor_canvas' );
7
  const TRANSIENT_KEY = 'htmega_template_info';
8
  public static $buylink = null;
9
 
10
+ public static $endpoint = 'https://htmega.hasthemes.com/library/wp-json/htmega/v1/templates';
11
+ public static $templateapi = 'https://htmega.hasthemes.com/library/wp-json/htmega/v1/templates/%s';
12
 
13
  public static $api_args = [];
14
 
21
  }
22
 
23
  function __construct(){
24
+ self::$buylink = isset( HTMega_Addons_Elementor::$template_info['pro_link'] ) ? HTMega_Addons_Elementor::$template_info['pro_link'] : '#';
25
  if ( is_admin() ) {
26
  add_action( 'admin_menu', [ $this, 'admin_menu' ], 225 );
27
  add_action( 'wp_ajax_htmega_ajax_request', [ $this, 'templates_ajax_request' ] );
161
 
162
  if ( isset( $_REQUEST ) ) {
163
 
164
+ $template_id = sanitize_text_field( $_REQUEST['httemplateid'] );
165
+ $template_parentid = sanitize_text_field( $_REQUEST['htparentid'] );
166
+ $template_title = sanitize_text_field( $_REQUEST['httitle'] );
167
+ $page_title = sanitize_text_field( $_REQUEST['pagetitle'] );
168
 
169
  $templateurl = sprintf( self::get_api_templateapi(), $template_id );
170
  $response_data = $this->templates_get_content_remote_request( $templateurl );
177
  'post_title' => !empty( $page_title ) ? $page_title : $defaulttitle,
178
  'post_content' => '',
179
  ];
180
+
181
  $new_post_id = wp_insert_post( $args );
182
 
183
+ update_post_meta( $new_post_id, '_elementor_data', $response_data['content']['content'] );
 
184
  update_post_meta( $new_post_id, '_elementor_template_type', $response_data['type'] );
185
  update_post_meta( $new_post_id, '_elementor_edit_mode', 'builder' );
186
+
187
+ if( isset( $response_data['page_settings'] ) ){
188
+ update_post_meta( $new_post_id, '_elementor_page_settings', $response_data['page_settings'] );
189
+ }
190
 
191
  if ( $new_post_id && ! is_wp_error( $new_post_id ) ) {
192
  update_post_meta( $new_post_id, '_wp_page_template', !empty( $response_data['page_template'] ) ? $response_data['page_template'] : 'elementor_canvas' );
admin/json/layoutinfofree.json DELETED
@@ -1,12036 +0,0 @@
1
- {
2
-
3
- "notices": [
4
- {
5
- "title": "Cyber Monday",
6
- "description": "#",
7
- "bannerimage": "#",
8
- "bannerlink": "#",
9
- "status": "0"
10
- }
11
- ],
12
-
13
- "pro_link": [
14
- {
15
- "url": "https://hasthemes.com/plugins/ht-mega-pro/"
16
- }
17
- ],
18
-
19
- "templates": [
20
- {
21
- "id": "agency",
22
- "shareId": "agency",
23
- "title": "Home One",
24
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency.png",
25
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency.png",
26
- "author": "HasThemes",
27
- "url": "#",
28
- "demoUrl": "http://demo.wphash.com/htmega/agency/",
29
- "category": "agency",
30
- "tags": ["home", "agency", "landing page","agency"],
31
- "isPro": "0",
32
- "tmpType": "free",
33
- "builder": ["elementor"],
34
- "demoType": "templates",
35
- "freePlugins": [
36
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
37
- ],
38
- "proPlugins": [],
39
- "requiredtheme": ""
40
-
41
- },
42
- {
43
- "id": "agency_aboutus",
44
- "shareId": "agency",
45
- "title": "About Us Page",
46
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-aboutus.png",
47
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-aboutus.png",
48
- "author": "HasThemes",
49
- "url": "#",
50
- "demoUrl": "http://demo.wphash.com/ht-agency/about-us/",
51
- "category": "agency",
52
- "tags": ["about", "page", "about us","agency"],
53
- "isPro": "1",
54
- "tmpType": "pro",
55
- "builder": ["elementor"],
56
- "demoType": "templates",
57
- "freePlugins": [
58
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
59
- ],
60
- "proPlugins": [
61
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
62
- ],
63
- "requiredtheme": ""
64
- },
65
- {
66
- "id": "agency_contactus",
67
- "shareId": "agency",
68
- "title": "Contact Us Page",
69
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-contactus.png",
70
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-contactus.png",
71
- "author": "HasThemes",
72
- "url": "#",
73
- "demoUrl": "http://demo.wphash.com/ht-agency/contact-us/",
74
- "category": "agency",
75
- "tags": ["contact", "page", "contact us","agency"],
76
- "isPro": "1",
77
- "tmpType": "pro",
78
- "builder": ["elementor"],
79
- "demoType": "templates",
80
- "freePlugins": [
81
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
82
- ],
83
- "proPlugins": [
84
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
85
- ],
86
- "requiredtheme": ""
87
- },
88
- {
89
- "id": "agency_service",
90
- "shareId": "agency",
91
- "title": "Service Page",
92
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/agency-service.png",
93
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/agency-service.png",
94
- "author": "HasThemes",
95
- "url": "#",
96
- "demoUrl": "http://demo.wphash.com/ht-agency/service/",
97
- "category": "agency",
98
- "tags": ["service","page","service page","agency"],
99
- "isPro": "1",
100
- "tmpType": "pro",
101
- "builder": ["elementor"],
102
- "demoType": "templates",
103
- "freePlugins": [
104
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
105
- ],
106
- "proPlugins": [
107
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
108
- ],
109
- "requiredtheme": ""
110
- },
111
- {
112
- "id": "carpenter",
113
- "shareId": "carpenter",
114
- "title": "Home One",
115
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter.png",
116
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter.png",
117
- "author": "HasThemes",
118
- "url": "#",
119
- "demoUrl": "http://demo.wphash.com/htmega/carpenter/",
120
- "category": "carpenter",
121
- "tags": ["home page","home","page","landing page","carpenter"],
122
- "isPro": "0",
123
- "tmpType": "free",
124
- "builder": ["elementor"],
125
- "demoType": "templates",
126
- "freePlugins": [
127
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
128
- ],
129
- "proPlugins": [],
130
- "requiredtheme": ""
131
- },
132
- {
133
- "id": "carpenter_gallery",
134
- "shareId": "carpenter",
135
- "title": "Gallery Page",
136
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-gallery.png",
137
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-gallery.png",
138
- "author": "HasThemes",
139
- "url": "#",
140
- "demoUrl": "http://demo.wphash.com/ht-carpenter/gallery/",
141
- "category": "carpenter",
142
- "tags": ["gallery page","page","gallery","carpenter"],
143
- "isPro": "1",
144
- "tmpType": "pro",
145
- "builder": ["elementor"],
146
- "demoType": "templates",
147
- "freePlugins": [
148
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
149
- ],
150
- "proPlugins": [
151
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
152
- ],
153
- "requiredtheme": ""
154
- },
155
- {
156
- "id": "carpenter_service",
157
- "shareId": "carpenter",
158
- "title": "Service Page",
159
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-service.png",
160
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-service.png",
161
- "author": "HasThemes",
162
- "url": "#",
163
- "demoUrl": "http://demo.wphash.com/ht-carpenter/service/",
164
- "category": "carpenter",
165
- "tags": ["service page","service","page","carpenter"],
166
- "isPro": "1",
167
- "tmpType": "pro",
168
- "builder": ["elementor"],
169
- "demoType": "templates",
170
- "freePlugins": [
171
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
172
- ],
173
- "proPlugins": [
174
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
175
- ],
176
- "requiredtheme": ""
177
- },
178
- {
179
- "id": "carpenter_contactus",
180
- "shareId": "carpenter",
181
- "title": "Contact Us",
182
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-contactus.png",
183
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-contactus.png",
184
- "author": "HasThemes",
185
- "url": "#",
186
- "demoUrl": "http://demo.wphash.com/ht-carpenter/contact-us/",
187
- "category": "carpenter",
188
- "tags": ["contact us","contact","page","carpenter"],
189
- "isPro": "1",
190
- "tmpType": "pro",
191
- "builder": ["elementor"],
192
- "demoType": "templates",
193
- "freePlugins": [
194
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
195
- ],
196
- "proPlugins": [
197
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
198
- ],
199
- "requiredtheme": ""
200
- },
201
- {
202
- "id": "carpenter_aboutus",
203
- "shareId": "carpenter",
204
- "title": "About Us",
205
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/carpenter-aboutus.png",
206
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/carpenter-aboutus.png",
207
- "author": "HasThemes",
208
- "url": "#",
209
- "demoUrl": "http://demo.wphash.com/ht-carpenter/about-us/",
210
- "category": "carpenter",
211
- "tags": ["about us","about","page","carpenter"],
212
- "isPro": "1",
213
- "tmpType": "pro",
214
- "builder": ["elementor"],
215
- "demoType": "templates",
216
- "freePlugins": [
217
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
218
- ],
219
- "proPlugins": [
220
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
221
- ],
222
- "requiredtheme": ""
223
- },
224
- {
225
- "id": "charity",
226
- "shareId": "charity",
227
- "title": "Home One",
228
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity.png",
229
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity.png",
230
- "author": "HasThemes",
231
- "url": "#",
232
- "demoUrl": "http://demo.wphash.com/htmega/charity/",
233
- "category": "charity",
234
- "tags": ["home page","home","landing","landing page","charity"],
235
- "isPro": "0",
236
- "tmpType": "free",
237
- "builder": ["elementor"],
238
- "demoType": "templates",
239
- "freePlugins": [
240
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
241
- ],
242
- "proPlugins": [],
243
- "requiredtheme": ""
244
- },
245
- {
246
- "id": "charity_cause",
247
- "shareId": "charity",
248
- "title": "Cause Page",
249
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-cause.png",
250
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-cause.png",
251
- "author": "HasThemes",
252
- "url": "#",
253
- "demoUrl": "http://demo.wphash.com/ht-charity/cause/",
254
- "category": "charity",
255
- "tags": ["cause page","cause","page","charity"],
256
- "isPro": "1",
257
- "tmpType": "pro",
258
- "builder": ["elementor"],
259
- "demoType": "templates",
260
- "freePlugins": [
261
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
262
- ],
263
- "proPlugins": [
264
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
265
- ],
266
- "requiredtheme": ""
267
- },
268
- {
269
- "id": "charity_event",
270
- "shareId": "charity",
271
- "title": "Event Page",
272
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-event.png",
273
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-event.png",
274
- "author": "HasThemes",
275
- "url": "#",
276
- "demoUrl": "http://demo.wphash.com/ht-charity/event/",
277
- "category": "charity",
278
- "tags": ["event page","event","page","charity"],
279
- "isPro": "1",
280
- "tmpType": "pro",
281
- "builder": ["elementor"],
282
- "demoType": "templates",
283
- "freePlugins": [
284
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
285
- ],
286
- "proPlugins": [
287
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
288
- ],
289
- "requiredtheme": ""
290
- },
291
- {
292
- "id": "charity_volunteer",
293
- "shareId": "charity",
294
- "title": "Volunteer Page",
295
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-volunteer.png",
296
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-volunteer.png",
297
- "author": "HasThemes",
298
- "url": "#",
299
- "demoUrl": "http://demo.wphash.com/ht-charity/volunteer/",
300
- "category": "charity",
301
- "tags": ["volunteer page","volunteer","page","charity"],
302
- "isPro": "1",
303
- "tmpType": "pro",
304
- "builder": ["elementor"],
305
- "demoType": "templates",
306
- "freePlugins": [
307
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
308
- ],
309
- "proPlugins": [
310
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
311
- ],
312
- "requiredtheme": ""
313
- },
314
- {
315
- "id": "charity_gallery",
316
- "shareId": "charity",
317
- "title": "Gallery Page",
318
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-gallery.png",
319
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-gallery.png",
320
- "author": "HasThemes",
321
- "url": "#",
322
- "demoUrl": "http://demo.wphash.com/ht-charity/gallery/",
323
- "category": "charity",
324
- "tags": ["gallery page","gallery","page","charity"],
325
- "isPro": "1",
326
- "tmpType": "pro",
327
- "builder": ["elementor"],
328
- "demoType": "templates",
329
- "freePlugins": [
330
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
331
- ],
332
- "proPlugins": [
333
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
334
- ],
335
- "requiredtheme": ""
336
- },
337
- {
338
- "id": "charity_aboutus",
339
- "shareId": "charity",
340
- "title": "About Us Page",
341
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-aboutus.png",
342
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-aboutus.png",
343
- "author": "HasThemes",
344
- "url": "#",
345
- "demoUrl": "http://demo.wphash.com/ht-charity/about-us/",
346
- "category": "charity",
347
- "tags": ["about us page","about","page","charity"],
348
- "isPro": "1",
349
- "tmpType": "pro",
350
- "builder": ["elementor"],
351
- "demoType": "templates",
352
- "freePlugins": [
353
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
354
- ],
355
- "proPlugins": [
356
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
357
- ],
358
- "requiredtheme": ""
359
- },
360
- {
361
- "id": "charity_contactus",
362
- "shareId": "charity",
363
- "title": "Contact Us Page",
364
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/charity-contactus.png",
365
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/charity-contactus.png",
366
- "author": "HasThemes",
367
- "url": "#",
368
- "demoUrl": "http://demo.wphash.com/ht-charity/contact-us/",
369
- "category": "charity",
370
- "tags": ["contact us page","contact","page","charity"],
371
- "isPro": "1",
372
- "tmpType": "pro",
373
- "builder": ["elementor"],
374
- "demoType": "templates",
375
- "freePlugins": [
376
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
377
- ],
378
- "proPlugins": [
379
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
380
- ],
381
- "requiredtheme": ""
382
- },
383
- {
384
- "id": "cleaning_service",
385
- "shareId": "cleaning service",
386
- "title": "Home One",
387
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-service.png",
388
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-service.png",
389
- "author": "HasThemes",
390
- "url": "#",
391
- "demoUrl": "http://demo.wphash.com/htmega/cleaning-service/",
392
- "category": "cleaning service",
393
- "tags": ["home page, landing page","home","landing","cleaning","clean"],
394
- "isPro": "0",
395
- "tmpType": "free",
396
- "builder": ["elementor"],
397
- "demoType": "templates",
398
- "freePlugins": [
399
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
400
- ],
401
- "proPlugins": [],
402
- "requiredtheme": ""
403
- },
404
- {
405
- "id": "cleaning_servicepage",
406
- "shareId": "cleaning service",
407
- "title": "Service Page",
408
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-servicepage.png",
409
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-servicepage.png",
410
- "author": "HasThemes",
411
- "url": "#",
412
- "demoUrl": "http://demo.wphash.com/ht-cleaning/service/",
413
- "category": "cleaning service",
414
- "tags": ["service page","service","page","cleaning","clean"],
415
- "isPro": "1",
416
- "tmpType": "pro",
417
- "builder": ["elementor"],
418
- "demoType": "templates",
419
- "freePlugins": [
420
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
421
- ],
422
- "proPlugins": [
423
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
424
- ],
425
- "requiredtheme": ""
426
- },
427
- {
428
- "id": "cleaning_contactus",
429
- "shareId": "cleaning service",
430
- "title": "Contact Us Page",
431
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-contactus.png",
432
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-contactus.png",
433
- "author": "HasThemes",
434
- "url": "#",
435
- "demoUrl": "http://demo.wphash.com/ht-cleaning/contact-us/",
436
- "category": "cleaning service",
437
- "tags": ["contact us page","contact","page","cleaning","clean"],
438
- "isPro": "1",
439
- "tmpType": "pro",
440
- "builder": ["elementor"],
441
- "demoType": "templates",
442
- "freePlugins": [
443
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
444
- ],
445
- "proPlugins": [
446
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
447
- ],
448
- "requiredtheme": ""
449
- },
450
- {
451
- "id": "cleaning_aboutus",
452
- "shareId": "cleaning service",
453
- "title": "About Us Page",
454
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/cleaning-aboutus.png",
455
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/cleaning-aboutus.png",
456
- "author": "HasThemes",
457
- "url": "#",
458
- "demoUrl": "http://demo.wphash.com/ht-cleaning/about-us/",
459
- "category": "cleaning service",
460
- "tags": ["about us page","about","page","cleaning","clean"],
461
- "isPro": "1",
462
- "tmpType": "pro",
463
- "builder": ["elementor"],
464
- "demoType": "templates",
465
- "freePlugins": [
466
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
467
- ],
468
- "proPlugins": [
469
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
470
- ],
471
- "requiredtheme": ""
472
- },
473
- {
474
- "id": "construction",
475
- "shareId": "construction",
476
- "title": "Home One",
477
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction.png",
478
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction.png",
479
- "author": "HasThemes",
480
- "url": "#",
481
- "demoUrl": "http://demo.wphash.com/htmega/construction/",
482
- "category": "construction",
483
- "tags": ["home page, landing page","page","landing","home","construction"],
484
- "isPro": "0",
485
- "tmpType": "free",
486
- "builder": ["elementor"],
487
- "demoType": "templates",
488
- "freePlugins": [
489
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
490
- ],
491
- "proPlugins": [],
492
- "requiredtheme": ""
493
- },
494
- {
495
- "id": "construction_service",
496
- "shareId": "construction",
497
- "title": "Service Page",
498
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-service.png",
499
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-service.png",
500
- "author": "HasThemes",
501
- "url": "#",
502
- "demoUrl": "http://demo.wphash.com/ht-construction/service/",
503
- "category": "construction",
504
- "tags": ["service page","service","page","construction"],
505
- "isPro": "1",
506
- "tmpType": "pro",
507
- "builder": ["elementor"],
508
- "demoType": "templates",
509
- "freePlugins": [
510
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
511
- ],
512
- "proPlugins": [
513
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
514
- ],
515
- "requiredtheme": ""
516
- },
517
- {
518
- "id": "construction_aboutus",
519
- "shareId": "construction",
520
- "title": "About Us",
521
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-aboutus.png",
522
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-aboutus.png",
523
- "author": "HasThemes",
524
- "url": "#",
525
- "demoUrl": "http://demo.wphash.com/ht-construction/about/",
526
- "category": "construction",
527
- "tags": ["about us page","about","page","construction"],
528
- "isPro": "1",
529
- "tmpType": "pro",
530
- "builder": ["elementor"],
531
- "demoType": "templates",
532
- "freePlugins": [
533
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
534
- ],
535
- "proPlugins": [
536
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
537
- ],
538
- "requiredtheme": ""
539
- },
540
- {
541
- "id": "construction_contactus",
542
- "shareId": "construction",
543
- "title": "Contact Us Page",
544
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/construction-contactus.png",
545
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/construction-contactus.png",
546
- "author": "HasThemes",
547
- "url": "#",
548
- "demoUrl": "http://demo.wphash.com/ht-construction/contact/",
549
- "category": "construction",
550
- "tags": ["contact us page","contact","page","construction"],
551
- "isPro": "1",
552
- "tmpType": "pro",
553
- "builder": ["elementor"],
554
- "demoType": "templates",
555
- "freePlugins": [
556
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
557
- ],
558
- "proPlugins": [
559
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
560
- ],
561
- "requiredtheme": ""
562
- },
563
- {
564
- "id": "corporate",
565
- "shareId": "corporate",
566
- "title": "Home One",
567
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate.png",
568
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate.png",
569
- "author": "HasThemes",
570
- "url": "#",
571
- "demoUrl": "http://demo.wphash.com/htmega/corporate/",
572
- "category": "corporate",
573
- "tags": ["home page, landing page","page","landing","corporate"],
574
- "isPro": "0",
575
- "tmpType": "free",
576
- "builder": ["elementor"],
577
- "demoType": "templates",
578
- "freePlugins": [
579
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
580
- ],
581
- "proPlugins": [],
582
- "requiredtheme": ""
583
- },
584
- {
585
- "id": "corporate_service",
586
- "shareId": "corporate",
587
- "title": "Service",
588
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-service.png",
589
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-service.png",
590
- "author": "HasThemes",
591
- "url": "#",
592
- "demoUrl": "http://demo.wphash.com/ht-corporate/service/",
593
- "category": "corporate",
594
- "tags": ["service page","service","page","corporate"],
595
- "isPro": "1",
596
- "tmpType": "pro",
597
- "builder": ["elementor"],
598
- "demoType": "templates",
599
- "freePlugins": [
600
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
601
- ],
602
- "proPlugins": [
603
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
604
- ],
605
- "requiredtheme": ""
606
- },
607
- {
608
- "id": "corporate_portfolio",
609
- "shareId": "corporate",
610
- "title": "Portfolio",
611
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-portfolio.png",
612
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-portfolio.png",
613
- "author": "HasThemes",
614
- "url": "#",
615
- "demoUrl": "http://demo.wphash.com/ht-corporate/portfolio/",
616
- "category": "corporate",
617
- "tags": ["portfolio page","portfolio","page","corporate"],
618
- "isPro": "1",
619
- "tmpType": "pro",
620
- "builder": ["elementor"],
621
- "demoType": "templates",
622
- "freePlugins": [
623
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
624
- ],
625
- "proPlugins": [
626
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
627
- ],
628
- "requiredtheme": ""
629
- },
630
- {
631
- "id": "corporate_team",
632
- "shareId": "corporate",
633
- "title": "Team Member",
634
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-team.png",
635
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-team.png",
636
- "author": "HasThemes",
637
- "url": "#",
638
- "demoUrl": "http://demo.wphash.com/ht-corporate/team/",
639
- "category": "corporate",
640
- "tags": ["team member page","team","member","page","corporate"],
641
- "isPro": "1",
642
- "tmpType": "pro",
643
- "builder": ["elementor"],
644
- "demoType": "templates",
645
- "freePlugins": [
646
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
647
- ],
648
- "proPlugins": [
649
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
650
- ],
651
- "requiredtheme": ""
652
- },
653
- {
654
- "id": "corporate_aboutus",
655
- "shareId": "corporate",
656
- "title": "About Us",
657
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-aboutus.png",
658
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-aboutus.png",
659
- "author": "HasThemes",
660
- "url": "#",
661
- "demoUrl": "http://demo.wphash.com/ht-corporate/about-us/",
662
- "category": "corporate",
663
- "tags": ["about us page","about","page","corporate"],
664
- "isPro": "1",
665
- "tmpType": "pro",
666
- "builder": ["elementor"],
667
- "demoType": "templates",
668
- "freePlugins": [
669
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
670
- ],
671
- "proPlugins": [
672
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
673
- ],
674
- "requiredtheme": ""
675
- },
676
- {
677
- "id": "corporate_contactus",
678
- "shareId": "corporate",
679
- "title": "Contact Us",
680
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/corporate-contactus.png",
681
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/corporate-contactus.png",
682
- "author": "HasThemes",
683
- "url": "#",
684
- "demoUrl": "http://demo.wphash.com/ht-corporate/contact-us/",
685
- "category": "corporate",
686
- "tags": ["contact us page","contact","page","corporate"],
687
- "isPro": "1",
688
- "tmpType": "pro",
689
- "builder": ["elementor"],
690
- "demoType": "templates",
691
- "freePlugins": [
692
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
693
- ],
694
- "proPlugins": [
695
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
696
- ],
697
- "requiredtheme": ""
698
- },
699
- {
700
- "id": "education",
701
- "shareId": "education",
702
- "title": "Home One",
703
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education.png",
704
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/education.png",
705
- "author": "HasThemes",
706
- "url": "#",
707
- "demoUrl": "http://demo.wphash.com/htmega/education/",
708
- "category": "education",
709
- "tags": ["home page","landing page","home","landing","education"],
710
- "isPro": "0",
711
- "tmpType": "free",
712
- "builder": ["elementor"],
713
- "demoType": "templates",
714
- "freePlugins": [
715
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
716
- ],
717
- "proPlugins": [],
718
- "requiredtheme": ""
719
- },
720
- {
721
- "id": "education_event",
722
- "shareId": "education",
723
- "title": "Event",
724
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-event.png",
725
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-event.png",
726
- "author": "HasThemes",
727
- "url": "#",
728
- "demoUrl": "http://demo.wphash.com/ht-education/event/",
729
- "category": "education",
730
- "tags": ["event page","event","page","education"],
731
- "isPro": "1",
732
- "tmpType": "pro",
733
- "builder": ["elementor"],
734
- "demoType": "templates",
735
- "freePlugins": [
736
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
737
- ],
738
- "proPlugins": [
739
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
740
- ],
741
- "requiredtheme": ""
742
- },
743
- {
744
- "id": "education_teacher",
745
- "shareId": "education",
746
- "title": "Teacher",
747
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-teacher.png",
748
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-teacher.png",
749
- "author": "HasThemes",
750
- "url": "#",
751
- "demoUrl": "http://demo.wphash.com/ht-education/teacher/",
752
- "category": "education",
753
- "tags": ["teacher page","teacher","page","education"],
754
- "isPro": "1",
755
- "tmpType": "pro",
756
- "builder": ["elementor"],
757
- "demoType": "templates",
758
- "freePlugins": [
759
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
760
- ],
761
- "proPlugins": [
762
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
763
- ],
764
- "requiredtheme": ""
765
- },
766
- {
767
- "id": "education_course",
768
- "shareId": "education",
769
- "title": "Course",
770
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-course.png",
771
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-course.png",
772
- "author": "HasThemes",
773
- "url": "#",
774
- "demoUrl": "http://demo.wphash.com/ht-education/course/",
775
- "category": "education",
776
- "tags": ["course page","course","page","education"],
777
- "isPro": "1",
778
- "tmpType": "pro",
779
- "builder": ["elementor"],
780
- "demoType": "templates",
781
- "freePlugins": [
782
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
783
- ],
784
- "proPlugins": [
785
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
786
- ],
787
- "requiredtheme": ""
788
- },
789
- {
790
- "id": "education_aboutus",
791
- "shareId": "education",
792
- "title": "About Us",
793
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-aboutus.png",
794
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-aboutus.png",
795
- "author": "HasThemes",
796
- "url": "#",
797
- "demoUrl": "http://demo.wphash.com/ht-education/about-us/",
798
- "category": "education",
799
- "tags": ["about us page","about","page","education"],
800
- "isPro": "1",
801
- "tmpType": "pro",
802
- "builder": ["elementor"],
803
- "demoType": "templates",
804
- "freePlugins": [
805
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
806
- ],
807
- "proPlugins": [
808
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
809
- ],
810
- "requiredtheme": ""
811
- },
812
- {
813
- "id": "education_contactus",
814
- "shareId": "education",
815
- "title": "Contact Us",
816
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/education-contactus.png",
817
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/education-contactus.png",
818
- "author": "HasThemes",
819
- "url": "#",
820
- "demoUrl": "http://demo.wphash.com/ht-education/contact-us/",
821
- "category": "education",
822
- "tags": ["contact us page","contact","page","education"],
823
- "isPro": "1",
824
- "tmpType": "pro",
825
- "builder": ["elementor"],
826
- "demoType": "templates",
827
- "freePlugins": [
828
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
829
- ],
830
- "proPlugins": [
831
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
832
- ],
833
- "requiredtheme": ""
834
- },
835
- {
836
- "id": "event",
837
- "shareId": "event",
838
- "title": "Home One",
839
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-page.png",
840
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-page.png",
841
- "author": "HasThemes",
842
- "url": "#",
843
- "demoUrl": "http://demo.wphash.com/htmega/event-page/",
844
- "category": "event",
845
- "tags": ["home page", "landing page","home","landing","event"],
846
- "isPro": "0",
847
- "tmpType": "free",
848
- "builder": ["elementor"],
849
- "demoType": "templates",
850
- "freePlugins": [
851
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
852
- ],
853
- "proPlugins": [
854
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
855
- ],
856
- "requiredtheme": ""
857
- },
858
- {
859
- "id": "event_speaker",
860
- "shareId": "event",
861
- "title": "Speaker",
862
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-speaker.png",
863
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-speaker.png",
864
- "author": "HasThemes",
865
- "url": "#",
866
- "demoUrl": "http://demo.wphash.com/ht-event/speaker/",
867
- "category": "event",
868
- "tags": ["speaker page","speaker","page","event"],
869
- "isPro": "1",
870
- "tmpType": "pro",
871
- "builder": ["elementor"],
872
- "demoType": "templates",
873
- "freePlugins": [
874
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
875
- ],
876
- "proPlugins": [
877
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
878
- ],
879
- "requiredtheme": ""
880
- },
881
- {
882
- "id": "event_eventpage",
883
- "shareId": "event",
884
- "title": "Event Page",
885
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-eventpage.png",
886
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-eventpage.png",
887
- "author": "HasThemes",
888
- "url": "#",
889
- "demoUrl": "http://demo.wphash.com/ht-event/event/",
890
- "category": "event",
891
- "tags": ["event page","event","page","event"],
892
- "isPro": "1",
893
- "tmpType": "pro",
894
- "builder": ["elementor"],
895
- "demoType": "templates",
896
- "freePlugins": [
897
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
898
- ],
899
- "proPlugins": [
900
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
901
- ],
902
- "requiredtheme": ""
903
- },
904
- {
905
- "id": "event_contactus",
906
- "shareId": "event",
907
- "title": "Contact Us",
908
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-contactus.png",
909
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-contactus.png",
910
- "author": "HasThemes",
911
- "url": "#",
912
- "demoUrl": "http://demo.wphash.com/ht-event/contact/",
913
- "category": "event",
914
- "tags": ["contact us page","contact","page","event"],
915
- "isPro": "1",
916
- "tmpType": "pro",
917
- "builder": ["elementor"],
918
- "demoType": "templates",
919
- "freePlugins": [
920
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
921
- ],
922
- "proPlugins": [
923
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
924
- ],
925
- "requiredtheme": ""
926
- },
927
- {
928
- "id": "event_aboutus",
929
- "shareId": "event",
930
- "title": "About Us",
931
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/event-aboutus.png",
932
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/event-aboutus.png",
933
- "author": "HasThemes",
934
- "url": "#",
935
- "demoUrl": "http://demo.wphash.com/ht-event/about/",
936
- "category": "event",
937
- "tags": ["about us page","about","page","event"],
938
- "isPro": "1",
939
- "tmpType": "pro",
940
- "builder": ["elementor"],
941
- "demoType": "templates",
942
- "freePlugins": [
943
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
944
- ],
945
- "proPlugins": [
946
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
947
- ],
948
- "requiredtheme": ""
949
- },
950
- {
951
- "id": "gardening",
952
- "shareId": "gardening",
953
- "title": "Home One",
954
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening.png",
955
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening.png",
956
- "author": "HasThemes",
957
- "url": "#",
958
- "demoUrl": "http://demo.wphash.com/htmega/gardening/",
959
- "category": "gardening",
960
- "tags": ["home page", "landing page","home","landing","gardening","garden"],
961
- "isPro": "0",
962
- "tmpType": "free",
963
- "builder": ["elementor"],
964
- "demoType": "templates",
965
- "freePlugins": [
966
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
967
- ],
968
- "proPlugins": [],
969
- "requiredtheme": ""
970
- },
971
- {
972
- "id": "gardening_service",
973
- "shareId": "gardening",
974
- "title": "Service",
975
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-service.png",
976
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-service.png",
977
- "author": "HasThemes",
978
- "url": "#",
979
- "demoUrl": "http://demo.wphash.com/ht-gardening/service/",
980
- "category": "gardening",
981
- "tags": ["service page","service","page","gardening","garden"],
982
- "isPro": "1",
983
- "tmpType": "pro",
984
- "builder": ["elementor"],
985
- "demoType": "templates",
986
- "freePlugins": [
987
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
988
- ],
989
- "proPlugins": [
990
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
991
- ],
992
- "requiredtheme": ""
993
- },
994
- {
995
- "id": "gardening_aboutus",
996
- "shareId": "gardening",
997
- "title": "About Us",
998
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-aboutus.png",
999
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-aboutus.png",
1000
- "author": "HasThemes",
1001
- "url": "#",
1002
- "demoUrl": "http://demo.wphash.com/ht-gardening/about/",
1003
- "category": "gardening",
1004
- "tags": ["about us page","about","page","gardening","garden"],
1005
- "isPro": "1",
1006
- "tmpType": "pro",
1007
- "builder": ["elementor"],
1008
- "demoType": "templates",
1009
- "freePlugins": [
1010
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1011
- ],
1012
- "proPlugins": [
1013
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1014
- ],
1015
- "requiredtheme": ""
1016
- },
1017
- {
1018
- "id": "gardening_contactus",
1019
- "shareId": "gardening",
1020
- "title": "Contact Us",
1021
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/gardening-contactus.png",
1022
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/gardening-contactus.png",
1023
- "author": "HasThemes",
1024
- "url": "#",
1025
- "demoUrl": "http://demo.wphash.com/ht-gardening/contact/",
1026
- "category": "gardening",
1027
- "tags": ["contact us page","contact","page","gardening","garden"],
1028
- "isPro": "1",
1029
- "tmpType": "pro",
1030
- "builder": ["elementor"],
1031
- "demoType": "templates",
1032
- "freePlugins": [
1033
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1034
- ],
1035
- "proPlugins": [
1036
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1037
- ],
1038
- "requiredtheme": ""
1039
- },
1040
- {
1041
- "id": "medical",
1042
- "shareId": "medical",
1043
- "title": "Home One",
1044
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical.png",
1045
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical.png",
1046
- "author": "HasThemes",
1047
- "url": "#",
1048
- "demoUrl": "http://demo.wphash.com/htmega/medical/",
1049
- "category": "medical",
1050
- "tags": ["home page", "landing page","home","landing","medical"],
1051
- "isPro": "0",
1052
- "tmpType": "free",
1053
- "builder": ["elementor"],
1054
- "demoType": "templates",
1055
- "freePlugins": [
1056
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1057
- ],
1058
- "proPlugins": [],
1059
- "requiredtheme": ""
1060
- },
1061
- {
1062
- "id": "medical_service",
1063
- "shareId": "medical",
1064
- "title": "Service",
1065
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-service.png",
1066
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-service.png",
1067
- "author": "HasThemes",
1068
- "url": "#",
1069
- "demoUrl": "http://demo.wphash.com/ht-medical/service/",
1070
- "category": "medical",
1071
- "tags": ["service page","service","page","medical"],
1072
- "isPro": "1",
1073
- "tmpType": "pro",
1074
- "builder": ["elementor"],
1075
- "demoType": "templates",
1076
- "freePlugins": [
1077
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1078
- ],
1079
- "proPlugins": [
1080
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1081
- ],
1082
- "requiredtheme": ""
1083
- },
1084
- {
1085
- "id": "medical_contactus",
1086
- "shareId": "medical",
1087
- "title": "Contact Us",
1088
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-contactus.png",
1089
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-contactus.png",
1090
- "author": "HasThemes",
1091
- "url": "#",
1092
- "demoUrl": "http://demo.wphash.com/ht-medical/contact/",
1093
- "category": "medical",
1094
- "tags": ["contact us page","contact","page","medical"],
1095
- "isPro": "1",
1096
- "tmpType": "pro",
1097
- "builder": ["elementor"],
1098
- "demoType": "templates",
1099
- "freePlugins": [
1100
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1101
- ],
1102
- "proPlugins": [
1103
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1104
- ],
1105
- "requiredtheme": ""
1106
- },
1107
- {
1108
- "id": "medical_aboutus",
1109
- "shareId": "medical",
1110
- "title": "About Us",
1111
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/medical-aboutus.png",
1112
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/medical-aboutus.png",
1113
- "author": "HasThemes",
1114
- "url": "#",
1115
- "demoUrl": "http://demo.wphash.com/ht-medical/about/",
1116
- "category": "medical",
1117
- "tags": ["about us page","about","page","medical"],
1118
- "isPro": "1",
1119
- "tmpType": "pro",
1120
- "builder": ["elementor"],
1121
- "demoType": "templates",
1122
- "freePlugins": [
1123
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1124
- ],
1125
- "proPlugins": [
1126
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1127
- ],
1128
- "requiredtheme": ""
1129
- },
1130
- {
1131
- "id": "political",
1132
- "shareId": "political",
1133
- "title": "Home One",
1134
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political.png",
1135
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/political.png",
1136
- "author": "HasThemes",
1137
- "url": "#",
1138
- "demoUrl": "http://demo.wphash.com/htmega/political/",
1139
- "category": "political",
1140
- "tags": ["home page", "landing page","landing","home","political"],
1141
- "isPro": "0",
1142
- "tmpType": "free",
1143
- "builder": ["elementor"],
1144
- "demoType": "templates",
1145
- "freePlugins": [
1146
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1147
- ],
1148
- "proPlugins": [],
1149
- "requiredtheme": ""
1150
- },
1151
- {
1152
- "id": "political_event",
1153
- "shareId": "political",
1154
- "title": "Event",
1155
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-event.png",
1156
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-event.png",
1157
- "author": "HasThemes",
1158
- "url": "#",
1159
- "demoUrl": "http://demo.wphash.com/ht-political/event/",
1160
- "category": "political",
1161
- "tags": ["event page","event","page","political"],
1162
- "isPro": "1",
1163
- "tmpType": "pro",
1164
- "builder": ["elementor"],
1165
- "demoType": "templates",
1166
- "freePlugins": [
1167
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1168
- ],
1169
- "proPlugins": [
1170
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1171
- ],
1172
- "requiredtheme": ""
1173
- },
1174
- {
1175
- "id": "political_gallery",
1176
- "shareId": "political",
1177
- "title": "Gallery",
1178
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-gallery.png",
1179
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-gallery.png",
1180
- "author": "HasThemes",
1181
- "url": "#",
1182
- "demoUrl": "http://demo.wphash.com/ht-political/gallery/",
1183
- "category": "political",
1184
- "tags": ["gallery page","gallery","page","political"],
1185
- "isPro": "1",
1186
- "tmpType": "pro",
1187
- "builder": ["elementor"],
1188
- "demoType": "templates",
1189
- "freePlugins": [
1190
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1191
- ],
1192
- "proPlugins": [
1193
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1194
- ],
1195
- "requiredtheme": ""
1196
- },
1197
- {
1198
- "id": "political_aboutus",
1199
- "shareId": "political",
1200
- "title": "About Us",
1201
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-aboutus.png",
1202
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-aboutus.png",
1203
- "author": "HasThemes",
1204
- "url": "#",
1205
- "demoUrl": "http://demo.wphash.com/ht-political/about-us/",
1206
- "category": "political",
1207
- "tags": ["about us page","about","page","political"],
1208
- "isPro": "1",
1209
- "tmpType": "pro",
1210
- "builder": ["elementor"],
1211
- "demoType": "templates",
1212
- "freePlugins": [
1213
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1214
- ],
1215
- "proPlugins": [
1216
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1217
- ],
1218
- "requiredtheme": ""
1219
- },
1220
- {
1221
- "id": "political_contactus",
1222
- "shareId": "political",
1223
- "title": "Contact Us",
1224
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/political-contactus.png",
1225
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/political-contactus.png",
1226
- "author": "HasThemes",
1227
- "url": "#",
1228
- "demoUrl": "http://demo.wphash.com/ht-political/contact-us/",
1229
- "category": "political",
1230
- "tags": ["contact us page","contact","page","political"],
1231
- "isPro": "1",
1232
- "tmpType": "pro",
1233
- "builder": ["elementor"],
1234
- "demoType": "templates",
1235
- "freePlugins": [
1236
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1237
- ],
1238
- "proPlugins": [
1239
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1240
- ],
1241
- "requiredtheme": ""
1242
- },
1243
- {
1244
- "id": "portfolio",
1245
- "shareId": "portfolio",
1246
- "title": "Home One",
1247
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-page.png",
1248
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-page.png",
1249
- "author": "HasThemes",
1250
- "url": "#",
1251
- "demoUrl": "http://demo.wphash.com/htmega/portfolio-page/",
1252
- "category": "portfolio",
1253
- "tags": ["home page, landing page","home","page","portfolio"],
1254
- "isPro": "0",
1255
- "tmpType": "free",
1256
- "builder": ["elementor"],
1257
- "demoType": "templates",
1258
- "freePlugins": [
1259
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1260
- ],
1261
- "proPlugins": [],
1262
- "requiredtheme": ""
1263
- },
1264
- {
1265
- "id": "portfolio_aboutus",
1266
- "shareId": "portfolio",
1267
- "title": "About Us",
1268
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-aboutus.png",
1269
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-aboutus.png",
1270
- "author": "HasThemes",
1271
- "url": "#",
1272
- "demoUrl": "http://demo.wphash.com/ht-portfolio/about-us/",
1273
- "category": "portfolio",
1274
- "tags": ["about us page","about","page","portfolio"],
1275
- "isPro": "1",
1276
- "tmpType": "pro",
1277
- "builder": ["elementor"],
1278
- "demoType": "templates",
1279
- "freePlugins": [
1280
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1281
- ],
1282
- "proPlugins": [
1283
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1284
- ],
1285
- "requiredtheme": ""
1286
- },
1287
- {
1288
- "id": "portfolio_portfolio",
1289
- "shareId": "portfolio",
1290
- "title": "Portfolio",
1291
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-portfoliopage.png",
1292
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-portfoliopage.png",
1293
- "author": "HasThemes",
1294
- "url": "#",
1295
- "demoUrl": "http://demo.wphash.com/ht-portfolio/portfolio/",
1296
- "category": "portfolio",
1297
- "tags": ["portfolio page","portfolio","page","portfolio"],
1298
- "isPro": "1",
1299
- "tmpType": "pro",
1300
- "builder": ["elementor"],
1301
- "demoType": "templates",
1302
- "freePlugins": [
1303
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1304
- ],
1305
- "proPlugins": [
1306
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1307
- ],
1308
- "requiredtheme": ""
1309
- },
1310
- {
1311
- "id": "portfolio_service",
1312
- "shareId": "portfolio",
1313
- "title": "Service",
1314
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-service.png",
1315
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-service.png",
1316
- "author": "HasThemes",
1317
- "url": "#",
1318
- "demoUrl": "http://demo.wphash.com/ht-portfolio/service/",
1319
- "category": "portfolio",
1320
- "tags": ["service page","service","page","portfolio"],
1321
- "isPro": "1",
1322
- "tmpType": "pro",
1323
- "builder": ["elementor"],
1324
- "demoType": "templates",
1325
- "freePlugins": [
1326
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1327
- ],
1328
- "proPlugins": [
1329
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1330
- ],
1331
- "requiredtheme": ""
1332
- },
1333
- {
1334
- "id": "portfolio_contactus",
1335
- "shareId": "portfolio",
1336
- "title": "Contact Us",
1337
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/portfolio-contactus.png",
1338
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/portfolio-contactus.png",
1339
- "author": "HasThemes",
1340
- "url": "#",
1341
- "demoUrl": "http://demo.wphash.com/ht-portfolio/contact-us/",
1342
- "category": "portfolio",
1343
- "tags": ["contact us page","contact","page","portfolio"],
1344
- "isPro": "1",
1345
- "tmpType": "pro",
1346
- "builder": ["elementor"],
1347
- "demoType": "templates",
1348
- "freePlugins": [
1349
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1350
- ],
1351
- "proPlugins": [
1352
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1353
- ],
1354
- "requiredtheme": ""
1355
- },
1356
- {
1357
- "id": "repair",
1358
- "shareId": "repair",
1359
- "title": "Home One",
1360
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair.png",
1361
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair.png",
1362
- "author": "HasThemes",
1363
- "url": "#",
1364
- "demoUrl": "http://demo.wphash.com/htmega/repair/",
1365
- "category": "repair",
1366
- "tags": ["home page", "landing page","landing","page","repair"],
1367
- "isPro": "0",
1368
- "tmpType": "free",
1369
- "builder": ["elementor"],
1370
- "demoType": "templates",
1371
- "freePlugins": [
1372
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1373
- ],
1374
- "proPlugins": [],
1375
- "requiredtheme": ""
1376
- },
1377
- {
1378
- "id": "repair_service",
1379
- "shareId": "repair",
1380
- "title": "Service",
1381
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-service.png",
1382
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-service.png",
1383
- "author": "HasThemes",
1384
- "url": "#",
1385
- "demoUrl": "http://demo.wphash.com/ht-repair/service/",
1386
- "category": "repair",
1387
- "tags": ["service page","service","page","repair"],
1388
- "isPro": "1",
1389
- "tmpType": "pro",
1390
- "builder": ["elementor"],
1391
- "demoType": "templates",
1392
- "freePlugins": [
1393
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1394
- ],
1395
- "proPlugins": [
1396
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1397
- ],
1398
- "requiredtheme": ""
1399
- },
1400
- {
1401
- "id": "repair_aboutus",
1402
- "shareId": "repair",
1403
- "title": "About Us",
1404
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-aboutus.png",
1405
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-aboutus.png",
1406
- "author": "HasThemes",
1407
- "url": "#",
1408
- "demoUrl": "http://demo.wphash.com/ht-repair/about/",
1409
- "category": "repair",
1410
- "tags": ["about us page","about","page","repair"],
1411
- "isPro": "1",
1412
- "tmpType": "pro",
1413
- "builder": ["elementor"],
1414
- "demoType": "templates",
1415
- "freePlugins": [
1416
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1417
- ],
1418
- "proPlugins": [
1419
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1420
- ],
1421
- "requiredtheme": ""
1422
- },
1423
- {
1424
- "id": "repair_contactus",
1425
- "shareId": "repair",
1426
- "title": "Contact Us",
1427
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/repair-contactus.png",
1428
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/repair-contactus.png",
1429
- "author": "HasThemes",
1430
- "url": "#",
1431
- "demoUrl": "http://demo.wphash.com/ht-repair/contact/",
1432
- "category": "repair",
1433
- "tags": ["contact us page","contact","page","repair"],
1434
- "isPro": "1",
1435
- "tmpType": "pro",
1436
- "builder": ["elementor"],
1437
- "demoType": "templates",
1438
- "freePlugins": [
1439
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1440
- ],
1441
- "proPlugins": [
1442
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1443
- ],
1444
- "requiredtheme": ""
1445
- },
1446
- {
1447
- "id": "software",
1448
- "shareId": "software",
1449
- "title": "Home",
1450
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software.png",
1451
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/software.png",
1452
- "author": "HasThemes",
1453
- "url": "#",
1454
- "demoUrl": "http://demo.wphash.com/htmega/software/",
1455
- "category": "software",
1456
- "tags": ["home page", "landing page","page","landing","software"],
1457
- "isPro": "0",
1458
- "tmpType": "free",
1459
- "builder": ["elementor"],
1460
- "demoType": "templates",
1461
- "freePlugins": [
1462
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1463
- ],
1464
- "proPlugins": [],
1465
- "requiredtheme": ""
1466
- },
1467
- {
1468
- "id": "software_service",
1469
- "shareId": "software",
1470
- "title": "Service",
1471
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-service.png",
1472
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-service.png",
1473
- "author": "HasThemes",
1474
- "url": "#",
1475
- "demoUrl": "http://demo.wphash.com/ht-software/service/",
1476
- "category": "software",
1477
- "tags": ["service page","service","page","software"],
1478
- "isPro": "1",
1479
- "tmpType": "pro",
1480
- "builder": ["elementor"],
1481
- "demoType": "templates",
1482
- "freePlugins": [
1483
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1484
- ],
1485
- "proPlugins": [
1486
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1487
- ],
1488
- "requiredtheme": ""
1489
- },
1490
- {
1491
- "id": "software_pricing",
1492
- "shareId": "software",
1493
- "title": "Pricing Plan",
1494
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-pricingplan.png",
1495
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-pricingplan.png",
1496
- "author": "HasThemes",
1497
- "url": "#",
1498
- "demoUrl": "http://demo.wphash.com/ht-software/pricing-plan/",
1499
- "category": "software",
1500
- "tags": ["pricing plan page","pricing","plan","page","software"],
1501
- "isPro": "1",
1502
- "tmpType": "pro",
1503
- "builder": ["elementor"],
1504
- "demoType": "templates",
1505
- "freePlugins": [
1506
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1507
- ],
1508
- "proPlugins": [
1509
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1510
- ],
1511
- "requiredtheme": ""
1512
- },
1513
- {
1514
- "id": "software_contactus",
1515
- "shareId": "software",
1516
- "title": "Contact Us",
1517
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-contactus.png",
1518
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-contactus.png",
1519
- "author": "HasThemes",
1520
- "url": "#",
1521
- "demoUrl": "http://demo.wphash.com/ht-software/contact-us/",
1522
- "category": "software",
1523
- "tags": ["contact us page","contact","page","software"],
1524
- "isPro": "1",
1525
- "tmpType": "pro",
1526
- "builder": ["elementor"],
1527
- "demoType": "templates",
1528
- "freePlugins": [
1529
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1530
- ],
1531
- "proPlugins": [
1532
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1533
- ],
1534
- "requiredtheme": ""
1535
- },
1536
- {
1537
- "id": "software_aboutus",
1538
- "shareId": "software",
1539
- "title": "About Us",
1540
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/software-aboutus.png",
1541
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/software-aboutus.png",
1542
- "author": "HasThemes",
1543
- "url": "#",
1544
- "demoUrl": "http://demo.wphash.com/ht-software/about-us/",
1545
- "category": "software",
1546
- "tags": ["about us page","about","page","software"],
1547
- "isPro": "1",
1548
- "tmpType": "pro",
1549
- "builder": ["elementor"],
1550
- "demoType": "templates",
1551
- "freePlugins": [
1552
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1553
- ],
1554
- "proPlugins": [
1555
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1556
- ],
1557
- "requiredtheme": ""
1558
- },
1559
- {
1560
- "id": "travelling",
1561
- "shareId": "travelling",
1562
- "title": "Home One",
1563
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling.png",
1564
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling.png",
1565
- "author": "HasThemes",
1566
- "url": "#",
1567
- "demoUrl": "http://demo.wphash.com/htmega/travelling/",
1568
- "category": "travelling",
1569
- "tags": ["home page", "landing page","landing","page","travelling"],
1570
- "isPro": "0",
1571
- "tmpType": "free",
1572
- "builder": ["elementor"],
1573
- "demoType": "templates",
1574
- "freePlugins": [
1575
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1576
- ],
1577
- "proPlugins": [],
1578
- "requiredtheme": ""
1579
- },
1580
- {
1581
- "id": "travelling_service",
1582
- "shareId": "travelling",
1583
- "title": "Service",
1584
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-service.png",
1585
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-service.png",
1586
- "author": "HasThemes",
1587
- "url": "#",
1588
- "demoUrl": "http://demo.wphash.com/ht-travel/service/",
1589
- "category": "travelling",
1590
- "tags": ["service page","service","page","travelling"],
1591
- "isPro": "1",
1592
- "tmpType": "pro",
1593
- "builder": ["elementor"],
1594
- "demoType": "templates",
1595
- "freePlugins": [
1596
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1597
- ],
1598
- "proPlugins": [
1599
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1600
- ],
1601
- "requiredtheme": ""
1602
- },
1603
- {
1604
- "id": "travelling_aboutus",
1605
- "shareId": "travelling",
1606
- "title": "About Us",
1607
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-aboutus.png",
1608
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-aboutus.png",
1609
- "author": "HasThemes",
1610
- "url": "#",
1611
- "demoUrl": "http://demo.wphash.com/ht-travel/about/",
1612
- "category": "travelling",
1613
- "tags": ["about us page","about","page","travelling"],
1614
- "isPro": "1",
1615
- "tmpType": "pro",
1616
- "builder": ["elementor"],
1617
- "demoType": "templates",
1618
- "freePlugins": [
1619
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1620
- ],
1621
- "proPlugins": [
1622
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1623
- ],
1624
- "requiredtheme": ""
1625
- },
1626
- {
1627
- "id": "travelling_contactus",
1628
- "shareId": "travelling",
1629
- "title": "Contact Us",
1630
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/travelling-contactus.png",
1631
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/travelling-contactus.png",
1632
- "author": "HasThemes",
1633
- "url": "#",
1634
- "demoUrl": "http://demo.wphash.com/ht-travel/contact/",
1635
- "category": "travelling",
1636
- "tags": ["contact us page","contact","page","travelling"],
1637
- "isPro": "1",
1638
- "tmpType": "pro",
1639
- "builder": ["elementor"],
1640
- "demoType": "templates",
1641
- "freePlugins": [
1642
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1643
- ],
1644
- "proPlugins": [
1645
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1646
- ],
1647
- "requiredtheme": ""
1648
- },
1649
- {
1650
- "id": "ashram_buddhist",
1651
- "shareId": "ashram buddhist",
1652
- "title": "Home One",
1653
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/buddhist.png",
1654
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/buddhist.png",
1655
- "author": "HasThemes",
1656
- "url": "#",
1657
- "demoUrl": "http://demo.wphash.com/htmega/ashram-buddhist/",
1658
- "category": "ashram buddhist",
1659
- "tags": ["home page", "landing page","landing","home","ashram","buddhist","ashram buddhist"],
1660
- "isPro": "1",
1661
- "tmpType": "pro",
1662
- "builder": ["elementor"],
1663
- "demoType": "templates",
1664
- "freePlugins": [
1665
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1666
- ],
1667
- "proPlugins": [
1668
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1669
- ],
1670
- "requiredtheme": ""
1671
- },
1672
- {
1673
- "id": "ashram_buddhist_program",
1674
- "shareId": "ashram buddhist",
1675
- "title": "Program",
1676
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_program.png",
1677
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_program.png",
1678
- "author": "HasThemes",
1679
- "url": "#",
1680
- "demoUrl": "http://demo.wphash.com/htmega/program-ashram-buddhist/",
1681
- "category": "ashram buddhist",
1682
- "tags": ["program page","program","page","ashram","buddhist","ashram buddhist"],
1683
- "isPro": "1",
1684
- "tmpType": "pro",
1685
- "builder": ["elementor"],
1686
- "demoType": "templates",
1687
- "freePlugins": [
1688
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1689
- ],
1690
- "proPlugins": [
1691
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1692
- ],
1693
- "requiredtheme": ""
1694
- },
1695
- {
1696
- "id": "ashram_buddhist_about_us",
1697
- "shareId": "ashram buddhist",
1698
- "title": "About Us",
1699
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_about_us.png",
1700
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_about_us.png",
1701
- "author": "HasThemes",
1702
- "url": "#",
1703
- "demoUrl": "http://demo.wphash.com/htmega/about-us-ashram-buddhist/",
1704
- "category": "ashram buddhist",
1705
- "tags": ["about us page","about","page","ashram","buddhist","ashram buddhist"],
1706
- "isPro": "1",
1707
- "tmpType": "pro",
1708
- "builder": ["elementor"],
1709
- "demoType": "templates",
1710
- "freePlugins": [
1711
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1712
- ],
1713
- "proPlugins": [
1714
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1715
- ],
1716
- "requiredtheme": ""
1717
- },
1718
- {
1719
- "id": "ashram_buddhist_contact_us",
1720
- "shareId": "ashram buddhist",
1721
- "title": "Contact Us",
1722
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/ashram_buddhist_contact_us.png",
1723
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/ashram_buddhist_contact_us.png",
1724
- "author": "HasThemes",
1725
- "url": "#",
1726
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-ashram-buddhist/",
1727
- "category": "ashram buddhist",
1728
- "tags": ["contact us page","contact","page","ashram","buddhist","ashram buddhist"],
1729
- "isPro": "1",
1730
- "tmpType": "pro",
1731
- "builder": ["elementor"],
1732
- "demoType": "templates",
1733
- "freePlugins": [
1734
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1735
- ],
1736
- "proPlugins": [
1737
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1738
- ],
1739
- "requiredtheme": ""
1740
- },
1741
- {
1742
- "id": "broadband_telecom",
1743
- "shareId": "broadband telecom",
1744
- "title": "Home One",
1745
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadbandtelecom.png",
1746
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadbandtelecom.png",
1747
- "author": "HasThemes",
1748
- "url": "#",
1749
- "demoUrl": "http://demo.wphash.com/htmega/broadband-telecom/",
1750
- "category": "broadband telecom",
1751
- "tags": ["home page", "landing page","page","home","broadband","broadband telecom","telecom"],
1752
- "isPro": "1",
1753
- "tmpType": "pro",
1754
- "builder": ["elementor"],
1755
- "demoType": "templates",
1756
- "freePlugins": [
1757
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1758
- ],
1759
- "proPlugins": [
1760
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1761
- ],
1762
- "requiredtheme": ""
1763
- },
1764
- {
1765
- "id": "broadband_telecom_service",
1766
- "shareId": "broadband telecom",
1767
- "title": "Service",
1768
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_service.png",
1769
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_service.png",
1770
- "author": "HasThemes",
1771
- "url": "#",
1772
- "demoUrl": "http://demo.wphash.com/htmega/service-broadband-telecom/",
1773
- "category": "broadband telecom",
1774
- "tags": ["service page","service","page","broadband","broadband telecom","telecom"],
1775
- "isPro": "1",
1776
- "tmpType": "pro",
1777
- "builder": ["elementor"],
1778
- "demoType": "templates",
1779
- "freePlugins": [
1780
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1781
- ],
1782
- "proPlugins": [
1783
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1784
- ],
1785
- "requiredtheme": ""
1786
- },
1787
- {
1788
- "id": "broadband_telecom_about_us",
1789
- "shareId": "broadband telecom",
1790
- "title": "About Us",
1791
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_about_us.png",
1792
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_about_us.png",
1793
- "author": "HasThemes",
1794
- "url": "#",
1795
- "demoUrl": "http://demo.wphash.com/htmega/about-us-broadband-telecom/",
1796
- "category": "broadband telecom",
1797
- "tags": ["about us page","about","page","broadband","broadband telecom","telecom"],
1798
- "isPro": "1",
1799
- "tmpType": "pro",
1800
- "builder": ["elementor"],
1801
- "demoType": "templates",
1802
- "freePlugins": [
1803
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1804
- ],
1805
- "proPlugins": [
1806
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1807
- ],
1808
- "requiredtheme": ""
1809
- },
1810
- {
1811
- "id": "broadband_telecom_contact_us",
1812
- "shareId": "broadband telecom",
1813
- "title": "Contact Us",
1814
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/broadband_telecom_contact_us.png",
1815
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/broadband_telecom_contact_us.png",
1816
- "author": "HasThemes",
1817
- "url": "#",
1818
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-broadband-telecom/",
1819
- "category": "broadband telecom",
1820
- "tags": ["contact us page","contact","page","broadband","broadband telecom","telecom"],
1821
- "isPro": "1",
1822
- "tmpType": "pro",
1823
- "builder": ["elementor"],
1824
- "demoType": "templates",
1825
- "freePlugins": [
1826
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1827
- ],
1828
- "proPlugins": [
1829
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1830
- ],
1831
- "requiredtheme": ""
1832
- },
1833
- {
1834
- "id": "campgrounds_camping",
1835
- "shareId": "campgrounds and camping",
1836
- "title": "Home One",
1837
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgroundsandcamping.png",
1838
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgroundsandcamping.png",
1839
- "author": "HasThemes",
1840
- "url": "#",
1841
- "demoUrl": "http://demo.wphash.com/htmega/campgrounds-and-camping/",
1842
- "category": "campgrounds and camping",
1843
- "tags": ["home page", "landing page","landing","home","page","campgrounds","camping","campgrounds and camping"],
1844
- "isPro": "1",
1845
- "tmpType": "pro",
1846
- "builder": ["elementor"],
1847
- "demoType": "templates",
1848
- "freePlugins": [
1849
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1850
- ],
1851
- "proPlugins": [
1852
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1853
- ],
1854
- "requiredtheme": ""
1855
- },
1856
- {
1857
- "id": "campgrounds_and_camping_activities",
1858
- "shareId": "campgrounds and camping",
1859
- "title": "Activities",
1860
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_activities.png",
1861
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_activities.png",
1862
- "author": "HasThemes",
1863
- "url": "#",
1864
- "demoUrl": "http://demo.wphash.com/htmega/activities-campgrounds-and-camping/",
1865
- "category": "campgrounds and camping",
1866
- "tags": ["activities","page","campgrounds","camping","campgrounds and camping"],
1867
- "isPro": "1",
1868
- "tmpType": "pro",
1869
- "builder": ["elementor"],
1870
- "demoType": "templates",
1871
- "freePlugins": [
1872
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1873
- ],
1874
- "proPlugins": [
1875
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1876
- ],
1877
- "requiredtheme": ""
1878
- },
1879
- {
1880
- "id": "campgrounds_and_camping_about_us",
1881
- "shareId": "campgrounds and camping",
1882
- "title": "About Us",
1883
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_about_us.png",
1884
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_about_us.png",
1885
- "author": "HasThemes",
1886
- "url": "#",
1887
- "demoUrl": "http://demo.wphash.com/htmega/about-us-campgrounds-and-camping/",
1888
- "category": "campgrounds and camping",
1889
- "tags": ["about us page","about","page","campgrounds","camping","campgrounds and camping"],
1890
- "isPro": "1",
1891
- "tmpType": "pro",
1892
- "builder": ["elementor"],
1893
- "demoType": "templates",
1894
- "freePlugins": [
1895
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1896
- ],
1897
- "proPlugins": [
1898
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1899
- ],
1900
- "requiredtheme": ""
1901
- },
1902
- {
1903
- "id": "campgrounds_and_camping_contact_us",
1904
- "shareId": "campgrounds and camping",
1905
- "title": "Contact Us",
1906
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/campgrounds_and_camping_contact_us.png",
1907
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/campgrounds_and_camping_contact_us.png",
1908
- "author": "HasThemes",
1909
- "url": "#",
1910
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-campgrounds-and-camping/",
1911
- "category": "campgrounds and camping",
1912
- "tags": ["contact us page","contact","page","campgrounds","camping","campgrounds and camping"],
1913
- "isPro": "1",
1914
- "tmpType": "pro",
1915
- "builder": ["elementor"],
1916
- "demoType": "templates",
1917
- "freePlugins": [
1918
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1919
- ],
1920
- "proPlugins": [
1921
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1922
- ],
1923
- "requiredtheme": ""
1924
- },
1925
- {
1926
- "id": "dairy_farm",
1927
- "shareId": "dairy farm",
1928
- "title": "Home One",
1929
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairyfarm.png",
1930
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairyfarm.png",
1931
- "author": "HasThemes",
1932
- "url": "#",
1933
- "demoUrl": "http://demo.wphash.com/htmega/dairy-farm/",
1934
- "category": "dairy farm",
1935
- "tags": ["home page", "landing page","page","landing","home","dairy farm","dairy","farm"],
1936
- "isPro": "1",
1937
- "tmpType": "pro",
1938
- "builder": ["elementor"],
1939
- "demoType": "templates",
1940
- "freePlugins": [
1941
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1942
- ],
1943
- "proPlugins": [
1944
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1945
- ],
1946
- "requiredtheme": ""
1947
- },
1948
- {
1949
- "id": "dairy_farm_service",
1950
- "shareId": "dairy farm",
1951
- "title": "Service",
1952
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_service.png",
1953
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_service.png",
1954
- "author": "HasThemes",
1955
- "url": "#",
1956
- "demoUrl": "http://demo.wphash.com/htmega/service-dairy-farm/",
1957
- "category": "dairy farm",
1958
- "tags": ["service page","service","page","dairy farm","dairy","farm"],
1959
- "isPro": "1",
1960
- "tmpType": "pro",
1961
- "builder": ["elementor"],
1962
- "demoType": "templates",
1963
- "freePlugins": [
1964
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1965
- ],
1966
- "proPlugins": [
1967
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1968
- ],
1969
- "requiredtheme": ""
1970
- },
1971
- {
1972
- "id": "dairy_farm_about_us",
1973
- "shareId": "dairy farm",
1974
- "title": "About Us",
1975
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_about_us.png",
1976
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_about_us.png",
1977
- "author": "HasThemes",
1978
- "url": "#",
1979
- "demoUrl": "http://demo.wphash.com/htmega/about-us-dairy-farm/",
1980
- "category": "dairy farm",
1981
- "tags": ["about us page","about","page","dairy farm","dairy","farm"],
1982
- "isPro": "1",
1983
- "tmpType": "pro",
1984
- "builder": ["elementor"],
1985
- "demoType": "templates",
1986
- "freePlugins": [
1987
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
1988
- ],
1989
- "proPlugins": [
1990
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
1991
- ],
1992
- "requiredtheme": ""
1993
- },
1994
- {
1995
- "id": "dairy_farm_contact_us",
1996
- "shareId": "dairy farm",
1997
- "title": "Contact Us",
1998
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dairy_farm_contact_us.png",
1999
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dairy_farm_contact_us.png",
2000
- "author": "HasThemes",
2001
- "url": "#",
2002
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-dairy-farm/",
2003
- "category": "dairy farm",
2004
- "tags": ["contact us page","contact","page","dairy farm","dairy","farm"],
2005
- "isPro": "1",
2006
- "tmpType": "pro",
2007
- "builder": ["elementor"],
2008
- "demoType": "templates",
2009
- "freePlugins": [
2010
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2011
- ],
2012
- "proPlugins": [
2013
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2014
- ],
2015
- "requiredtheme": ""
2016
- },
2017
- {
2018
- "id": "dermatology_clinic_cosmetology",
2019
- "shareId": "dermatology clinic and cosmetology",
2020
- "title": "Home One",
2021
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_clinic_cosmetology.png",
2022
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_clinic_cosmetology.png",
2023
- "author": "HasThemes",
2024
- "url": "#",
2025
- "demoUrl": "http://demo.wphash.com/htmega/dermatology-clinic-cosmetology/",
2026
- "category": "dermatology clinic and cosmetology",
2027
- "tags": ["home page", "landing page","page","home","dermatology clinic and cosmetology","dermatology","clinic","cosmetology"],
2028
- "isPro": "1",
2029
- "tmpType": "pro",
2030
- "builder": ["elementor"],
2031
- "demoType": "templates",
2032
- "freePlugins": [
2033
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2034
- ],
2035
- "proPlugins": [
2036
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2037
- ],
2038
- "requiredtheme": ""
2039
- },
2040
- {
2041
- "id": "dermatology_service",
2042
- "shareId": "dermatology clinic and cosmetology",
2043
- "title": "Service",
2044
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_service.png",
2045
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_service.png",
2046
- "author": "HasThemes",
2047
- "url": "#",
2048
- "demoUrl": "http://demo.wphash.com/htmega/service-dermatology-clinic-cosmetology/",
2049
- "category": "dermatology clinic and cosmetology",
2050
- "tags": ["service page","service","page","dermatology clinic and cosmetology","dermatology","clinic","cosmetology"],
2051
- "isPro": "1",
2052
- "tmpType": "pro",
2053
- "builder": ["elementor"],
2054
- "demoType": "templates",
2055
- "freePlugins": [
2056
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2057
- ],
2058
- "proPlugins": [
2059
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2060
- ],
2061
- "requiredtheme": ""
2062
- },
2063
- {
2064
- "id": "dermatology_about_us",
2065
- "shareId": "dermatology clinic and cosmetology",
2066
- "title": "About Us",
2067
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_about_us.png",
2068
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_about_us.png",
2069
- "author": "HasThemes",
2070
- "url": "#",
2071
- "demoUrl": "http://demo.wphash.com/htmega/about-us-dermatology-clinic-cosmetology/",
2072
- "category": "dermatology clinic and cosmetology",
2073
- "tags": ["about us","about","page","dermatology clinic and cosmetology","dermatology","clinic","cosmetology"],
2074
- "isPro": "1",
2075
- "tmpType": "pro",
2076
- "builder": ["elementor"],
2077
- "demoType": "templates",
2078
- "freePlugins": [
2079
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2080
- ],
2081
- "proPlugins": [
2082
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2083
- ],
2084
- "requiredtheme": ""
2085
- },
2086
- {
2087
- "id": "dermatology_contact_us",
2088
- "shareId": "dermatology clinic and cosmetology",
2089
- "title": "Contact Us",
2090
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dermatology_contact_us.png",
2091
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dermatology_contact_us.png",
2092
- "author": "HasThemes",
2093
- "url": "#",
2094
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-dermatology-clinic-cosmetology/",
2095
- "category": "dermatology clinic and cosmetology",
2096
- "tags": ["contact us","contact","page","dermatology clinic and cosmetology","dermatology","clinic","cosmetology"],
2097
- "isPro": "1",
2098
- "tmpType": "pro",
2099
- "builder": ["elementor"],
2100
- "demoType": "templates",
2101
- "freePlugins": [
2102
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2103
- ],
2104
- "proPlugins": [
2105
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2106
- ],
2107
- "requiredtheme": ""
2108
- },
2109
- {
2110
- "id": "environmental",
2111
- "shareId": "environmental",
2112
- "title": "Home One",
2113
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental.png",
2114
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental.png",
2115
- "author": "HasThemes",
2116
- "url": "#",
2117
- "demoUrl": "http://demo.wphash.com/htmega/environmental/",
2118
- "category": "environmental",
2119
- "tags": ["home page", "landing page","home","landing","environmental"],
2120
- "isPro": "1",
2121
- "tmpType": "pro",
2122
- "builder": ["elementor"],
2123
- "demoType": "templates",
2124
- "freePlugins": [
2125
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2126
- ],
2127
- "proPlugins": [
2128
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2129
- ],
2130
- "requiredtheme": ""
2131
- },
2132
- {
2133
- "id": "environmental_event",
2134
- "shareId": "environmental",
2135
- "title": "Event",
2136
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_event.png",
2137
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_event.png",
2138
- "author": "HasThemes",
2139
- "url": "#",
2140
- "demoUrl": "http://demo.wphash.com/htmega/event-environmental/",
2141
- "category": "environmental",
2142
- "tags": ["event page","event","page","environmental"],
2143
- "isPro": "1",
2144
- "tmpType": "pro",
2145
- "builder": ["elementor"],
2146
- "demoType": "templates",
2147
- "freePlugins": [
2148
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2149
- ],
2150
- "proPlugins": [
2151
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2152
- ],
2153
- "requiredtheme": ""
2154
- },
2155
- {
2156
- "id": "environmental_project",
2157
- "shareId": "environmental",
2158
- "title": "Project Page",
2159
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_project.png",
2160
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_project.png",
2161
- "author": "HasThemes",
2162
- "url": "#",
2163
- "demoUrl": "http://demo.wphash.com/htmega/project-environmental/",
2164
- "category": "environmental",
2165
- "tags": ["project page","project","page","environmental"],
2166
- "isPro": "1",
2167
- "tmpType": "pro",
2168
- "builder": ["elementor"],
2169
- "demoType": "templates",
2170
- "freePlugins": [
2171
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2172
- ],
2173
- "proPlugins": [
2174
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2175
- ],
2176
- "requiredtheme": ""
2177
- },
2178
- {
2179
- "id": "environmental_about_us",
2180
- "shareId": "environmental",
2181
- "title": "About Us",
2182
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_about_us.png",
2183
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_about_us.png",
2184
- "author": "HasThemes",
2185
- "url": "#",
2186
- "demoUrl": "http://demo.wphash.com/htmega/about-us-environmental/",
2187
- "category": "environmental",
2188
- "tags": ["about us","about","page","environmental"],
2189
- "isPro": "1",
2190
- "tmpType": "pro",
2191
- "builder": ["elementor"],
2192
- "demoType": "templates",
2193
- "freePlugins": [
2194
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2195
- ],
2196
- "proPlugins": [
2197
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2198
- ],
2199
- "requiredtheme": ""
2200
- },
2201
- {
2202
- "id": "environmental_contact_us",
2203
- "shareId": "environmental",
2204
- "title": "Contact Us",
2205
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/environmental_contact_us.png",
2206
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/environmental_contact_us.png",
2207
- "author": "HasThemes",
2208
- "url": "#",
2209
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-environmental/",
2210
- "category": "environmental",
2211
- "tags": ["contact us","contact","page","environmental"],
2212
- "isPro": "1",
2213
- "tmpType": "pro",
2214
- "builder": ["elementor"],
2215
- "demoType": "templates",
2216
- "freePlugins": [
2217
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2218
- ],
2219
- "proPlugins": [
2220
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2221
- ],
2222
- "requiredtheme": ""
2223
- },
2224
- {
2225
- "id": "fire_station",
2226
- "shareId": "fire station",
2227
- "title": "Home One",
2228
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station.png",
2229
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station.png",
2230
- "author": "HasThemes",
2231
- "url": "#",
2232
- "demoUrl": "http://demo.wphash.com/htmega/fire-station/",
2233
- "category": "fire station",
2234
- "tags": ["home page", "landing page","home","landing","fire station","fire","station"],
2235
- "isPro": "1",
2236
- "tmpType": "pro",
2237
- "builder": ["elementor"],
2238
- "demoType": "templates",
2239
- "freePlugins": [
2240
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2241
- ],
2242
- "proPlugins": [
2243
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2244
- ],
2245
- "requiredtheme": ""
2246
- },
2247
- {
2248
- "id": "fire_station_service",
2249
- "shareId": "fire station",
2250
- "title": "Service",
2251
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_service.png",
2252
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_service.png",
2253
- "author": "HasThemes",
2254
- "url": "#",
2255
- "demoUrl": "http://demo.wphash.com/htmega/service-fire-station/",
2256
- "category": "fire station",
2257
- "tags": ["service page","service","page","fire station","fire","station"],
2258
- "isPro": "1",
2259
- "tmpType": "pro",
2260
- "builder": ["elementor"],
2261
- "demoType": "templates",
2262
- "freePlugins": [
2263
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2264
- ],
2265
- "proPlugins": [
2266
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2267
- ],
2268
- "requiredtheme": ""
2269
- },
2270
- {
2271
- "id": "fire_station_about_us",
2272
- "shareId": "fire station",
2273
- "title": "About Us",
2274
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_about_us.png",
2275
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_about_us.png",
2276
- "author": "HasThemes",
2277
- "url": "#",
2278
- "demoUrl": "http://demo.wphash.com/htmega/about-us-fire-station/",
2279
- "category": "fire station",
2280
- "tags": ["about us","about","page","fire station","fire","station"],
2281
- "isPro": "1",
2282
- "tmpType": "pro",
2283
- "builder": ["elementor"],
2284
- "demoType": "templates",
2285
- "freePlugins": [
2286
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2287
- ],
2288
- "proPlugins": [
2289
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2290
- ],
2291
- "requiredtheme": ""
2292
- },
2293
- {
2294
- "id": "fire_station_contact_us",
2295
- "shareId": "fire station",
2296
- "title": "Contact Us",
2297
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/fire_station_contact_us.png",
2298
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/fire_station_contact_us.png",
2299
- "author": "HasThemes",
2300
- "url": "#",
2301
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-fire-station/",
2302
- "category": "fire station",
2303
- "tags": ["contact us page","contact","page","fire station","fire","station"],
2304
- "isPro": "1",
2305
- "tmpType": "pro",
2306
- "builder": ["elementor"],
2307
- "demoType": "templates",
2308
- "freePlugins": [
2309
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2310
- ],
2311
- "proPlugins": [
2312
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2313
- ],
2314
- "requiredtheme": ""
2315
- },
2316
- {
2317
- "id": "funeral",
2318
- "shareId": "funeral",
2319
- "title": "Home One",
2320
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral.png",
2321
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral.png",
2322
- "author": "HasThemes",
2323
- "url": "#",
2324
- "demoUrl": "http://demo.wphash.com/htmega/funeral/",
2325
- "category": "funeral",
2326
- "tags": ["home page, landing page","home","landing","funeral"],
2327
- "isPro": "1",
2328
- "tmpType": "pro",
2329
- "builder": ["elementor"],
2330
- "demoType": "templates",
2331
- "freePlugins": [
2332
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2333
- ],
2334
- "proPlugins": [
2335
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2336
- ],
2337
- "requiredtheme": ""
2338
- },
2339
- {
2340
- "id": "funeral_service",
2341
- "shareId": "funeral",
2342
- "title": "Service",
2343
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_service.png",
2344
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_service.png",
2345
- "author": "HasThemes",
2346
- "url": "#",
2347
- "demoUrl": "http://demo.wphash.com/htmega/service-funeral/",
2348
- "category": "funeral",
2349
- "tags": ["service page","service","page","funeral"],
2350
- "isPro": "1",
2351
- "tmpType": "pro",
2352
- "builder": ["elementor"],
2353
- "demoType": "templates",
2354
- "freePlugins": [
2355
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2356
- ],
2357
- "proPlugins": [
2358
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2359
- ],
2360
- "requiredtheme": ""
2361
- },
2362
- {
2363
- "id": "funeral_about_us",
2364
- "shareId": "funeral",
2365
- "title": "About Us",
2366
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_about_us.png",
2367
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_about_us.png",
2368
- "author": "HasThemes",
2369
- "url": "#",
2370
- "demoUrl": "http://demo.wphash.com/htmega/about-us-funeral/",
2371
- "category": "funeral",
2372
- "tags": ["abut us page","about","page","funeral"],
2373
- "isPro": "1",
2374
- "tmpType": "pro",
2375
- "builder": ["elementor"],
2376
- "demoType": "templates",
2377
- "freePlugins": [
2378
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2379
- ],
2380
- "proPlugins": [
2381
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2382
- ],
2383
- "requiredtheme": ""
2384
- },
2385
- {
2386
- "id": "funeral_contact_us",
2387
- "shareId": "funeral",
2388
- "title": "Contact Us",
2389
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/funeral_contact_us.png",
2390
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/funeral_contact_us.png",
2391
- "author": "HasThemes",
2392
- "url": "#",
2393
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-funeral/",
2394
- "category": "funeral",
2395
- "tags": ["contact us page","contact","page","funeral"],
2396
- "isPro": "1",
2397
- "tmpType": "pro",
2398
- "builder": ["elementor"],
2399
- "demoType": "templates",
2400
- "freePlugins": [
2401
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2402
- ],
2403
- "proPlugins": [
2404
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2405
- ],
2406
- "requiredtheme": ""
2407
- },
2408
- {
2409
- "id": "insurance",
2410
- "shareId": "insurance",
2411
- "title": "Home One",
2412
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance.png",
2413
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance.png",
2414
- "author": "HasThemes",
2415
- "url": "#",
2416
- "demoUrl": "http://demo.wphash.com/htmega/insurance/",
2417
- "category": "insurance",
2418
- "tags": ["home page", "landing page","landing","home","insurance"],
2419
- "isPro": "1",
2420
- "tmpType": "pro",
2421
- "builder": ["elementor"],
2422
- "demoType": "templates",
2423
- "freePlugins": [
2424
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2425
- ],
2426
- "proPlugins": [
2427
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2428
- ],
2429
- "requiredtheme": ""
2430
- },
2431
- {
2432
- "id": "insurance_service",
2433
- "shareId": "insurance",
2434
- "title": "Service",
2435
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_service.png",
2436
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_service.png",
2437
- "author": "HasThemes",
2438
- "url": "#",
2439
- "demoUrl": "http://demo.wphash.com/htmega/service-insurance/",
2440
- "category": "insurance",
2441
- "tags": ["service page","service","page","insurance"],
2442
- "isPro": "1",
2443
- "tmpType": "pro",
2444
- "builder": ["elementor"],
2445
- "demoType": "templates",
2446
- "freePlugins": [
2447
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2448
- ],
2449
- "proPlugins": [
2450
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2451
- ],
2452
- "requiredtheme": ""
2453
- },
2454
- {
2455
- "id": "insurance_about_us",
2456
- "shareId": "insurance",
2457
- "title": "About Us",
2458
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_about_us.png",
2459
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_about_us.png",
2460
- "author": "HasThemes",
2461
- "url": "#",
2462
- "demoUrl": "http://demo.wphash.com/htmega/about-us-insurance/",
2463
- "category": "insurance",
2464
- "tags": ["about us page","about","page","insurance"],
2465
- "isPro": "1",
2466
- "tmpType": "pro",
2467
- "builder": ["elementor"],
2468
- "demoType": "templates",
2469
- "freePlugins": [
2470
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2471
- ],
2472
- "proPlugins": [
2473
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2474
- ],
2475
- "requiredtheme": ""
2476
- },
2477
- {
2478
- "id": "insurance_contact_us",
2479
- "shareId": "insurance",
2480
- "title": "Contact Us",
2481
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/insurance_contact_us.png",
2482
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/insurance_contact_us.png",
2483
- "author": "HasThemes",
2484
- "url": "#",
2485
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-insurance/",
2486
- "category": "insurance",
2487
- "tags": ["contact us page","contact","page","insurance"],
2488
- "isPro": "1",
2489
- "tmpType": "pro",
2490
- "builder": ["elementor"],
2491
- "demoType": "templates",
2492
- "freePlugins": [
2493
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2494
- ],
2495
- "proPlugins": [
2496
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2497
- ],
2498
- "requiredtheme": ""
2499
- },
2500
- {
2501
- "id": "law_firm",
2502
- "shareId": "law firm",
2503
- "title": "Home One",
2504
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm.png",
2505
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm.png",
2506
- "author": "HasThemes",
2507
- "url": "#",
2508
- "demoUrl": "http://demo.wphash.com/htmega/law-firm/",
2509
- "category": "law firm",
2510
- "tags": ["home page", "landing page","home","landing","law firm","law","firm"],
2511
- "isPro": "1",
2512
- "tmpType": "pro",
2513
- "builder": ["elementor"],
2514
- "demoType": "templates",
2515
- "freePlugins": [
2516
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2517
- ],
2518
- "proPlugins": [
2519
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2520
- ],
2521
- "requiredtheme": ""
2522
- },
2523
- {
2524
- "id": "law_firm_service",
2525
- "shareId": "law firm",
2526
- "title": "Service",
2527
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_service.png",
2528
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_service.png",
2529
- "author": "HasThemes",
2530
- "url": "#",
2531
- "demoUrl": "http://demo.wphash.com/htmega/service-law-firm/",
2532
- "category": "law firm",
2533
- "tags": ["service page","service","page","law firm","law","firm"],
2534
- "isPro": "1",
2535
- "tmpType": "pro",
2536
- "builder": ["elementor"],
2537
- "demoType": "templates",
2538
- "freePlugins": [
2539
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2540
- ],
2541
- "proPlugins": [
2542
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2543
- ],
2544
- "requiredtheme": ""
2545
- },
2546
- {
2547
- "id": "law_firm_about_us",
2548
- "shareId": "law firm",
2549
- "title": "About Us",
2550
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_about_us.png",
2551
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_about_us.png",
2552
- "author": "HasThemes",
2553
- "url": "#",
2554
- "demoUrl": "http://demo.wphash.com/htmega/about-us-law-firm/",
2555
- "category": "law firm",
2556
- "tags": ["about us page","page","about","law firm","law","firm"],
2557
- "isPro": "1",
2558
- "tmpType": "pro",
2559
- "builder": ["elementor"],
2560
- "demoType": "templates",
2561
- "freePlugins": [
2562
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2563
- ],
2564
- "proPlugins": [
2565
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2566
- ],
2567
- "requiredtheme": ""
2568
- },
2569
- {
2570
- "id": "law_firm_contact_us",
2571
- "shareId": "law firm",
2572
- "title": "Contact Us",
2573
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/law_firm_contact_us.png",
2574
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/law_firm_contact_us.png",
2575
- "author": "HasThemes",
2576
- "url": "#",
2577
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-law-firm/",
2578
- "category": "law firm",
2579
- "tags": ["contact us page","contact","page","law firm","law","firm"],
2580
- "isPro": "1",
2581
- "tmpType": "pro",
2582
- "builder": ["elementor"],
2583
- "demoType": "templates",
2584
- "freePlugins": [
2585
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2586
- ],
2587
- "proPlugins": [
2588
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2589
- ],
2590
- "requiredtheme": ""
2591
- },
2592
- {
2593
- "id": "moving_storage",
2594
- "shareId": "moving storage",
2595
- "title": "Home One",
2596
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage.png",
2597
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage.png",
2598
- "author": "HasThemes",
2599
- "url": "#",
2600
- "demoUrl": "http://demo.wphash.com/htmega/moving-storage/",
2601
- "category": "moving storage",
2602
- "tags": ["home page", "landing page","home","landing","moving","storage","moving storage"],
2603
- "isPro": "1",
2604
- "tmpType": "pro",
2605
- "builder": ["elementor"],
2606
- "demoType": "templates",
2607
- "freePlugins": [
2608
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2609
- ],
2610
- "proPlugins": [
2611
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2612
- ],
2613
- "requiredtheme": ""
2614
- },
2615
- {
2616
- "id": "moving_storage_service",
2617
- "shareId": "moving storage",
2618
- "title": "Service",
2619
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_service.png",
2620
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_service.png",
2621
- "author": "HasThemes",
2622
- "url": "#",
2623
- "demoUrl": "http://demo.wphash.com/htmega/service-moving-storage/",
2624
- "category": "moving storage",
2625
- "tags": ["service page","service","page","moving","storage","moving storage"],
2626
- "isPro": "1",
2627
- "tmpType": "pro",
2628
- "builder": ["elementor"],
2629
- "demoType": "templates",
2630
- "freePlugins": [
2631
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2632
- ],
2633
- "proPlugins": [
2634
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2635
- ],
2636
- "requiredtheme": ""
2637
- },
2638
- {
2639
- "id": "moving_storage_about_us",
2640
- "shareId": "moving storage",
2641
- "title": "About Us",
2642
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_about_us.png",
2643
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_about_us.png",
2644
- "author": "HasThemes",
2645
- "url": "#",
2646
- "demoUrl": "http://demo.wphash.com/htmega/about-us-moving-storage/",
2647
- "category": "moving storage",
2648
- "tags": ["about us page","about","page","moving","storage","moving storage"],
2649
- "isPro": "1",
2650
- "tmpType": "pro",
2651
- "builder": ["elementor"],
2652
- "demoType": "templates",
2653
- "freePlugins": [
2654
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2655
- ],
2656
- "proPlugins": [
2657
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2658
- ],
2659
- "requiredtheme": ""
2660
- },
2661
- {
2662
- "id": "moving_storage_contact_us",
2663
- "shareId": "moving storage",
2664
- "title": "Contact Us",
2665
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/moving_storage_contact_us.png",
2666
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/moving_storage_contact_us.png",
2667
- "author": "HasThemes",
2668
- "url": "#",
2669
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-moving-storage/",
2670
- "category": "moving storage",
2671
- "tags": ["contact us page","contact","page","moving","storage","moving storage"],
2672
- "isPro": "1",
2673
- "tmpType": "pro",
2674
- "builder": ["elementor"],
2675
- "demoType": "templates",
2676
- "freePlugins": [
2677
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2678
- ],
2679
- "proPlugins": [
2680
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2681
- ],
2682
- "requiredtheme": ""
2683
- },
2684
- {
2685
- "id": "print_design_service",
2686
- "shareId": "print design service",
2687
- "title": "Home One",
2688
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/printdesign.png",
2689
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/printdesign.png",
2690
- "author": "HasThemes",
2691
- "url": "#",
2692
- "demoUrl": "http://demo.wphash.com/htmega/print-design-service/",
2693
- "category": "print design service",
2694
- "tags": ["home page", "landing page","home","landing","print","design","print design service"],
2695
- "isPro": "1",
2696
- "tmpType": "pro",
2697
- "builder": ["elementor"],
2698
- "demoType": "templates",
2699
- "freePlugins": [
2700
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2701
- ],
2702
- "proPlugins": [
2703
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2704
- ],
2705
- "requiredtheme": ""
2706
- },
2707
- {
2708
- "id": "print_design_service",
2709
- "shareId": "print design service",
2710
- "title": "Service",
2711
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_service.png",
2712
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_service.png",
2713
- "author": "HasThemes",
2714
- "url": "#",
2715
- "demoUrl": "http://demo.wphash.com/htmega/service/",
2716
- "category": "print design service",
2717
- "tags": ["service","page","service page","print","design","print design service"],
2718
- "isPro": "1",
2719
- "tmpType": "pro",
2720
- "builder": ["elementor"],
2721
- "demoType": "templates",
2722
- "freePlugins": [
2723
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2724
- ],
2725
- "proPlugins": [
2726
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2727
- ],
2728
- "requiredtheme": ""
2729
- },
2730
- {
2731
- "id": "print_design_about_us",
2732
- "shareId": "print design service",
2733
- "title": "About Us",
2734
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_about_us.png",
2735
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_about_us.png",
2736
- "author": "HasThemes",
2737
- "url": "#",
2738
- "demoUrl": "http://demo.wphash.com/htmega/about-us-print-design-service/",
2739
- "category": "print design service",
2740
- "tags": ["about us","page","about","print","design","print design service"],
2741
- "isPro": "1",
2742
- "tmpType": "pro",
2743
- "builder": ["elementor"],
2744
- "demoType": "templates",
2745
- "freePlugins": [
2746
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2747
- ],
2748
- "proPlugins": [
2749
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2750
- ],
2751
- "requiredtheme": ""
2752
- },
2753
- {
2754
- "id": "print_design_contact_us",
2755
- "shareId": "print design service",
2756
- "title": "Contact Us",
2757
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/print_design_contact_us.png",
2758
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/print_design_contact_us.png",
2759
- "author": "HasThemes",
2760
- "url": "#",
2761
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-print-design-service/",
2762
- "category": "print design service",
2763
- "tags": ["contact us","contact","page","print","design","print design service"],
2764
- "isPro": "1",
2765
- "tmpType": "pro",
2766
- "builder": ["elementor"],
2767
- "demoType": "templates",
2768
- "freePlugins": [
2769
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2770
- ],
2771
- "proPlugins": [
2772
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2773
- ],
2774
- "requiredtheme": ""
2775
- },
2776
- {
2777
- "id": "roofing_service",
2778
- "shareId": "roofing service",
2779
- "title": "Home One",
2780
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofingservice.png",
2781
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofingservice.png",
2782
- "author": "HasThemes",
2783
- "url": "#",
2784
- "demoUrl": "http://demo.wphash.com/htmega/roofing-service/",
2785
- "category": "roofing service",
2786
- "tags": ["home page", "landing page","home","landing","roofing"],
2787
- "isPro": "1",
2788
- "tmpType": "pro",
2789
- "builder": ["elementor"],
2790
- "demoType": "templates",
2791
- "freePlugins": [
2792
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2793
- ],
2794
- "proPlugins": [
2795
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2796
- ],
2797
- "requiredtheme": ""
2798
- },
2799
- {
2800
- "id": "roofing_service_service",
2801
- "shareId": "roofing service",
2802
- "title": "Service",
2803
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_service.png",
2804
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_service.png",
2805
- "author": "HasThemes",
2806
- "url": "#",
2807
- "demoUrl": "http://demo.wphash.com/htmega/service-roofing-service/",
2808
- "category": "roofing service",
2809
- "tags": ["service page","service","page","roofing"],
2810
- "isPro": "1",
2811
- "tmpType": "pro",
2812
- "builder": ["elementor"],
2813
- "demoType": "templates",
2814
- "freePlugins": [
2815
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2816
- ],
2817
- "proPlugins": [
2818
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2819
- ],
2820
- "requiredtheme": ""
2821
- },
2822
- {
2823
- "id": "roofing_service_about_us",
2824
- "shareId": "roofing service",
2825
- "title": "About Us",
2826
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_about_us.png",
2827
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_about_us.png",
2828
- "author": "HasThemes",
2829
- "url": "#",
2830
- "demoUrl": "http://demo.wphash.com/htmega/about-us-roofing-service/",
2831
- "category": "roofing service",
2832
- "tags": ["about us","about","page","roofing"],
2833
- "isPro": "1",
2834
- "tmpType": "pro",
2835
- "builder": ["elementor"],
2836
- "demoType": "templates",
2837
- "freePlugins": [
2838
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2839
- ],
2840
- "proPlugins": [
2841
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2842
- ],
2843
- "requiredtheme": ""
2844
- },
2845
- {
2846
- "id": "roofing_service_contact_us",
2847
- "shareId": "roofing service",
2848
- "title": "Contact Us",
2849
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/roofing_service_contact_us.png",
2850
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/roofing_service_contact_us.png",
2851
- "author": "HasThemes",
2852
- "url": "#",
2853
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-roofing-service/",
2854
- "category": "roofing service",
2855
- "tags": ["contact us","contact","page","roofing"],
2856
- "isPro": "1",
2857
- "tmpType": "pro",
2858
- "builder": ["elementor"],
2859
- "demoType": "templates",
2860
- "freePlugins": [
2861
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2862
- ],
2863
- "proPlugins": [
2864
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2865
- ],
2866
- "requiredtheme": ""
2867
- },
2868
- {
2869
- "id": "safari_zoo",
2870
- "shareId": "safari zoo",
2871
- "title": "Home One",
2872
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safarizoo.png",
2873
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/safarizoo.png",
2874
- "author": "HasThemes",
2875
- "url": "#",
2876
- "demoUrl": "http://demo.wphash.com/htmega/safari-zoo/",
2877
- "category": "safari zoo",
2878
- "tags": ["home page", "landing page","home","landing","safari zoo","zoo","safari"],
2879
- "isPro": "1",
2880
- "tmpType": "pro",
2881
- "builder": ["elementor"],
2882
- "demoType": "templates",
2883
- "freePlugins": [
2884
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2885
- ],
2886
- "proPlugins": [
2887
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2888
- ],
2889
- "requiredtheme": ""
2890
- },
2891
- {
2892
- "id": "safari_zoo_service",
2893
- "shareId": "safari zoo",
2894
- "title": "Service",
2895
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_service.png",
2896
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_service.png",
2897
- "author": "HasThemes",
2898
- "url": "#",
2899
- "demoUrl": "http://demo.wphash.com/htmega/service-safari-zoo/",
2900
- "category": "safari zoo",
2901
- "tags": ["service","service page","page","safari zoo","zoo","safari"],
2902
- "isPro": "1",
2903
- "tmpType": "pro",
2904
- "builder": ["elementor"],
2905
- "demoType": "templates",
2906
- "freePlugins": [
2907
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2908
- ],
2909
- "proPlugins": [
2910
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2911
- ],
2912
- "requiredtheme": ""
2913
- },
2914
- {
2915
- "id": "safari_zoo_about_us",
2916
- "shareId": "safari zoo",
2917
- "title": "About Us",
2918
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_about_us.png",
2919
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_about_us.png",
2920
- "author": "HasThemes",
2921
- "url": "#",
2922
- "demoUrl": "http://demo.wphash.com/htmega/about-us-safari-zoo/",
2923
- "category": "safari zoo",
2924
- "tags": ["about us","about","page","safari zoo","zoo","safari"],
2925
- "isPro": "1",
2926
- "tmpType": "pro",
2927
- "builder": ["elementor"],
2928
- "demoType": "templates",
2929
- "freePlugins": [
2930
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2931
- ],
2932
- "proPlugins": [
2933
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2934
- ],
2935
- "requiredtheme": ""
2936
- },
2937
- {
2938
- "id": "safari_zoo_contact_us",
2939
- "shareId": "safari zoo",
2940
- "title": "Contact Us",
2941
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/safari_zoo_contact_us.png",
2942
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/safari_zoo_contact_us.png",
2943
- "author": "HasThemes",
2944
- "url": "#",
2945
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-safari-zoo/",
2946
- "category": "safari zoo",
2947
- "tags": ["contact us","contact","page","safari zoo","zoo","safari"],
2948
- "isPro": "1",
2949
- "tmpType": "pro",
2950
- "builder": ["elementor"],
2951
- "demoType": "templates",
2952
- "freePlugins": [
2953
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2954
- ],
2955
- "proPlugins": [
2956
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2957
- ],
2958
- "requiredtheme": ""
2959
- },
2960
- {
2961
- "id": "senior_care",
2962
- "shareId": "senior care",
2963
- "title": "Home One",
2964
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care.png",
2965
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care.png",
2966
- "author": "HasThemes",
2967
- "url": "#",
2968
- "demoUrl": "http://demo.wphash.com/htmega/senior-care/",
2969
- "category": "senior care",
2970
- "tags": ["home page", "landing page","home","landing","senior care","senior","care"],
2971
- "isPro": "1",
2972
- "tmpType": "pro",
2973
- "builder": ["elementor"],
2974
- "demoType": "templates",
2975
- "freePlugins": [
2976
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
2977
- ],
2978
- "proPlugins": [
2979
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
2980
- ],
2981
- "requiredtheme": ""
2982
- },
2983
- {
2984
- "id": "senior_care_service",
2985
- "shareId": "senior care",
2986
- "title": "Service",
2987
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_service.png",
2988
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_service.png",
2989
- "author": "HasThemes",
2990
- "url": "#",
2991
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-senior-care/",
2992
- "category": "senior care",
2993
- "tags": ["Service Page","page","service","senior care","senior","care"],
2994
- "isPro": "1",
2995
- "tmpType": "pro",
2996
- "builder": ["elementor"],
2997
- "demoType": "templates",
2998
- "freePlugins": [
2999
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3000
- ],
3001
- "proPlugins": [
3002
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3003
- ],
3004
- "requiredtheme": ""
3005
- },
3006
- {
3007
- "id": "senior_care_about_us",
3008
- "shareId": "senior care",
3009
- "title": "About Us",
3010
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_about_us.png",
3011
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_about_us.png",
3012
- "author": "HasThemes",
3013
- "url": "#",
3014
- "demoUrl": "http://demo.wphash.com/htmega/about-us-senior-care/",
3015
- "category": "senior care",
3016
- "tags": ["about us page","about","page","senior care","senior","care"],
3017
- "isPro": "1",
3018
- "tmpType": "pro",
3019
- "builder": ["elementor"],
3020
- "demoType": "templates",
3021
- "freePlugins": [
3022
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3023
- ],
3024
- "proPlugins": [
3025
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3026
- ],
3027
- "requiredtheme": ""
3028
- },
3029
- {
3030
- "id": "senior_care_contact_us",
3031
- "shareId": "senior care",
3032
- "title": "Contact Us",
3033
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/senior_care_contact_us.png",
3034
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/senior_care_contact_us.png",
3035
- "author": "HasThemes",
3036
- "url": "#",
3037
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-senior-care/",
3038
- "category": "senior care",
3039
- "tags": ["Contact Us Page","contact","page","senior care","senior","care"],
3040
- "isPro": "1",
3041
- "tmpType": "pro",
3042
- "builder": ["elementor"],
3043
- "demoType": "templates",
3044
- "freePlugins": [
3045
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3046
- ],
3047
- "proPlugins": [
3048
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3049
- ],
3050
- "requiredtheme": ""
3051
- },
3052
- {
3053
- "id": "steel_factory",
3054
- "shareId": "steel factory",
3055
- "title": "Home One",
3056
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steelfactory.png",
3057
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/steelfactory.png",
3058
- "author": "HasThemes",
3059
- "url": "#",
3060
- "demoUrl": "http://demo.wphash.com/htmega/steel-factory/",
3061
- "category": "steel factory",
3062
- "tags": ["home page", "landing page","landing","home","steel","factory","steel factory"],
3063
- "isPro": "1",
3064
- "tmpType": "pro",
3065
- "builder": ["elementor"],
3066
- "demoType": "templates",
3067
- "freePlugins": [
3068
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3069
- ],
3070
- "proPlugins": [
3071
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3072
- ],
3073
- "requiredtheme": ""
3074
- },
3075
- {
3076
- "id": "steel_factory_range",
3077
- "shareId": "steel factory",
3078
- "title": "Range Page",
3079
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_range.png",
3080
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_range.png",
3081
- "author": "HasThemes",
3082
- "url": "#",
3083
- "demoUrl": "http://demo.wphash.com/htmega/our-range-steel-factory/",
3084
- "category": "steel factory",
3085
- "tags": ["range page","page","range","steel","factory","steel factory"],
3086
- "isPro": "1",
3087
- "tmpType": "pro",
3088
- "builder": ["elementor"],
3089
- "demoType": "templates",
3090
- "freePlugins": [
3091
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3092
- ],
3093
- "proPlugins": [
3094
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3095
- ],
3096
- "requiredtheme": ""
3097
- },
3098
- {
3099
- "id": "steel_factory_service",
3100
- "shareId": "steel factory",
3101
- "title": "Service",
3102
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_service.png",
3103
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_service.png",
3104
- "author": "HasThemes",
3105
- "url": "#",
3106
- "demoUrl": "http://demo.wphash.com/htmega/service-steel-factory/",
3107
- "category": "steel factory",
3108
- "tags": ["service page","service","page","steel","factory","steel factory"],
3109
- "isPro": "1",
3110
- "tmpType": "pro",
3111
- "builder": ["elementor"],
3112
- "demoType": "templates",
3113
- "freePlugins": [
3114
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3115
- ],
3116
- "proPlugins": [
3117
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3118
- ],
3119
- "requiredtheme": ""
3120
- },
3121
- {
3122
- "id": "steel_factory_about_us",
3123
- "shareId": "steel factory",
3124
- "title": "About Us",
3125
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_about_us.png",
3126
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_about_us.png",
3127
- "author": "HasThemes",
3128
- "url": "#",
3129
- "demoUrl": "http://demo.wphash.com/htmega/about-us-steel-factory/",
3130
- "category": "steel factory",
3131
- "tags": ["about us page","about","page","steel","factory","steel factory"],
3132
- "isPro": "1",
3133
- "tmpType": "pro",
3134
- "builder": ["elementor"],
3135
- "demoType": "templates",
3136
- "freePlugins": [
3137
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3138
- ],
3139
- "proPlugins": [
3140
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3141
- ],
3142
- "requiredtheme": ""
3143
- },
3144
- {
3145
- "id": "steel_factory_contact_us",
3146
- "shareId": "steel factory",
3147
- "title": "Contact Us",
3148
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/steel_factory_contact_us.png",
3149
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/steel_factory_contact_us.png",
3150
- "author": "HasThemes",
3151
- "url": "#",
3152
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-steel-factory/",
3153
- "category": "steel factory",
3154
- "tags": ["contact us page","contact","page","steel","factory","steel factory"],
3155
- "isPro": "1",
3156
- "tmpType": "pro",
3157
- "builder": ["elementor"],
3158
- "demoType": "templates",
3159
- "freePlugins": [
3160
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3161
- ],
3162
- "proPlugins": [
3163
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3164
- ],
3165
- "requiredtheme": ""
3166
- },
3167
- {
3168
- "id": "tailoring",
3169
- "shareId": "tailoring",
3170
- "title": "Home One",
3171
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring.png",
3172
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring.png",
3173
- "author": "HasThemes",
3174
- "url": "#",
3175
- "demoUrl": "http://demo.wphash.com/htmega/tailoring/",
3176
- "category": "tailoring",
3177
- "tags": ["home page", "landing page","landing","home","tailoring"],
3178
- "isPro": "1",
3179
- "tmpType": "pro",
3180
- "builder": ["elementor"],
3181
- "demoType": "templates",
3182
- "freePlugins": [
3183
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3184
- ],
3185
- "proPlugins": [
3186
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3187
- ],
3188
- "requiredtheme": ""
3189
- },
3190
- {
3191
- "id": "tailoring_service",
3192
- "shareId": "tailoring",
3193
- "title": "Service",
3194
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_service.png",
3195
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_service.png",
3196
- "author": "HasThemes",
3197
- "url": "#",
3198
- "demoUrl": "http://demo.wphash.com/htmega/service-tailoring/",
3199
- "category": "tailoring",
3200
- "tags": ["service page","service","page","tailoring"],
3201
- "isPro": "1",
3202
- "tmpType": "pro",
3203
- "builder": ["elementor"],
3204
- "demoType": "templates",
3205
- "freePlugins": [
3206
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3207
- ],
3208
- "proPlugins": [
3209
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3210
- ],
3211
- "requiredtheme": ""
3212
- },
3213
- {
3214
- "id": "tailoring_about_us",
3215
- "shareId": "tailoring",
3216
- "title": "About Us",
3217
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_about_us.png",
3218
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_about_us.png",
3219
- "author": "HasThemes",
3220
- "url": "#",
3221
- "demoUrl": "http://demo.wphash.com/htmega/about-us-tailoring/",
3222
- "category": "tailoring",
3223
- "tags": ["about us page","about","page","tailoring"],
3224
- "isPro": "1",
3225
- "tmpType": "pro",
3226
- "builder": ["elementor"],
3227
- "demoType": "templates",
3228
- "freePlugins": [
3229
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3230
- ],
3231
- "proPlugins": [
3232
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3233
- ],
3234
- "requiredtheme": ""
3235
- },
3236
- {
3237
- "id": "tailoring_contact_us",
3238
- "shareId": "tailoring",
3239
- "title": "Contact Us",
3240
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tailoring_contact_us.png",
3241
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tailoring_contact_us.png",
3242
- "author": "HasThemes",
3243
- "url": "#",
3244
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-tailoring/",
3245
- "category": "tailoring",
3246
- "tags": ["contact us page","contact","page","tailoring"],
3247
- "isPro": "1",
3248
- "tmpType": "pro",
3249
- "builder": ["elementor"],
3250
- "demoType": "templates",
3251
- "freePlugins": [
3252
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3253
- ],
3254
- "proPlugins": [
3255
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3256
- ],
3257
- "requiredtheme": ""
3258
- },
3259
- {
3260
- "id": "transport",
3261
- "shareId": "transport",
3262
- "title": "Home One",
3263
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport.png",
3264
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport.png",
3265
- "author": "HasThemes",
3266
- "url": "#",
3267
- "demoUrl": "http://demo.wphash.com/htmega/transport/",
3268
- "category": "transport",
3269
- "tags": ["home page", "landing page","home","landing","transport"],
3270
- "isPro": "1",
3271
- "tmpType": "pro",
3272
- "builder": ["elementor"],
3273
- "demoType": "templates",
3274
- "freePlugins": [
3275
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3276
- ],
3277
- "proPlugins": [
3278
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3279
- ],
3280
- "requiredtheme": ""
3281
- },
3282
- {
3283
- "id": "transport_service",
3284
- "shareId": "transport",
3285
- "title": "Service",
3286
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_service.png",
3287
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_service.png",
3288
- "author": "HasThemes",
3289
- "url": "#",
3290
- "demoUrl": "http://demo.wphash.com/htmega/service-transport/",
3291
- "category": "transport",
3292
- "tags": ["service page","service","page","transport"],
3293
- "isPro": "1",
3294
- "tmpType": "pro",
3295
- "builder": ["elementor"],
3296
- "demoType": "templates",
3297
- "freePlugins": [
3298
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3299
- ],
3300
- "proPlugins": [
3301
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3302
- ],
3303
- "requiredtheme": ""
3304
- },
3305
- {
3306
- "id": "transport_about_us",
3307
- "shareId": "transport",
3308
- "title": "About Us",
3309
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_about_us.png",
3310
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_about_us.png",
3311
- "author": "HasThemes",
3312
- "url": "#",
3313
- "demoUrl": "http://demo.wphash.com/htmega/transport/",
3314
- "category": "transport",
3315
- "tags": ["about us page","about","page","transport"],
3316
- "isPro": "1",
3317
- "tmpType": "pro",
3318
- "builder": ["elementor"],
3319
- "demoType": "templates",
3320
- "freePlugins": [
3321
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3322
- ],
3323
- "proPlugins": [
3324
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3325
- ],
3326
- "requiredtheme": ""
3327
- },
3328
- {
3329
- "id": "transport_contact_us",
3330
- "shareId": "transport",
3331
- "title": "Contact Us",
3332
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/transport_contact_us.png",
3333
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/transport_contact_us.png",
3334
- "author": "HasThemes",
3335
- "url": "#",
3336
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-transport/",
3337
- "category": "transport",
3338
- "tags": ["contact us page","contact","page","transport"],
3339
- "isPro": "1",
3340
- "tmpType": "pro",
3341
- "builder": ["elementor"],
3342
- "demoType": "templates",
3343
- "freePlugins": [
3344
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3345
- ],
3346
- "proPlugins": [
3347
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3348
- ],
3349
- "requiredtheme": ""
3350
- },
3351
- {
3352
- "id": "yacht_boat_rental",
3353
- "shareId": "yacht boat rental",
3354
- "title": "Home",
3355
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yachtboatrental.png",
3356
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/yachtboatrental.png",
3357
- "author": "HasThemes",
3358
- "url": "#",
3359
- "demoUrl": "http://demo.wphash.com/htmega/yacht-boat-rental/",
3360
- "category": "yacht boat rental",
3361
- "tags": ["home page", "landing page","landing","home","yacht boat rental","yacht","boat","rental"],
3362
- "isPro": "1",
3363
- "tmpType": "pro",
3364
- "builder": ["elementor"],
3365
- "demoType": "templates",
3366
- "freePlugins": [
3367
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3368
- ],
3369
- "proPlugins": [
3370
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3371
- ],
3372
- "requiredtheme": ""
3373
- },
3374
- {
3375
- "id": "yacht_service",
3376
- "shareId": "yacht boat rental",
3377
- "title": "Service",
3378
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_service.png",
3379
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_service.png",
3380
- "author": "HasThemes",
3381
- "url": "#",
3382
- "demoUrl": "http://demo.wphash.com/htmega/service-yacht-and-boat-rental/",
3383
- "category": "yacht boat rental",
3384
- "tags": ["service page","service","page","yacht boat rental","yacht","boat","rental"],
3385
- "isPro": "1",
3386
- "tmpType": "pro",
3387
- "builder": ["elementor"],
3388
- "demoType": "templates",
3389
- "freePlugins": [
3390
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3391
- ],
3392
- "proPlugins": [
3393
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3394
- ],
3395
- "requiredtheme": ""
3396
- },
3397
- {
3398
- "id": "yacht_about_us",
3399
- "shareId": "yacht boat rental",
3400
- "title": "About Us",
3401
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_about_us.png",
3402
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_about_us.png",
3403
- "author": "HasThemes",
3404
- "url": "#",
3405
- "demoUrl": "http://demo.wphash.com/htmega/about-us-yacht-and-boat-rental/",
3406
- "category": "yacht boat rental",
3407
- "tags": ["about us page","about","page","yacht boat rental","yacht","boat","rental"],
3408
- "isPro": "1",
3409
- "tmpType": "pro",
3410
- "builder": ["elementor"],
3411
- "demoType": "templates",
3412
- "freePlugins": [
3413
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3414
- ],
3415
- "proPlugins": [
3416
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3417
- ],
3418
- "requiredtheme": ""
3419
- },
3420
- {
3421
- "id": "yacht_contact_us",
3422
- "shareId": "yacht boat rental",
3423
- "title": "Contact Us",
3424
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yacht_contact_us.png",
3425
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/yacht_contact_us.png",
3426
- "author": "HasThemes",
3427
- "url": "#",
3428
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-yacht-and-boat-rental/",
3429
- "category": "yacht boat rental",
3430
- "tags": ["contact us page","contact","page","yacht boat rental","yacht","boat","rental"],
3431
- "isPro": "1",
3432
- "tmpType": "pro",
3433
- "builder": ["elementor"],
3434
- "demoType": "templates",
3435
- "freePlugins": [
3436
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3437
- ],
3438
- "proPlugins": [
3439
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3440
- ],
3441
- "requiredtheme": ""
3442
- },
3443
- {
3444
- "id": "yoga",
3445
- "shareId": "yoga",
3446
- "title": "Home One",
3447
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga.png",
3448
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga.png",
3449
- "author": "HasThemes",
3450
- "url": "#",
3451
- "demoUrl": "http://demo.wphash.com/htmega/yoga/",
3452
- "category": "yoga",
3453
- "tags": ["home page", "landing page","home","page","yoga"],
3454
- "isPro": "1",
3455
- "tmpType": "pro",
3456
- "builder": ["elementor"],
3457
- "demoType": "templates",
3458
- "freePlugins": [
3459
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3460
- ],
3461
- "proPlugins": [
3462
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3463
- ],
3464
- "requiredtheme": ""
3465
- },
3466
- {
3467
- "id": "yoga_classes",
3468
- "shareId": "yoga",
3469
- "title": "Classes",
3470
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_classes.png",
3471
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_classes.png",
3472
- "author": "HasThemes",
3473
- "url": "#",
3474
- "demoUrl": "http://demo.wphash.com/htmega/classes-yoga/",
3475
- "category": "yoga",
3476
- "tags": ["Classes Page","page","classes","yoga"],
3477
- "isPro": "1",
3478
- "tmpType": "pro",
3479
- "builder": ["elementor"],
3480
- "demoType": "templates",
3481
- "freePlugins": [
3482
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3483
- ],
3484
- "proPlugins": [
3485
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3486
- ],
3487
- "requiredtheme": ""
3488
- },
3489
- {
3490
- "id": "yoga_about_us",
3491
- "shareId": "yoga",
3492
- "title": "About Us",
3493
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_about_us.png",
3494
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_about_us.png",
3495
- "author": "HasThemes",
3496
- "url": "#",
3497
- "demoUrl": "http://demo.wphash.com/htmega/about-us-yoga/",
3498
- "category": "yoga",
3499
- "tags": ["about us page","about","page","yoga"],
3500
- "isPro": "1",
3501
- "tmpType": "pro",
3502
- "builder": ["elementor"],
3503
- "demoType": "templates",
3504
- "freePlugins": [
3505
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3506
- ],
3507
- "proPlugins": [
3508
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3509
- ],
3510
- "requiredtheme": ""
3511
- },
3512
- {
3513
- "id": "yoga_contact_us",
3514
- "shareId": "yoga",
3515
- "title": "Contact Us",
3516
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/yoga_contact_us.png",
3517
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/yoga_contact_us.png",
3518
- "author": "HasThemes",
3519
- "url": "#",
3520
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-yoga/",
3521
- "category": "yoga",
3522
- "tags": ["contact us page","contact","page","yoga"],
3523
- "isPro": "1",
3524
- "tmpType": "pro",
3525
- "builder": ["elementor"],
3526
- "demoType": "templates",
3527
- "freePlugins": [
3528
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3529
- ],
3530
- "proPlugins": [
3531
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3532
- ],
3533
- "requiredtheme": ""
3534
- },
3535
- {
3536
- "id": "interior_design_home",
3537
- "shareId": "interior design",
3538
- "title": "Home One",
3539
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_home.png",
3540
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_home.png",
3541
- "author": "HasThemes",
3542
- "url": "#",
3543
- "demoUrl": "http://demo.wphash.com/htmega/interior-design/",
3544
- "category": "interior design",
3545
- "tags": ["home page", "landing page","home","page","design","interior","interior design"],
3546
- "isPro": "1",
3547
- "tmpType": "pro",
3548
- "builder": ["elementor"],
3549
- "demoType": "templates",
3550
- "freePlugins": [
3551
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3552
- ],
3553
- "proPlugins": [
3554
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3555
- ],
3556
- "requiredtheme": ""
3557
- },
3558
- {
3559
- "id": "interior_design_service",
3560
- "shareId": "interior design",
3561
- "title": "Service",
3562
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_service.png",
3563
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_service.png",
3564
- "author": "HasThemes",
3565
- "url": "#",
3566
- "demoUrl": "http://demo.wphash.com/htmega/service-interior-design/",
3567
- "category": "interior design",
3568
- "tags": ["service page","service","page","design","interior","interior design"],
3569
- "isPro": "1",
3570
- "tmpType": "pro",
3571
- "builder": ["elementor"],
3572
- "demoType": "templates",
3573
- "freePlugins": [
3574
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3575
- ],
3576
- "proPlugins": [
3577
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3578
- ],
3579
- "requiredtheme": ""
3580
- },
3581
- {
3582
- "id": "interior_design_contact_us",
3583
- "shareId": "interior design",
3584
- "title": "Contact Us",
3585
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_contact_us.png",
3586
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_contact_us.png",
3587
- "author": "HasThemes",
3588
- "url": "#",
3589
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-interior-design/",
3590
- "category": "interior design",
3591
- "tags": ["contact us page","contact","page","design","interior","interior design"],
3592
- "isPro": "1",
3593
- "tmpType": "pro",
3594
- "builder": ["elementor"],
3595
- "demoType": "templates",
3596
- "freePlugins": [
3597
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3598
- ],
3599
- "proPlugins": [
3600
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3601
- ],
3602
- "requiredtheme": ""
3603
- },
3604
- {
3605
- "id": "interior_design_about_us",
3606
- "shareId": "interior design",
3607
- "title": "About Us",
3608
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/interior_design_about_us.png",
3609
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/interior_design_about_us.png",
3610
- "author": "HasThemes",
3611
- "url": "#",
3612
- "demoUrl": "http://demo.wphash.com/htmega/about-us-interior-design/",
3613
- "category": "interior design",
3614
- "tags": ["about us page","about","page","design","interior","interior design"],
3615
- "isPro": "1",
3616
- "tmpType": "pro",
3617
- "builder": ["elementor"],
3618
- "demoType": "templates",
3619
- "freePlugins": [
3620
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3621
- ],
3622
- "proPlugins": [
3623
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3624
- ],
3625
- "requiredtheme": ""
3626
- },
3627
- {
3628
- "id": "bakery_home",
3629
- "shareId": "bakery",
3630
- "title": "Home One",
3631
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_home.png",
3632
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_home.png",
3633
- "author": "HasThemes",
3634
- "url": "#",
3635
- "demoUrl": "http://demo.wphash.com/htmega/bakery/",
3636
- "category": "bakery",
3637
- "tags": ["home page", "landing page","home","page","bakery"],
3638
- "isPro": "1",
3639
- "tmpType": "pro",
3640
- "builder": ["elementor"],
3641
- "demoType": "templates",
3642
- "freePlugins": [
3643
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3644
- ],
3645
- "proPlugins": [
3646
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3647
- ],
3648
- "requiredtheme": ""
3649
- },
3650
- {
3651
- "id": "bakery_service",
3652
- "shareId": "bakery",
3653
- "title": "Service",
3654
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_service.png",
3655
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_service.png",
3656
- "author": "HasThemes",
3657
- "url": "#",
3658
- "demoUrl": "http://demo.wphash.com/htmega/service-bakery/",
3659
- "category": "bakery",
3660
- "tags": ["service page","service","page","bakery"],
3661
- "isPro": "1",
3662
- "tmpType": "pro",
3663
- "builder": ["elementor"],
3664
- "demoType": "templates",
3665
- "freePlugins": [
3666
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3667
- ],
3668
- "proPlugins": [
3669
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3670
- ],
3671
- "requiredtheme": ""
3672
- },
3673
- {
3674
- "id": "bakery_about_us",
3675
- "shareId": "bakery",
3676
- "title": "About Us",
3677
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_about_us.png",
3678
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_about_us.png",
3679
- "author": "HasThemes",
3680
- "url": "#",
3681
- "demoUrl": "http://demo.wphash.com/htmega/about-us-bakery/",
3682
- "category": "bakery",
3683
- "tags": ["about us page","about","page","bakery"],
3684
- "isPro": "1",
3685
- "tmpType": "pro",
3686
- "builder": ["elementor"],
3687
- "demoType": "templates",
3688
- "freePlugins": [
3689
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3690
- ],
3691
- "proPlugins": [
3692
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3693
- ],
3694
- "requiredtheme": ""
3695
-
3696
- },
3697
- {
3698
- "id": "bakery_contact_us",
3699
- "shareId": "bakery",
3700
- "title": "Contact Us",
3701
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/bakery_contact_us.png",
3702
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/bakery_contact_us.png",
3703
- "author": "HasThemes",
3704
- "url": "#",
3705
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-bakery/",
3706
- "category": "bakery",
3707
- "tags": ["contact us page","contact","page","bakery"],
3708
- "isPro": "1",
3709
- "tmpType": "pro",
3710
- "builder": ["elementor"],
3711
- "demoType": "templates",
3712
- "freePlugins": [
3713
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3714
- ],
3715
- "proPlugins": [
3716
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3717
- ],
3718
- "requiredtheme": ""
3719
- },
3720
- {
3721
- "id": "pool_home",
3722
- "shareId": "pool service",
3723
- "title": "Home One",
3724
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_home.png",
3725
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_home.png",
3726
- "author": "HasThemes",
3727
- "url": "#",
3728
- "demoUrl": "http://demo.wphash.com/htmega/pool-service/",
3729
- "category": "pool service",
3730
- "tags": ["home page, landing page","page","home","pool"],
3731
- "isPro": "1",
3732
- "tmpType": "pro",
3733
- "builder": ["elementor"],
3734
- "demoType": "templates",
3735
- "freePlugins": [
3736
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3737
- ],
3738
- "proPlugins": [
3739
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3740
- ],
3741
- "requiredtheme": ""
3742
- },
3743
- {
3744
- "id": "pool_service",
3745
- "shareId": "pool service",
3746
- "title": "Service",
3747
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_service.png",
3748
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_service.png",
3749
- "author": "HasThemes",
3750
- "url": "#",
3751
- "demoUrl": "http://demo.wphash.com/htmega/service-pool-service/",
3752
- "category": "pool service",
3753
- "tags": ["service page","service","page","pool"],
3754
- "isPro": "1",
3755
- "tmpType": "pro",
3756
- "builder": ["elementor"],
3757
- "demoType": "templates",
3758
- "freePlugins": [
3759
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3760
- ],
3761
- "proPlugins": [
3762
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3763
- ],
3764
- "requiredtheme": ""
3765
- },
3766
- {
3767
- "id": "pool_about_us",
3768
- "shareId": "pool service",
3769
- "title": "About Us",
3770
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_about_us.png",
3771
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_about_us.png",
3772
- "author": "HasThemes",
3773
- "url": "#",
3774
- "demoUrl": "http://demo.wphash.com/htmega/about-us-pool-service/",
3775
- "category": "pool service",
3776
- "tags": ["about us page","page","about","pool"],
3777
- "isPro": "1",
3778
- "tmpType": "pro",
3779
- "builder": ["elementor"],
3780
- "demoType": "templates",
3781
- "freePlugins": [
3782
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3783
- ],
3784
- "proPlugins": [
3785
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3786
- ],
3787
- "requiredtheme": ""
3788
- },
3789
- {
3790
- "id": "pool_contact_us",
3791
- "shareId": "pool service",
3792
- "title": "Contact Us",
3793
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pool_contact_us.png",
3794
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pool_contact_us.png",
3795
- "author": "HasThemes",
3796
- "url": "#",
3797
- "demoUrl": "http://demo.wphash.com/htmega/contact-us-pool-service/",
3798
- "category": "pool service",
3799
- "tags": ["contact us page","contact","page","pool"],
3800
- "isPro": "1",
3801
- "tmpType": "pro",
3802
- "builder": ["elementor"],
3803
- "demoType": "templates",
3804
- "freePlugins": [
3805
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3806
- ],
3807
- "proPlugins": [
3808
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3809
- ],
3810
- "requiredtheme": ""
3811
- },
3812
- {
3813
- "id": "accordion_style_1",
3814
- "shareId": "accordion",
3815
- "title": "Accordion Style 1 (Icon Left )",
3816
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_1.png",
3817
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_1.png",
3818
- "author": "HasThemes",
3819
- "url": "#",
3820
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
3821
- "category": "blocks",
3822
- "tags": ["accordion","block"],
3823
- "isPro": "1",
3824
- "tmpType": "pro",
3825
- "builder": ["elementor"],
3826
- "demoType": "blocks",
3827
- "freePlugins": [
3828
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3829
- ],
3830
- "proPlugins": [
3831
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3832
- ],
3833
- "requiredtheme": ""
3834
- },
3835
- {
3836
- "id": "accordion_style_2",
3837
- "shareId": "accordion",
3838
- "title": "Accordion Style 1 (Icon Right )",
3839
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_2.png",
3840
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_2.png",
3841
- "author": "HasThemes",
3842
- "url": "#",
3843
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
3844
- "category": "blocks",
3845
- "tags": ["accordion","block"],
3846
- "isPro": "1",
3847
- "tmpType": "pro",
3848
- "builder": ["elementor"],
3849
- "demoType": "blocks",
3850
- "freePlugins": [
3851
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3852
- ],
3853
- "proPlugins": [
3854
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3855
- ],
3856
- "requiredtheme": ""
3857
- },
3858
- {
3859
- "id": "accordion_style_3",
3860
- "shareId": "accordion",
3861
- "title": "Accordion Style 1 ( Elementor Template )",
3862
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_3.png",
3863
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_3.png",
3864
- "author": "HasThemes",
3865
- "url": "#",
3866
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
3867
- "category": "blocks",
3868
- "tags": ["accordion","block"],
3869
- "isPro": "1",
3870
- "tmpType": "pro",
3871
- "builder": ["elementor"],
3872
- "demoType": "blocks",
3873
- "freePlugins": [
3874
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3875
- ],
3876
- "proPlugins": [
3877
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3878
- ],
3879
- "requiredtheme": ""
3880
- },
3881
- {
3882
- "id": "accordion_style_4",
3883
- "shareId": "accordion",
3884
- "title": "Accordion Style 1 ( Round Shape)",
3885
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_4.png",
3886
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_4.png",
3887
- "author": "HasThemes",
3888
- "url": "#",
3889
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
3890
- "category": "blocks",
3891
- "tags": ["accordion","block"],
3892
- "isPro": "1",
3893
- "tmpType": "pro",
3894
- "builder": ["elementor"],
3895
- "demoType": "blocks",
3896
- "freePlugins": [
3897
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3898
- ],
3899
- "proPlugins": [
3900
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3901
- ],
3902
- "requiredtheme": ""
3903
- },
3904
- {
3905
- "id": "accordion_style_5",
3906
- "shareId": "accordion",
3907
- "title": "Accordion Style 1 (Transparent)",
3908
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_5.png",
3909
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_5.png",
3910
- "author": "HasThemes",
3911
- "url": "#",
3912
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
3913
- "category": "blocks",
3914
- "tags": ["accordion","block"],
3915
- "isPro": "1",
3916
- "tmpType": "pro",
3917
- "builder": ["elementor"],
3918
- "demoType": "blocks",
3919
- "freePlugins": [
3920
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3921
- ],
3922
- "proPlugins": [
3923
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3924
- ],
3925
- "requiredtheme": ""
3926
- },
3927
- {
3928
- "id": "accordion_style_6",
3929
- "shareId": "accordion",
3930
- "title": "Accordion Style 1 (Box Shadow)",
3931
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_6.png",
3932
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_6.png",
3933
- "author": "HasThemes",
3934
- "url": "#",
3935
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
3936
- "category": "blocks",
3937
- "tags": ["accordion","block"],
3938
- "isPro": "1",
3939
- "tmpType": "pro",
3940
- "builder": ["elementor"],
3941
- "demoType": "blocks",
3942
- "freePlugins": [
3943
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3944
- ],
3945
- "proPlugins": [
3946
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3947
- ],
3948
- "requiredtheme": ""
3949
- },
3950
- {
3951
- "id": "accordion_style_7",
3952
- "shareId": "accordion",
3953
- "title": "Accordion Image Gallery - Style 2",
3954
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_7.png",
3955
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_7.png",
3956
- "author": "HasThemes",
3957
- "url": "#",
3958
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
3959
- "category": "blocks",
3960
- "tags": ["accordion","block"],
3961
- "isPro": "1",
3962
- "tmpType": "pro",
3963
- "builder": ["elementor"],
3964
- "demoType": "blocks",
3965
- "freePlugins": [
3966
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3967
- ],
3968
- "proPlugins": [
3969
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3970
- ],
3971
- "requiredtheme": ""
3972
- },
3973
- {
3974
- "id": "accordion_style_8",
3975
- "shareId": "accordion",
3976
- "title": "Image Accordion (Vertical) - Style 3",
3977
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_8.png",
3978
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_8.png",
3979
- "author": "HasThemes",
3980
- "url": "#",
3981
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
3982
- "category": "blocks",
3983
- "tags": ["accordion","block"],
3984
- "isPro": "1",
3985
- "tmpType": "pro",
3986
- "builder": ["elementor"],
3987
- "demoType": "blocks",
3988
- "freePlugins": [
3989
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
3990
- ],
3991
- "proPlugins": [
3992
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
3993
- ],
3994
- "requiredtheme": ""
3995
- },
3996
- {
3997
- "id": "accordion_style_9",
3998
- "shareId": "accordion",
3999
- "title": "Image Accordion (Horizontal) - Style 4",
4000
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/accordion_style_9.png",
4001
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/accordion_style_9.png",
4002
- "author": "HasThemes",
4003
- "url": "#",
4004
- "demoUrl": "http://demo.wphash.com/htmega/element-accordion/",
4005
- "category": "blocks",
4006
- "tags": ["accordion","block"],
4007
- "isPro": "1",
4008
- "tmpType": "pro",
4009
- "builder": ["elementor"],
4010
- "demoType": "blocks",
4011
- "freePlugins": [
4012
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4013
- ],
4014
- "proPlugins": [
4015
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4016
- ],
4017
- "requiredtheme": ""
4018
- },
4019
- {
4020
- "id": "animated_heading_style_1",
4021
- "shareId": "animated-heading",
4022
- "title": "Animated Heading Style One",
4023
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_1.png",
4024
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_1.png",
4025
- "author": "HasThemes",
4026
- "url": "#",
4027
- "demoUrl": "http://demo.wphash.com/htmega/element-animated-heading/",
4028
- "category": "blocks",
4029
- "tags": ["animated heading","animated","animate","heading","block"],
4030
- "isPro": "1",
4031
- "tmpType": "pro",
4032
- "builder": ["elementor"],
4033
- "demoType": "blocks",
4034
- "freePlugins": [
4035
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4036
- ],
4037
- "proPlugins": [
4038
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4039
- ],
4040
- "requiredtheme": ""
4041
- },
4042
- {
4043
- "id": "animated_heading_style_2",
4044
- "shareId": "animated-heading",
4045
- "title": "Animated Heading Style Two",
4046
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_2.png",
4047
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_2.png",
4048
- "author": "HasThemes",
4049
- "url": "#",
4050
- "demoUrl": "http://demo.wphash.com/htmega/element-animated-heading/",
4051
- "category": "blocks",
4052
- "tags": ["animated heading","animated","animate","heading","block"],
4053
- "isPro": "1",
4054
- "tmpType": "pro",
4055
- "builder": ["elementor"],
4056
- "demoType": "blocks",
4057
- "freePlugins": [
4058
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4059
- ],
4060
- "proPlugins": [
4061
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4062
- ],
4063
- "requiredtheme": ""
4064
- },
4065
- {
4066
- "id": "animated_heading_style_3",
4067
- "shareId": "animated-heading",
4068
- "title": "Animated Heading Style Three",
4069
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_3.png",
4070
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_3.png",
4071
- "author": "HasThemes",
4072
- "url": "#",
4073
- "demoUrl": "http://demo.wphash.com/htmega/element-animated-heading/",
4074
- "category": "blocks",
4075
- "tags": ["animated heading","animated","animate","heading","block"],
4076
- "isPro": "1",
4077
- "tmpType": "pro",
4078
- "builder": ["elementor"],
4079
- "demoType": "blocks",
4080
- "freePlugins": [
4081
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4082
- ],
4083
- "proPlugins": [
4084
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4085
- ],
4086
- "requiredtheme": ""
4087
- },
4088
- {
4089
- "id": "animated_heading_style_4",
4090
- "shareId": "animated-heading",
4091
- "title": "Animated Heading Style Four",
4092
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_4.png",
4093
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_4.png",
4094
- "author": "HasThemes",
4095
- "url": "#",
4096
- "demoUrl": "http://demo.wphash.com/htmega/element-animated-heading/",
4097
- "category": "blocks",
4098
- "tags": ["animated heading","animated","animate","heading","block"],
4099
- "isPro": "1",
4100
- "tmpType": "pro",
4101
- "builder": ["elementor"],
4102
- "demoType": "blocks",
4103
- "freePlugins": [
4104
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4105
- ],
4106
- "proPlugins": [
4107
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4108
- ],
4109
- "requiredtheme": ""
4110
- },
4111
- {
4112
- "id": "animated_heading_style_5",
4113
- "shareId": "animated-heading",
4114
- "title": "Animated Heading Style Five",
4115
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_5.png",
4116
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_5.png",
4117
- "author": "HasThemes",
4118
- "url": "#",
4119
- "demoUrl": "http://demo.wphash.com/htmega/element-animated-heading/",
4120
- "category": "blocks",
4121
- "tags": ["animated heading","animated","animate","heading","block"],
4122
- "isPro": "1",
4123
- "tmpType": "pro",
4124
- "builder": ["elementor"],
4125
- "demoType": "blocks",
4126
- "freePlugins": [
4127
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4128
- ],
4129
- "proPlugins": [
4130
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4131
- ],
4132
- "requiredtheme": ""
4133
- },
4134
- {
4135
- "id": "animated_heading_style_6",
4136
- "shareId": "animated-heading",
4137
- "title": "Animated Heading Style Six",
4138
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_6.png",
4139
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_6.png",
4140
- "author": "HasThemes",
4141
- "url": "#",
4142
- "demoUrl": "http://demo.wphash.com/htmega/element-animated-heading/",
4143
- "category": "blocks",
4144
- "tags": ["animated heading","animated","animate","heading","block"],
4145
- "isPro": "1",
4146
- "tmpType": "pro",
4147
- "builder": ["elementor"],
4148
- "demoType": "blocks",
4149
- "freePlugins": [
4150
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4151
- ],
4152
- "proPlugins": [
4153
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4154
- ],
4155
- "requiredtheme": ""
4156
- },
4157
- {
4158
- "id": "animated_heading_style_7",
4159
- "shareId": "animated-heading",
4160
- "title": "Animated Heading Style Seven",
4161
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/animated_heading_style_7.png",
4162
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/animated_heading_style_7.png",
4163
- "author": "HasThemes",
4164
- "url": "#",
4165
- "demoUrl": "http://demo.wphash.com/htmega/element-animated-heading/",
4166
- "category": "blocks",
4167
- "tags": ["animated heading","animated","animate","heading","block"],
4168
- "isPro": "1",
4169
- "tmpType": "pro",
4170
- "builder": ["elementor"],
4171
- "demoType": "blocks",
4172
- "freePlugins": [
4173
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4174
- ],
4175
- "proPlugins": [
4176
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4177
- ],
4178
- "requiredtheme": ""
4179
- },
4180
- {
4181
- "id": "banner_style_1",
4182
- "shareId": "banner",
4183
- "title": "Banner Default Style",
4184
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_1.png",
4185
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_1.png",
4186
- "author": "HasThemes",
4187
- "url": "#",
4188
- "demoUrl": "http://demo.wphash.com/htmega/element-banner/",
4189
- "category": "blocks",
4190
- "tags": ["banner","block","add banner"],
4191
- "isPro": "1",
4192
- "tmpType": "pro",
4193
- "builder": ["elementor"],
4194
- "demoType": "blocks",
4195
- "freePlugins": [
4196
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4197
- ],
4198
- "proPlugins": [
4199
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4200
- ],
4201
- "requiredtheme": ""
4202
- },
4203
- {
4204
- "id": "banner_style_2",
4205
- "shareId": "banner",
4206
- "title": "Banner Style Two",
4207
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_2.png",
4208
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_2.png",
4209
- "author": "HasThemes",
4210
- "url": "#",
4211
- "demoUrl": "http://demo.wphash.com/htmega/element-banner/",
4212
- "category": "blocks",
4213
- "tags": ["banner","block","add banner"],
4214
- "isPro": "1",
4215
- "tmpType": "pro",
4216
- "builder": ["elementor"],
4217
- "demoType": "blocks",
4218
- "freePlugins": [
4219
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4220
- ],
4221
- "proPlugins": [
4222
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4223
- ],
4224
- "requiredtheme": ""
4225
- },
4226
- {
4227
- "id": "banner_style_3",
4228
- "shareId": "banner",
4229
- "title": "Banner Style Three",
4230
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_3.png",
4231
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_3.png",
4232
- "author": "HasThemes",
4233
- "url": "#",
4234
- "demoUrl": "http://demo.wphash.com/htmega/element-banner/",
4235
- "category": "blocks",
4236
- "tags": ["banner","block","add banner"],
4237
- "isPro": "1",
4238
- "tmpType": "pro",
4239
- "builder": ["elementor"],
4240
- "demoType": "blocks",
4241
- "freePlugins": [
4242
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4243
- ],
4244
- "proPlugins": [
4245
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4246
- ],
4247
- "requiredtheme": ""
4248
- },
4249
- {
4250
- "id": "banner_style_4",
4251
- "shareId": "banner",
4252
- "title": "Banner Style Four",
4253
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/banner_style_4.png",
4254
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/banner_style_4.png",
4255
- "author": "HasThemes",
4256
- "url": "#",
4257
- "demoUrl": "http://demo.wphash.com/htmega/element-banner/",
4258
- "category": "blocks",
4259
- "tags": ["banner","block","add banner"],
4260
- "isPro": "1",
4261
- "tmpType": "pro",
4262
- "builder": ["elementor"],
4263
- "demoType": "blocks",
4264
- "freePlugins": [
4265
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4266
- ],
4267
- "proPlugins": [
4268
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4269
- ],
4270
- "requiredtheme": ""
4271
- },
4272
- {
4273
- "id": "blockquote_style_1",
4274
- "shareId": "blockquote",
4275
- "title": "Blockquote Style One",
4276
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_1.png",
4277
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_1.png",
4278
- "author": "HasThemes",
4279
- "url": "#",
4280
- "demoUrl": "http://demo.wphash.com/htmega/element-blockquote/",
4281
- "category": "blocks",
4282
- "tags": ["blockquote","blocks","quote"],
4283
- "isPro": "1",
4284
- "tmpType": "pro",
4285
- "builder": ["elementor"],
4286
- "demoType": "blocks",
4287
- "freePlugins": [
4288
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4289
- ],
4290
- "proPlugins": [
4291
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4292
- ],
4293
- "requiredtheme": ""
4294
- },
4295
- {
4296
- "id": "blockquote_style_2",
4297
- "shareId": "blockquote",
4298
- "title": "Blockquote Style Two",
4299
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_2.png",
4300
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_2.png",
4301
- "author": "HasThemes",
4302
- "url": "#",
4303
- "demoUrl": "http://demo.wphash.com/htmega/element-blockquote/",
4304
- "category": "blocks",
4305
- "tags": ["blockquote","blocks","quote"],
4306
- "isPro": "1",
4307
- "tmpType": "pro",
4308
- "builder": ["elementor"],
4309
- "demoType": "blocks",
4310
- "freePlugins": [
4311
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4312
- ],
4313
- "proPlugins": [
4314
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4315
- ],
4316
- "requiredtheme": ""
4317
- },
4318
- {
4319
- "id": "blockquote_style_3",
4320
- "shareId": "blockquote",
4321
- "title": "Blockquote Style Three",
4322
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_3.png",
4323
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_3.png",
4324
- "author": "HasThemes",
4325
- "url": "#",
4326
- "demoUrl": "http://demo.wphash.com/htmega/element-blockquote/",
4327
- "category": "blocks",
4328
- "tags": ["blockquote","blocks","quote"],
4329
- "isPro": "1",
4330
- "tmpType": "pro",
4331
- "builder": ["elementor"],
4332
- "demoType": "blocks",
4333
- "freePlugins": [
4334
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4335
- ],
4336
- "proPlugins": [
4337
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4338
- ],
4339
- "requiredtheme": ""
4340
- },
4341
- {
4342
- "id": "blockquote_style_4",
4343
- "shareId": "blockquote",
4344
- "title": "Blockquote Style Four",
4345
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_4.png",
4346
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_4.png",
4347
- "author": "HasThemes",
4348
- "url": "#",
4349
- "demoUrl": "http://demo.wphash.com/htmega/element-blockquote/",
4350
- "category": "blocks",
4351
- "tags": ["blockquote","blocks","quote"],
4352
- "isPro": "1",
4353
- "tmpType": "pro",
4354
- "builder": ["elementor"],
4355
- "demoType": "blocks",
4356
- "freePlugins": [
4357
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4358
- ],
4359
- "proPlugins": [
4360
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4361
- ],
4362
- "requiredtheme": ""
4363
- },
4364
- {
4365
- "id": "blockquote_style_5",
4366
- "shareId": "blockquote",
4367
- "title": "Blockquote Style Five",
4368
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blockquote_style_5.png",
4369
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/blockquote_style_5.png",
4370
- "author": "HasThemes",
4371
- "url": "#",
4372
- "demoUrl": "http://demo.wphash.com/htmega/element-blockquote/",
4373
- "category": "blocks",
4374
- "tags": ["blockquote","blocks","quote"],
4375
- "isPro": "1",
4376
- "tmpType": "pro",
4377
- "builder": ["elementor"],
4378
- "demoType": "blocks",
4379
- "freePlugins": [
4380
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4381
- ],
4382
- "proPlugins": [
4383
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4384
- ],
4385
- "requiredtheme": ""
4386
- },
4387
- {
4388
- "id": "brand_style_1",
4389
- "shareId": "brands",
4390
- "title": "Brands Style One",
4391
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_1.png",
4392
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_1.png",
4393
- "author": "HasThemes",
4394
- "url": "#",
4395
- "demoUrl": "http://demo.wphash.com/htmega/element-brand/",
4396
- "category": "blocks",
4397
- "tags": ["brands","blocks","brand logo"],
4398
- "isPro": "1",
4399
- "tmpType": "pro",
4400
- "builder": ["elementor"],
4401
- "demoType": "blocks",
4402
- "freePlugins": [
4403
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4404
- ],
4405
- "proPlugins": [
4406
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4407
- ],
4408
- "requiredtheme": ""
4409
- },
4410
- {
4411
- "id": "brand_style_2",
4412
- "shareId": "brands",
4413
- "title": "Brands Style Two",
4414
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_2.png",
4415
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_2.png",
4416
- "author": "HasThemes",
4417
- "url": "#",
4418
- "demoUrl": "http://demo.wphash.com/htmega/element-brand/",
4419
- "category": "blocks",
4420
- "tags": ["brands","blocks","brand logo"],
4421
- "isPro": "1",
4422
- "tmpType": "pro",
4423
- "builder": ["elementor"],
4424
- "demoType": "blocks",
4425
- "freePlugins": [
4426
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4427
- ],
4428
- "proPlugins": [
4429
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4430
- ],
4431
- "requiredtheme": ""
4432
- },
4433
- {
4434
- "id": "brand_style_3",
4435
- "shareId": "brands",
4436
- "title": "Brands Style Three",
4437
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_3.png",
4438
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_3.png",
4439
- "author": "HasThemes",
4440
- "url": "#",
4441
- "demoUrl": "http://demo.wphash.com/htmega/element-brand/",
4442
- "category": "blocks",
4443
- "tags": ["brands","blocks","brand logo"],
4444
- "isPro": "1",
4445
- "tmpType": "pro",
4446
- "builder": ["elementor"],
4447
- "demoType": "blocks",
4448
- "freePlugins": [
4449
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4450
- ],
4451
- "proPlugins": [
4452
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4453
- ],
4454
- "requiredtheme": ""
4455
- },
4456
- {
4457
- "id": "brand_style_4",
4458
- "shareId": "brands",
4459
- "title": "Brands Style Four",
4460
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_4.png",
4461
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_4.png",
4462
- "author": "HasThemes",
4463
- "url": "#",
4464
- "demoUrl": "http://demo.wphash.com/htmega/element-brand/",
4465
- "category": "blocks",
4466
- "tags": ["brands","blocks","brand logo"],
4467
- "isPro": "1",
4468
- "tmpType": "pro",
4469
- "builder": ["elementor"],
4470
- "demoType": "blocks",
4471
- "freePlugins": [
4472
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4473
- ],
4474
- "proPlugins": [
4475
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4476
- ],
4477
- "requiredtheme": ""
4478
- },
4479
- {
4480
- "id": "brand_style_5",
4481
- "shareId": "brands",
4482
- "title": "Brands Style Five",
4483
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_5.png",
4484
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_5.png",
4485
- "author": "HasThemes",
4486
- "url": "#",
4487
- "demoUrl": "http://demo.wphash.com/htmega/element-brand/",
4488
- "category": "blocks",
4489
- "tags": ["brands","blocks","brand logo"],
4490
- "isPro": "1",
4491
- "tmpType": "pro",
4492
- "builder": ["elementor"],
4493
- "demoType": "blocks",
4494
- "freePlugins": [
4495
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4496
- ],
4497
- "proPlugins": [
4498
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4499
- ],
4500
- "requiredtheme": ""
4501
- },
4502
- {
4503
- "id": "brand_style_6",
4504
- "shareId": "brands",
4505
- "title": "Brands Style Six",
4506
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_6.png",
4507
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_6.png",
4508
- "author": "HasThemes",
4509
- "url": "#",
4510
- "demoUrl": "http://demo.wphash.com/htmega/element-brand/",
4511
- "category": "blocks",
4512
- "tags": ["brands","blocks","brand logo"],
4513
- "isPro": "1",
4514
- "tmpType": "pro",
4515
- "builder": ["elementor"],
4516
- "demoType": "blocks",
4517
- "freePlugins": [
4518
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4519
- ],
4520
- "proPlugins": [
4521
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4522
- ],
4523
- "requiredtheme": ""
4524
- },
4525
- {
4526
- "id": "brand_style_7",
4527
- "shareId": "brands",
4528
- "title": "Brands Style Seven",
4529
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/brand_style_7.png",
4530
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/brand_style_7.png",
4531
- "author": "HasThemes",
4532
- "url": "#",
4533
- "demoUrl": "http://demo.wphash.com/htmega/element-brand/",
4534
- "category": "blocks",
4535
- "tags": ["brands","blocks","brand logo"],
4536
- "isPro": "1",
4537
- "tmpType": "pro",
4538
- "builder": ["elementor"],
4539
- "demoType": "blocks",
4540
- "freePlugins": [
4541
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4542
- ],
4543
- "proPlugins": [
4544
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4545
- ],
4546
- "requiredtheme": ""
4547
- },
4548
- {
4549
- "id": "business_hours_style_1",
4550
- "shareId": "business-hours",
4551
- "title": "Business Hours Style One",
4552
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_1.png",
4553
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_1.png",
4554
- "author": "HasThemes",
4555
- "url": "#",
4556
- "demoUrl": "http://demo.wphash.com/htmega/element-business-hours/",
4557
- "category": "blocks",
4558
- "tags": ["business hours","hours","business","blocks"],
4559
- "isPro": "1",
4560
- "tmpType": "pro",
4561
- "builder": ["elementor"],
4562
- "demoType": "blocks",
4563
- "freePlugins": [
4564
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4565
- ],
4566
- "proPlugins": [
4567
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4568
- ],
4569
- "requiredtheme": ""
4570
- },
4571
- {
4572
- "id": "business_hours_style_2",
4573
- "shareId": "business-hours",
4574
- "title": "Business Hours Style Two",
4575
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_2.png",
4576
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_2.png",
4577
- "author": "HasThemes",
4578
- "url": "#",
4579
- "demoUrl": "http://demo.wphash.com/htmega/element-business-hours/",
4580
- "category": "blocks",
4581
- "tags": ["business hours","hours","business","blocks"],
4582
- "isPro": "1",
4583
- "tmpType": "pro",
4584
- "builder": ["elementor"],
4585
- "demoType": "blocks",
4586
- "freePlugins": [
4587
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4588
- ],
4589
- "proPlugins": [
4590
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4591
- ],
4592
- "requiredtheme": ""
4593
- },
4594
- {
4595
- "id": "business_hours_style_3",
4596
- "shareId": "business-hours",
4597
- "title": "Business Hours Style Three",
4598
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_3.png",
4599
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_3.png",
4600
- "author": "HasThemes",
4601
- "url": "#",
4602
- "demoUrl": "http://demo.wphash.com/htmega/element-business-hours/",
4603
- "category": "blocks",
4604
- "tags": ["business hours","hours","business","blocks"],
4605
- "isPro": "1",
4606
- "tmpType": "pro",
4607
- "builder": ["elementor"],
4608
- "demoType": "blocks",
4609
- "freePlugins": [
4610
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4611
- ],
4612
- "proPlugins": [
4613
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4614
- ],
4615
- "requiredtheme": ""
4616
- },
4617
- {
4618
- "id": "business_hours_style_4",
4619
- "shareId": "business-hours",
4620
- "title": "Business Hours Style Four",
4621
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_4.png",
4622
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_4.png",
4623
- "author": "HasThemes",
4624
- "url": "#",
4625
- "demoUrl": "http://demo.wphash.com/htmega/element-business-hours/",
4626
- "category": "blocks",
4627
- "tags": ["business hours","hours","business","blocks"],
4628
- "isPro": "1",
4629
- "tmpType": "pro",
4630
- "builder": ["elementor"],
4631
- "demoType": "blocks",
4632
- "freePlugins": [
4633
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4634
- ],
4635
- "proPlugins": [
4636
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4637
- ],
4638
- "requiredtheme": ""
4639
- },
4640
- {
4641
- "id": "business_hours_style_5",
4642
- "shareId": "business-hours",
4643
- "title": "Business Hours Style Five",
4644
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/business_hours_style_5.png",
4645
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/business_hours_style_5.png",
4646
- "author": "HasThemes",
4647
- "url": "#",
4648
- "demoUrl": "http://demo.wphash.com/htmega/element-business-hours/",
4649
- "category": "blocks",
4650
- "tags": ["business hours","hours","business","blocks"],
4651
- "isPro": "1",
4652
- "tmpType": "pro",
4653
- "builder": ["elementor"],
4654
- "demoType": "blocks",
4655
- "freePlugins": [
4656
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4657
- ],
4658
- "proPlugins": [
4659
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4660
- ],
4661
- "requiredtheme": ""
4662
- },
4663
- {
4664
- "id": "button_style_1",
4665
- "shareId": "button",
4666
- "title": "Button Style One",
4667
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_1.png",
4668
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_1.png",
4669
- "author": "HasThemes",
4670
- "url": "#",
4671
- "demoUrl": "http://demo.wphash.com/htmega/element-button/",
4672
- "category": "blocks",
4673
- "tags": ["button","blocks"],
4674
- "isPro": "1",
4675
- "tmpType": "pro",
4676
- "builder": ["elementor"],
4677
- "demoType": "blocks",
4678
- "freePlugins": [
4679
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4680
- ],
4681
- "proPlugins": [
4682
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4683
- ],
4684
- "requiredtheme": ""
4685
- },
4686
- {
4687
- "id": "button_style_2",
4688
- "shareId": "button",
4689
- "title": "Button Style Two",
4690
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_2.png",
4691
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_2.png",
4692
- "author": "HasThemes",
4693
- "url": "#",
4694
- "demoUrl": "http://demo.wphash.com/htmega/element-button/",
4695
- "category": "blocks",
4696
- "tags": ["button","blocks"],
4697
- "isPro": "1",
4698
- "tmpType": "pro",
4699
- "builder": ["elementor"],
4700
- "demoType": "blocks",
4701
- "freePlugins": [
4702
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4703
- ],
4704
- "proPlugins": [
4705
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4706
- ],
4707
- "requiredtheme": ""
4708
- },
4709
- {
4710
- "id": "button_style_3",
4711
- "shareId": "button",
4712
- "title": "Button Style Three",
4713
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_3.png",
4714
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_3.png",
4715
- "author": "HasThemes",
4716
- "url": "#",
4717
- "demoUrl": "http://demo.wphash.com/htmega/element-button/",
4718
- "category": "blocks",
4719
- "tags": ["button","blocks"],
4720
- "isPro": "1",
4721
- "tmpType": "pro",
4722
- "builder": ["elementor"],
4723
- "demoType": "blocks",
4724
- "freePlugins": [
4725
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4726
- ],
4727
- "proPlugins": [
4728
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4729
- ],
4730
- "requiredtheme": ""
4731
- },
4732
- {
4733
- "id": "button_style_4",
4734
- "shareId": "button",
4735
- "title": "Button Style Four",
4736
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_4.png",
4737
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_4.png",
4738
- "author": "HasThemes",
4739
- "url": "#",
4740
- "demoUrl": "http://demo.wphash.com/htmega/element-button/",
4741
- "category": "blocks",
4742
- "tags": ["button","blocks"],
4743
- "isPro": "1",
4744
- "tmpType": "pro",
4745
- "builder": ["elementor"],
4746
- "demoType": "blocks",
4747
- "freePlugins": [
4748
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4749
- ],
4750
- "proPlugins": [
4751
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4752
- ],
4753
- "requiredtheme": ""
4754
- },
4755
- {
4756
- "id": "button_style_5",
4757
- "shareId": "button",
4758
- "title": "Button Style Five",
4759
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_5.png",
4760
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_5.png",
4761
- "author": "HasThemes",
4762
- "url": "#",
4763
- "demoUrl": "http://demo.wphash.com/htmega/element-button/",
4764
- "category": "blocks",
4765
- "tags": ["button","blocks"],
4766
- "isPro": "1",
4767
- "tmpType": "pro",
4768
- "builder": ["elementor"],
4769
- "demoType": "blocks",
4770
- "freePlugins": [
4771
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4772
- ],
4773
- "proPlugins": [
4774
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4775
- ],
4776
- "requiredtheme": ""
4777
- },
4778
- {
4779
- "id": "button_style_6",
4780
- "shareId": "button",
4781
- "title": "Button Style Six",
4782
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_6.png",
4783
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_6.png",
4784
- "author": "HasThemes",
4785
- "url": "#",
4786
- "demoUrl": "http://demo.wphash.com/htmega/element-button/",
4787
- "category": "blocks",
4788
- "tags": ["button","blocks"],
4789
- "isPro": "1",
4790
- "tmpType": "pro",
4791
- "builder": ["elementor"],
4792
- "demoType": "blocks",
4793
- "freePlugins": [
4794
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4795
- ],
4796
- "proPlugins": [
4797
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4798
- ],
4799
- "requiredtheme": ""
4800
- },
4801
- {
4802
- "id": "button_style_7",
4803
- "shareId": "button",
4804
- "title": "Button Style Seven",
4805
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_7.png",
4806
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_7.png",
4807
- "author": "HasThemes",
4808
- "url": "#",
4809
- "demoUrl": "http://demo.wphash.com/htmega/element-button/",
4810
- "category": "blocks",
4811
- "tags": ["button","blocks"],
4812
- "isPro": "1",
4813
- "tmpType": "pro",
4814
- "builder": ["elementor"],
4815
- "demoType": "blocks",
4816
- "freePlugins": [
4817
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4818
- ],
4819
- "proPlugins": [
4820
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4821
- ],
4822
- "requiredtheme": ""
4823
- },
4824
- {
4825
- "id": "button_style_8",
4826
- "shareId": "button",
4827
- "title": "Button Style Eight",
4828
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/button_style_8.png",
4829
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/button_style_8.png",
4830
- "author": "HasThemes",
4831
- "url": "#",
4832
- "demoUrl": "http://demo.wphash.com/htmega/element-button/",
4833
- "category": "blocks",
4834
- "tags": ["button","blocks"],
4835
- "isPro": "1",
4836
- "tmpType": "pro",
4837
- "builder": ["elementor"],
4838
- "demoType": "blocks",
4839
- "freePlugins": [
4840
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4841
- ],
4842
- "proPlugins": [
4843
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4844
- ],
4845
- "requiredtheme": ""
4846
- },
4847
- {
4848
- "id": "call_to_action_style_1",
4849
- "shareId": "call-to-action",
4850
- "title": "Call to Action Style One",
4851
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_1.png",
4852
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_1.png",
4853
- "author": "HasThemes",
4854
- "url": "#",
4855
- "demoUrl": "http://demo.wphash.com/htmega/element-call-to-action/",
4856
- "category": "blocks",
4857
- "tags": ["call to action","blocks"],
4858
- "isPro": "1",
4859
- "tmpType": "pro",
4860
- "builder": ["elementor"],
4861
- "demoType": "blocks",
4862
- "freePlugins": [
4863
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4864
- ],
4865
- "proPlugins": [
4866
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4867
- ],
4868
- "requiredtheme": ""
4869
- },
4870
- {
4871
- "id": "call_to_action_style_2",
4872
- "shareId": "call-to-action",
4873
- "title": "Call to Action Style Two",
4874
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_2.png",
4875
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_2.png",
4876
- "author": "HasThemes",
4877
- "url": "#",
4878
- "demoUrl": "http://demo.wphash.com/htmega/element-call-to-action/",
4879
- "category": "blocks",
4880
- "tags": ["call to action","blocks"],
4881
- "isPro": "1",
4882
- "tmpType": "pro",
4883
- "builder": ["elementor"],
4884
- "demoType": "blocks",
4885
- "freePlugins": [
4886
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4887
- ],
4888
- "proPlugins": [
4889
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4890
- ],
4891
- "requiredtheme": ""
4892
- },
4893
- {
4894
- "id": "call_to_action_style_3",
4895
- "shareId": "call-to-action",
4896
- "title": "Call to Action Style Three",
4897
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_3.png",
4898
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_3.png",
4899
- "author": "HasThemes",
4900
- "url": "#",
4901
- "demoUrl": "http://demo.wphash.com/htmega/element-call-to-action/",
4902
- "category": "blocks",
4903
- "tags": ["call to action","blocks"],
4904
- "isPro": "1",
4905
- "tmpType": "pro",
4906
- "builder": ["elementor"],
4907
- "demoType": "blocks",
4908
- "freePlugins": [
4909
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4910
- ],
4911
- "proPlugins": [
4912
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4913
- ],
4914
- "requiredtheme": ""
4915
- },
4916
- {
4917
- "id": "call_to_action_style_4",
4918
- "shareId": "call-to-action",
4919
- "title": "Call to Action Style Four",
4920
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_4.png",
4921
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_4.png",
4922
- "author": "HasThemes",
4923
- "url": "#",
4924
- "demoUrl": "http://demo.wphash.com/htmega/element-call-to-action/",
4925
- "category": "blocks",
4926
- "tags": ["call to action","blocks"],
4927
- "isPro": "1",
4928
- "tmpType": "pro",
4929
- "builder": ["elementor"],
4930
- "demoType": "blocks",
4931
- "freePlugins": [
4932
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4933
- ],
4934
- "proPlugins": [
4935
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4936
- ],
4937
- "requiredtheme": ""
4938
- },
4939
- {
4940
- "id": "call_to_action_style_5",
4941
- "shareId": "call-to-action",
4942
- "title": "Call to Action Style Five",
4943
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_5.png",
4944
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_5.png",
4945
- "author": "HasThemes",
4946
- "url": "#",
4947
- "demoUrl": "http://demo.wphash.com/htmega/element-call-to-action/",
4948
- "category": "blocks",
4949
- "tags": ["call to action","blocks"],
4950
- "isPro": "1",
4951
- "tmpType": "pro",
4952
- "builder": ["elementor"],
4953
- "demoType": "blocks",
4954
- "freePlugins": [
4955
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4956
- ],
4957
- "proPlugins": [
4958
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4959
- ],
4960
- "requiredtheme": ""
4961
- },
4962
- {
4963
- "id": "call_to_action_style_6",
4964
- "shareId": "call-to-action",
4965
- "title": "Call to Action Style Six",
4966
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_6.png",
4967
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_6.png",
4968
- "author": "HasThemes",
4969
- "url": "#",
4970
- "demoUrl": "http://demo.wphash.com/htmega/element-call-to-action/",
4971
- "category": "blocks",
4972
- "tags": ["call to action","blocks"],
4973
- "isPro": "1",
4974
- "tmpType": "pro",
4975
- "builder": ["elementor"],
4976
- "demoType": "blocks",
4977
- "freePlugins": [
4978
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
4979
- ],
4980
- "proPlugins": [
4981
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
4982
- ],
4983
- "requiredtheme": ""
4984
- },
4985
- {
4986
- "id": "call_to_action_style_7",
4987
- "shareId": "call-to-action",
4988
- "title": "Call to Action Style Seven",
4989
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/call_to_action_style_7.png",
4990
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/call_to_action_style_7.png",
4991
- "author": "HasThemes",
4992
- "url": "#",
4993
- "demoUrl": "http://demo.wphash.com/htmega/element-call-to-action/",
4994
- "category": "blocks",
4995
- "tags": ["call to action","blocks"],
4996
- "isPro": "1",
4997
- "tmpType": "pro",
4998
- "builder": ["elementor"],
4999
- "demoType": "blocks",
5000
- "freePlugins": [
5001
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5002
- ],
5003
- "proPlugins": [
5004
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5005
- ],
5006
- "requiredtheme": ""
5007
- },
5008
- {
5009
- "id": "contact_form_style_1",
5010
- "shareId": "contact-form",
5011
- "title": "Contact form Style One",
5012
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_1.png",
5013
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_1.png",
5014
- "author": "HasThemes",
5015
- "url": "#",
5016
- "demoUrl": "http://demo.wphash.com/htmega/element-contact-form/",
5017
- "category": "blocks",
5018
- "tags": ["contact form","contact","form","blocks"],
5019
- "isPro": "1",
5020
- "tmpType": "pro",
5021
- "builder": ["elementor"],
5022
- "demoType": "blocks",
5023
- "freePlugins": [
5024
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5025
- ],
5026
- "proPlugins": [
5027
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5028
- ],
5029
- "requiredtheme": ""
5030
- },
5031
- {
5032
- "id": "contact_form_style_2",
5033
- "shareId": "contact-form",
5034
- "title": "Contact form Style Two",
5035
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_2.png",
5036
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_2.png",
5037
- "author": "HasThemes",
5038
- "url": "#",
5039
- "demoUrl": "http://demo.wphash.com/htmega/element-contact-form/",
5040
- "category": "blocks",
5041
- "tags": ["contact form","contact","form","blocks"],
5042
- "isPro": "1",
5043
- "tmpType": "pro",
5044
- "builder": ["elementor"],
5045
- "demoType": "blocks",
5046
- "freePlugins": [
5047
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5048
- ],
5049
- "proPlugins": [
5050
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5051
- ],
5052
- "requiredtheme": ""
5053
- },
5054
- {
5055
- "id": "contact_form_style_3",
5056
- "shareId": "contact-form",
5057
- "title": "Contact form Style Three",
5058
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_3.png",
5059
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_3.png",
5060
- "author": "HasThemes",
5061
- "url": "#",
5062
- "demoUrl": "http://demo.wphash.com/htmega/element-contact-form/",
5063
- "category": "blocks",
5064
- "tags": ["contact form","contact","form","blocks"],
5065
- "isPro": "1",
5066
- "tmpType": "pro",
5067
- "builder": ["elementor"],
5068
- "demoType": "blocks",
5069
- "freePlugins": [
5070
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5071
- ],
5072
- "proPlugins": [
5073
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5074
- ],
5075
- "requiredtheme": ""
5076
- },
5077
- {
5078
- "id": "contact_form_style_4",
5079
- "shareId": "contact-form",
5080
- "title": "Contact form Style Four",
5081
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_4.png",
5082
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_4.png",
5083
- "author": "HasThemes",
5084
- "url": "#",
5085
- "demoUrl": "http://demo.wphash.com/htmega/element-contact-form/",
5086
- "category": "blocks",
5087
- "tags": ["contact form","contact","form","blocks"],
5088
- "isPro": "1",
5089
- "tmpType": "pro",
5090
- "builder": ["elementor"],
5091
- "demoType": "blocks",
5092
- "freePlugins": [
5093
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5094
- ],
5095
- "proPlugins": [
5096
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5097
- ],
5098
- "requiredtheme": ""
5099
- },
5100
- {
5101
- "id": "contact_form_style_5",
5102
- "shareId": "contact-form",
5103
- "title": "Contact form Style Five",
5104
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_5.png",
5105
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_5.png",
5106
- "author": "HasThemes",
5107
- "url": "#",
5108
- "demoUrl": "http://demo.wphash.com/htmega/element-contact-form/",
5109
- "category": "blocks",
5110
- "tags": ["contact form","contact","form","blocks"],
5111
- "isPro": "1",
5112
- "tmpType": "pro",
5113
- "builder": ["elementor"],
5114
- "demoType": "blocks",
5115
- "freePlugins": [
5116
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5117
- ],
5118
- "proPlugins": [
5119
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5120
- ],
5121
- "requiredtheme": ""
5122
- },
5123
- {
5124
- "id": "contact_form_style_6",
5125
- "shareId": "contact-form",
5126
- "title": "Contact form Style Six",
5127
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_6.png",
5128
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_6.png",
5129
- "author": "HasThemes",
5130
- "url": "#",
5131
- "demoUrl": "http://demo.wphash.com/htmega/element-contact-form/",
5132
- "category": "blocks",
5133
- "tags": ["contact form","contact","form","blocks"],
5134
- "isPro": "1",
5135
- "tmpType": "pro",
5136
- "builder": ["elementor"],
5137
- "demoType": "blocks",
5138
- "freePlugins": [
5139
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5140
- ],
5141
- "proPlugins": [
5142
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5143
- ],
5144
- "requiredtheme": ""
5145
- },
5146
- {
5147
- "id": "contact_form_style_7",
5148
- "shareId": "contact-form",
5149
- "title": "Contact form Style Seven",
5150
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/contact_form_style_7.png",
5151
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/contact_form_style_7.png",
5152
- "author": "HasThemes",
5153
- "url": "#",
5154
- "demoUrl": "http://demo.wphash.com/htmega/element-contact-form/",
5155
- "category": "blocks",
5156
- "tags": ["contact form","contact","form","blocks"],
5157
- "isPro": "1",
5158
- "tmpType": "pro",
5159
- "builder": ["elementor"],
5160
- "demoType": "blocks",
5161
- "freePlugins": [
5162
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5163
- ],
5164
- "proPlugins": [
5165
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5166
- ],
5167
- "requiredtheme": ""
5168
- },
5169
- {
5170
- "id": "countdown_style_1",
5171
- "shareId": "countdown",
5172
- "title": "Countdown Style One",
5173
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_1.png",
5174
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_1.png",
5175
- "author": "HasThemes",
5176
- "url": "#",
5177
- "demoUrl": "http://demo.wphash.com/htmega/element-countdown/",
5178
- "category": "blocks",
5179
- "tags": ["countdown","blocks"],
5180
- "isPro": "1",
5181
- "tmpType": "pro",
5182
- "builder": ["elementor"],
5183
- "demoType": "blocks",
5184
- "freePlugins": [
5185
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5186
- ],
5187
- "proPlugins": [
5188
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5189
- ],
5190
- "requiredtheme": ""
5191
- },
5192
- {
5193
- "id": "countdown_style_2",
5194
- "shareId": "countdown",
5195
- "title": "Countdown Style Two",
5196
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_2.png",
5197
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_2.png",
5198
- "author": "HasThemes",
5199
- "url": "#",
5200
- "demoUrl": "http://demo.wphash.com/htmega/element-countdown/",
5201
- "category": "blocks",
5202
- "tags": ["countdown","blocks"],
5203
- "isPro": "1",
5204
- "tmpType": "pro",
5205
- "builder": ["elementor"],
5206
- "demoType": "blocks",
5207
- "freePlugins": [
5208
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5209
- ],
5210
- "proPlugins": [
5211
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5212
- ],
5213
- "requiredtheme": ""
5214
- },
5215
- {
5216
- "id": "countdown_style_3",
5217
- "shareId": "countdown",
5218
- "title": "Countdown Style Three",
5219
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_3.png",
5220
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_3.png",
5221
- "author": "HasThemes",
5222
- "url": "#",
5223
- "demoUrl": "http://demo.wphash.com/htmega/element-countdown/",
5224
- "category": "blocks",
5225
- "tags": ["countdown","blocks"],
5226
- "isPro": "1",
5227
- "tmpType": "pro",
5228
- "builder": ["elementor"],
5229
- "demoType": "blocks",
5230
- "freePlugins": [
5231
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5232
- ],
5233
- "proPlugins": [
5234
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5235
- ],
5236
- "requiredtheme": ""
5237
- },
5238
- {
5239
- "id": "countdown_style_4",
5240
- "shareId": "countdown",
5241
- "title": "Countdown Style Four",
5242
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_4.png",
5243
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_4.png",
5244
- "author": "HasThemes",
5245
- "url": "#",
5246
- "demoUrl": "http://demo.wphash.com/htmega/element-countdown/",
5247
- "category": "blocks",
5248
- "tags": ["countdown","blocks"],
5249
- "isPro": "1",
5250
- "tmpType": "pro",
5251
- "builder": ["elementor"],
5252
- "demoType": "blocks",
5253
- "freePlugins": [
5254
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5255
- ],
5256
- "proPlugins": [
5257
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5258
- ],
5259
- "requiredtheme": ""
5260
- },
5261
- {
5262
- "id": "countdown_style_5",
5263
- "shareId": "countdown",
5264
- "title": "Countdown Style Five",
5265
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_5.png",
5266
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_5.png",
5267
- "author": "HasThemes",
5268
- "url": "#",
5269
- "demoUrl": "http://demo.wphash.com/htmega/element-countdown/",
5270
- "category": "blocks",
5271
- "tags": ["countdown","blocks"],
5272
- "isPro": "1",
5273
- "tmpType": "pro",
5274
- "builder": ["elementor"],
5275
- "demoType": "blocks",
5276
- "freePlugins": [
5277
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5278
- ],
5279
- "proPlugins": [
5280
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5281
- ],
5282
- "requiredtheme": ""
5283
- },
5284
- {
5285
- "id": "countdown_style_6",
5286
- "shareId": "countdown",
5287
- "title": "Countdown Style Six",
5288
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_6.png",
5289
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_6.png",
5290
- "author": "HasThemes",
5291
- "url": "#",
5292
- "demoUrl": "http://demo.wphash.com/htmega/element-countdown/",
5293
- "category": "blocks",
5294
- "tags": ["countdown","blocks"],
5295
- "isPro": "1",
5296
- "tmpType": "pro",
5297
- "builder": ["elementor"],
5298
- "demoType": "blocks",
5299
- "freePlugins": [
5300
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5301
- ],
5302
- "proPlugins": [
5303
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5304
- ],
5305
- "requiredtheme": ""
5306
- },
5307
- {
5308
- "id": "countdown_style_7",
5309
- "shareId": "countdown",
5310
- "title": "Countdown Style Seven",
5311
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/countdown_style_7.png",
5312
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/countdown_style_7.png",
5313
- "author": "HasThemes",
5314
- "url": "#",
5315
- "demoUrl": "http://demo.wphash.com/htmega/element-countdown/",
5316
- "category": "blocks",
5317
- "tags": ["countdown","blocks"],
5318
- "isPro": "1",
5319
- "tmpType": "pro",
5320
- "builder": ["elementor"],
5321
- "demoType": "blocks",
5322
- "freePlugins": [
5323
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5324
- ],
5325
- "proPlugins": [
5326
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5327
- ],
5328
- "requiredtheme": ""
5329
- },
5330
- {
5331
- "id": "counter_style_1",
5332
- "shareId": "counter-up",
5333
- "title": "Counter Style One",
5334
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_1.png",
5335
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_1.png",
5336
- "author": "HasThemes",
5337
- "url": "#",
5338
- "demoUrl": "http://demo.wphash.com/htmega/element-counter/",
5339
- "category": "blocks",
5340
- "tags": ["counter","counter up","blocks"],
5341
- "isPro": "1",
5342
- "tmpType": "pro",
5343
- "builder": ["elementor"],
5344
- "demoType": "blocks",
5345
- "freePlugins": [
5346
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5347
- ],
5348
- "proPlugins": [
5349
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5350
- ],
5351
- "requiredtheme": ""
5352
- },
5353
- {
5354
- "id": "counter_style_2",
5355
- "shareId": "counter-up",
5356
- "title": "Counter Style Two",
5357
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_2.png",
5358
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_2.png",
5359
- "author": "HasThemes",
5360
- "url": "#",
5361
- "demoUrl": "http://demo.wphash.com/htmega/element-counter/",
5362
- "category": "blocks",
5363
- "tags": ["counter","blocks"],
5364
- "isPro": "1",
5365
- "tmpType": "pro",
5366
- "builder": ["elementor"],
5367
- "demoType": "blocks",
5368
- "freePlugins": [
5369
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5370
- ],
5371
- "proPlugins": [
5372
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5373
- ],
5374
- "requiredtheme": ""
5375
- },
5376
- {
5377
- "id": "counter_style_3",
5378
- "shareId": "counter-up",
5379
- "title": "Counter Style Three",
5380
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_3.png",
5381
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_3.png",
5382
- "author": "HasThemes",
5383
- "url": "#",
5384
- "demoUrl": "http://demo.wphash.com/htmega/element-counter/",
5385
- "category": "blocks",
5386
- "tags": ["counter","blocks"],
5387
- "isPro": "1",
5388
- "tmpType": "pro",
5389
- "builder": ["elementor"],
5390
- "demoType": "blocks",
5391
- "freePlugins": [
5392
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5393
- ],
5394
- "proPlugins": [
5395
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5396
- ],
5397
- "requiredtheme": ""
5398
- },
5399
- {
5400
- "id": "counter_style_4",
5401
- "shareId": "counter-up",
5402
- "title": "Counter Style Four",
5403
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_4.png",
5404
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_4.png",
5405
- "author": "HasThemes",
5406
- "url": "#",
5407
- "demoUrl": "http://demo.wphash.com/htmega/element-counter/",
5408
- "category": "blocks",
5409
- "tags": ["counter","blocks"],
5410
- "isPro": "1",
5411
- "tmpType": "pro",
5412
- "builder": ["elementor"],
5413
- "demoType": "blocks",
5414
- "freePlugins": [
5415
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5416
- ],
5417
- "proPlugins": [
5418
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5419
- ],
5420
- "requiredtheme": ""
5421
- },
5422
- {
5423
- "id": "counter_style_5",
5424
- "shareId": "counter-up",
5425
- "title": "Counter Style Five",
5426
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_5.png",
5427
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_5.png",
5428
- "author": "HasThemes",
5429
- "url": "#",
5430
- "demoUrl": "http://demo.wphash.com/htmega/element-counter/",
5431
- "category": "blocks",
5432
- "tags": ["counter","blocks"],
5433
- "isPro": "1",
5434
- "tmpType": "pro",
5435
- "builder": ["elementor"],
5436
- "demoType": "blocks",
5437
- "freePlugins": [
5438
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5439
- ],
5440
- "proPlugins": [
5441
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5442
- ],
5443
- "requiredtheme": ""
5444
- },
5445
- {
5446
- "id": "counter_style_6",
5447
- "shareId": "counter-up",
5448
- "title": "Counter Style Six",
5449
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/counter_style_6.png",
5450
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/counter_style_6.png",
5451
- "author": "HasThemes",
5452
- "url": "#",
5453
- "demoUrl": "http://demo.wphash.com/htmega/element-counter/",
5454
- "category": "blocks",
5455
- "tags": ["counter","blocks"],
5456
- "isPro": "1",
5457
- "tmpType": "pro",
5458
- "builder": ["elementor"],
5459
- "demoType": "blocks",
5460
- "freePlugins": [
5461
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5462
- ],
5463
- "proPlugins": [
5464
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5465
- ],
5466
- "requiredtheme": ""
5467
- },
5468
- {
5469
- "id": "custom_carousel_style_1",
5470
- "shareId": "custom-carousel",
5471
- "title": "Custom Carousel Style One",
5472
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_1.png",
5473
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_1.png",
5474
- "author": "HasThemes",
5475
- "url": "#",
5476
- "demoUrl": "http://demo.wphash.com/htmega/element-custom-carousel/",
5477
- "category": "blocks",
5478
- "tags": ["custom carousel","custom","carousel"],
5479
- "isPro": "1",
5480
- "tmpType": "pro",
5481
- "builder": ["elementor"],
5482
- "demoType": "blocks",
5483
- "freePlugins": [
5484
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5485
- ],
5486
- "proPlugins": [
5487
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5488
- ],
5489
- "requiredtheme": ""
5490
- },
5491
- {
5492
- "id": "custom_carousel_style_2",
5493
- "shareId": "custom-carousel",
5494
- "title": "Custom Carousel Style Two",
5495
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_2.png",
5496
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_2.png",
5497
- "author": "HasThemes",
5498
- "url": "#",
5499
- "demoUrl": "http://demo.wphash.com/htmega/element-custom-carousel/",
5500
- "category": "blocks",
5501
- "tags": ["custom carousel","custom","carousel"],
5502
- "isPro": "1",
5503
- "tmpType": "pro",
5504
- "builder": ["elementor"],
5505
- "demoType": "blocks",
5506
- "freePlugins": [
5507
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5508
- ],
5509
- "proPlugins": [
5510
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5511
- ],
5512
- "requiredtheme": ""
5513
- },
5514
- {
5515
- "id": "custom_carousel_style_3",
5516
- "shareId": "custom-carousel",
5517
- "title": "Custom Carousel Style Three",
5518
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_3.png",
5519
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_3.png",
5520
- "author": "HasThemes",
5521
- "url": "#",
5522
- "demoUrl": "http://demo.wphash.com/htmega/element-custom-carousel/",
5523
- "category": "blocks",
5524
- "tags": ["custom carousel","custom","carousel"],
5525
- "isPro": "1",
5526
- "tmpType": "pro",
5527
- "builder": ["elementor"],
5528
- "demoType": "blocks",
5529
- "freePlugins": [
5530
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5531
- ],
5532
- "proPlugins": [
5533
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5534
- ],
5535
- "requiredtheme": ""
5536
- },
5537
- {
5538
- "id": "custom_carousel_style_4",
5539
- "shareId": "custom-carousel",
5540
- "title": "Custom Carousel Style Four",
5541
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_4.png",
5542
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_4.png",
5543
- "author": "HasThemes",
5544
- "url": "#",
5545
- "demoUrl": "http://demo.wphash.com/htmega/element-custom-carousel/",
5546
- "category": "blocks",
5547
- "tags": ["custom carousel","custom","carousel"],
5548
- "isPro": "1",
5549
- "tmpType": "pro",
5550
- "builder": ["elementor"],
5551
- "demoType": "blocks",
5552
- "freePlugins": [
5553
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5554
- ],
5555
- "proPlugins": [
5556
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5557
- ],
5558
- "requiredtheme": ""
5559
- },
5560
- {
5561
- "id": "custom_carousel_style_5",
5562
- "shareId": "custom-carousel",
5563
- "title": "Custom Carousel Style Five",
5564
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_5.png",
5565
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_5.png",
5566
- "author": "HasThemes",
5567
- "url": "#",
5568
- "demoUrl": "http://demo.wphash.com/htmega/element-custom-carousel/",
5569
- "category": "blocks",
5570
- "tags": ["custom carousel","custom","carousel"],
5571
- "isPro": "1",
5572
- "tmpType": "pro",
5573
- "builder": ["elementor"],
5574
- "demoType": "blocks",
5575
- "freePlugins": [
5576
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5577
- ],
5578
- "proPlugins": [
5579
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5580
- ],
5581
- "requiredtheme": ""
5582
- },
5583
- {
5584
- "id": "custom_carousel_style_6",
5585
- "shareId": "custom-carousel",
5586
- "title": "Custom Carousel Style Six",
5587
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_6.png",
5588
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_6.png",
5589
- "author": "HasThemes",
5590
- "url": "#",
5591
- "demoUrl": "http://demo.wphash.com/htmega/element-custom-carousel/",
5592
- "category": "blocks",
5593
- "tags": ["custom carousel","custom","carousel"],
5594
- "isPro": "1",
5595
- "tmpType": "pro",
5596
- "builder": ["elementor"],
5597
- "demoType": "blocks",
5598
- "freePlugins": [
5599
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5600
- ],
5601
- "proPlugins": [
5602
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5603
- ],
5604
- "requiredtheme": ""
5605
- },
5606
- {
5607
- "id": "custom_carousel_style_7",
5608
- "shareId": "custom-carousel",
5609
- "title": "Custom Carousel Style Seven",
5610
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/custom_carousel_style_7.png",
5611
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/custom_carousel_style_7.png",
5612
- "author": "HasThemes",
5613
- "url": "#",
5614
- "demoUrl": "http://demo.wphash.com/htmega/element-custom-carousel/",
5615
- "category": "blocks",
5616
- "tags": ["custom carousel","custom","carousel"],
5617
- "isPro": "1",
5618
- "tmpType": "pro",
5619
- "builder": ["elementor"],
5620
- "demoType": "blocks",
5621
- "freePlugins": [
5622
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5623
- ],
5624
- "proPlugins": [
5625
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5626
- ],
5627
- "requiredtheme": ""
5628
- },
5629
- {
5630
- "id": "data_table_style_1",
5631
- "shareId": "data-table",
5632
- "title": "Data Table Style One",
5633
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_1.png",
5634
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_1.png",
5635
- "author": "HasThemes",
5636
- "url": "#",
5637
- "demoUrl": "http://demo.wphash.com/htmega/element-data-table/",
5638
- "category": "blocks",
5639
- "tags": ["data table","data","table"],
5640
- "isPro": "1",
5641
- "tmpType": "pro",
5642
- "builder": ["elementor"],
5643
- "demoType": "blocks",
5644
- "freePlugins": [
5645
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5646
- ],
5647
- "proPlugins": [
5648
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5649
- ],
5650
- "requiredtheme": ""
5651
- },
5652
- {
5653
- "id": "data_table_style_2",
5654
- "shareId": "data-table",
5655
- "title": "Data Table Style Two",
5656
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_2.png",
5657
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_2.png",
5658
- "author": "HasThemes",
5659
- "url": "#",
5660
- "demoUrl": "http://demo.wphash.com/htmega/element-data-table/",
5661
- "category": "blocks",
5662
- "tags": ["data table","data","table"],
5663
- "isPro": "1",
5664
- "tmpType": "pro",
5665
- "builder": ["elementor"],
5666
- "demoType": "blocks",
5667
- "freePlugins": [
5668
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5669
- ],
5670
- "proPlugins": [
5671
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5672
- ],
5673
- "requiredtheme": ""
5674
- },
5675
- {
5676
- "id": "data_table_style_3",
5677
- "shareId": "data-table",
5678
- "title": "Data Table Style Three",
5679
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/data_table_style_3.png",
5680
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/data_table_style_3.png",
5681
- "author": "HasThemes",
5682
- "url": "#",
5683
- "demoUrl": "http://demo.wphash.com/htmega/element-data-table/",
5684
- "category": "blocks",
5685
- "tags": ["data table","data","table"],
5686
- "isPro": "1",
5687
- "tmpType": "pro",
5688
- "builder": ["elementor"],
5689
- "demoType": "blocks",
5690
- "freePlugins": [
5691
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5692
- ],
5693
- "proPlugins": [
5694
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5695
- ],
5696
- "requiredtheme": ""
5697
- },
5698
- {
5699
- "id": "double_button_style_1",
5700
- "shareId": "double-button",
5701
- "title": "Double Button Style One",
5702
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_1.png",
5703
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_1.png",
5704
- "author": "HasThemes",
5705
- "url": "#",
5706
- "demoUrl": "http://demo.wphash.com/htmega/eelement-double-button/",
5707
- "category": "blocks",
5708
- "tags": ["double button","button","blocks"],
5709
- "isPro": "1",
5710
- "tmpType": "pro",
5711
- "builder": ["elementor"],
5712
- "demoType": "blocks",
5713
- "freePlugins": [
5714
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5715
- ],
5716
- "proPlugins": [
5717
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5718
- ],
5719
- "requiredtheme": ""
5720
- },
5721
- {
5722
- "id": "double_button_style_2",
5723
- "shareId": "double-button",
5724
- "title": "Double Button Style Two",
5725
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_2.png",
5726
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_2.png",
5727
- "author": "HasThemes",
5728
- "url": "#",
5729
- "demoUrl": "http://demo.wphash.com/htmega/eelement-double-button/",
5730
- "category": "blocks",
5731
- "tags": ["double button","button","blocks"],
5732
- "isPro": "1",
5733
- "tmpType": "pro",
5734
- "builder": ["elementor"],
5735
- "demoType": "blocks",
5736
- "freePlugins": [
5737
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5738
- ],
5739
- "proPlugins": [
5740
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5741
- ],
5742
- "requiredtheme": ""
5743
- },
5744
- {
5745
- "id": "double_button_style_3",
5746
- "shareId": "double-button",
5747
- "title": "Double Button Style Three",
5748
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_3.png",
5749
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_3.png",
5750
- "author": "HasThemes",
5751
- "url": "#",
5752
- "demoUrl": "http://demo.wphash.com/htmega/eelement-double-button/",
5753
- "category": "blocks",
5754
- "tags": ["double button","button","blocks"],
5755
- "isPro": "1",
5756
- "tmpType": "pro",
5757
- "builder": ["elementor"],
5758
- "demoType": "blocks",
5759
- "freePlugins": [
5760
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5761
- ],
5762
- "proPlugins": [
5763
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5764
- ],
5765
- "requiredtheme": ""
5766
- },
5767
- {
5768
- "id": "double_button_style_4",
5769
- "shareId": "double-button",
5770
- "title": "Double Button Style Four",
5771
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_4.png",
5772
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_4.png",
5773
- "author": "HasThemes",
5774
- "url": "#",
5775
- "demoUrl": "http://demo.wphash.com/htmega/eelement-double-button/",
5776
- "category": "blocks",
5777
- "tags": ["double button","button","blocks"],
5778
- "isPro": "1",
5779
- "tmpType": "pro",
5780
- "builder": ["elementor"],
5781
- "demoType": "blocks",
5782
- "freePlugins": [
5783
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5784
- ],
5785
- "proPlugins": [
5786
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5787
- ],
5788
- "requiredtheme": ""
5789
- },
5790
- {
5791
- "id": "double_button_style_5",
5792
- "shareId": "double-button",
5793
- "title": "Double Button Style Five",
5794
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/double_button_style_5.png",
5795
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/double_button_style_5.png",
5796
- "author": "HasThemes",
5797
- "url": "#",
5798
- "demoUrl": "http://demo.wphash.com/htmega/eelement-double-button/",
5799
- "category": "blocks",
5800
- "tags": ["double button","button","blocks"],
5801
- "isPro": "1",
5802
- "tmpType": "pro",
5803
- "builder": ["elementor"],
5804
- "demoType": "blocks",
5805
- "freePlugins": [
5806
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5807
- ],
5808
- "proPlugins": [
5809
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5810
- ],
5811
- "requiredtheme": ""
5812
- },
5813
- {
5814
- "id": "dropcaps_style_1",
5815
- "shareId": "dropcaps",
5816
- "title": "Dropcaps Style One",
5817
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_1.png",
5818
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_1.png",
5819
- "author": "HasThemes",
5820
- "url": "#",
5821
- "demoUrl": "http://demo.wphash.com/htmega/element-dropcaps/",
5822
- "category": "blocks",
5823
- "tags": ["dropcaps","blocks"],
5824
- "isPro": "1",
5825
- "tmpType": "pro",
5826
- "builder": ["elementor"],
5827
- "demoType": "blocks",
5828
- "freePlugins": [
5829
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5830
- ],
5831
- "proPlugins": [
5832
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5833
- ],
5834
- "requiredtheme": ""
5835
- },
5836
- {
5837
- "id": "dropcaps_style_2",
5838
- "shareId": "dropcaps",
5839
- "title": "Dropcaps Style Two",
5840
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_2.png",
5841
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_2.png",
5842
- "author": "HasThemes",
5843
- "url": "#",
5844
- "demoUrl": "http://demo.wphash.com/htmega/element-dropcaps/",
5845
- "category": "blocks",
5846
- "tags": ["dropcaps","blocks"],
5847
- "isPro": "1",
5848
- "tmpType": "pro",
5849
- "builder": ["elementor"],
5850
- "demoType": "blocks",
5851
- "freePlugins": [
5852
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5853
- ],
5854
- "proPlugins": [
5855
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5856
- ],
5857
- "requiredtheme": ""
5858
- },
5859
- {
5860
- "id": "dropcaps_style_3",
5861
- "shareId": "dropcaps",
5862
- "title": "Dropcaps Style Three",
5863
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_3.png",
5864
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_3.png",
5865
- "author": "HasThemes",
5866
- "url": "#",
5867
- "demoUrl": "http://demo.wphash.com/htmega/element-dropcaps/",
5868
- "category": "blocks",
5869
- "tags": ["dropcaps","blocks"],
5870
- "isPro": "1",
5871
- "tmpType": "pro",
5872
- "builder": ["elementor"],
5873
- "demoType": "blocks",
5874
- "freePlugins": [
5875
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5876
- ],
5877
- "proPlugins": [
5878
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5879
- ],
5880
- "requiredtheme": ""
5881
- },
5882
- {
5883
- "id": "dropcaps_style_4",
5884
- "shareId": "dropcaps",
5885
- "title": "Dropcaps Style Four",
5886
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_4.png",
5887
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_4.png",
5888
- "author": "HasThemes",
5889
- "url": "#",
5890
- "demoUrl": "http://demo.wphash.com/htmega/element-dropcaps/",
5891
- "category": "blocks",
5892
- "tags": ["dropcaps","blocks"],
5893
- "isPro": "1",
5894
- "tmpType": "pro",
5895
- "builder": ["elementor"],
5896
- "demoType": "blocks",
5897
- "freePlugins": [
5898
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5899
- ],
5900
- "proPlugins": [
5901
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5902
- ],
5903
- "requiredtheme": ""
5904
- },
5905
- {
5906
- "id": "dropcaps_style_5",
5907
- "shareId": "dropcaps",
5908
- "title": "Dropcaps Style Five",
5909
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/dropcaps_style_5.png",
5910
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/dropcaps_style_5.png",
5911
- "author": "HasThemes",
5912
- "url": "#",
5913
- "demoUrl": "http://demo.wphash.com/htmega/element-dropcaps/",
5914
- "category": "blocks",
5915
- "tags": ["dropcaps","blocks"],
5916
- "isPro": "1",
5917
- "tmpType": "pro",
5918
- "builder": ["elementor"],
5919
- "demoType": "blocks",
5920
- "freePlugins": [
5921
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5922
- ],
5923
- "proPlugins": [
5924
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5925
- ],
5926
- "requiredtheme": ""
5927
- },
5928
- {
5929
- "id": "faq_style_1",
5930
- "shareId": "faq",
5931
- "title": "Faq Style One",
5932
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_1.png",
5933
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_1.png",
5934
- "author": "HasThemes",
5935
- "url": "#",
5936
- "demoUrl": "http://demo.wphash.com/htmega/element-faq/",
5937
- "category": "blocks",
5938
- "tags": ["faq","blocks"],
5939
- "isPro": "1",
5940
- "tmpType": "pro",
5941
- "builder": ["elementor"],
5942
- "demoType": "blocks",
5943
- "freePlugins": [
5944
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5945
- ],
5946
- "proPlugins": [
5947
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5948
- ],
5949
- "requiredtheme": ""
5950
- },
5951
- {
5952
- "id": "faq_style_2",
5953
- "shareId": "faq",
5954
- "title": "Faq Style Two",
5955
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_2.png",
5956
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_2.png",
5957
- "author": "HasThemes",
5958
- "url": "#",
5959
- "demoUrl": "http://demo.wphash.com/htmega/element-faq/",
5960
- "category": "blocks",
5961
- "tags": ["faq","blocks"],
5962
- "isPro": "1",
5963
- "tmpType": "pro",
5964
- "builder": ["elementor"],
5965
- "demoType": "blocks",
5966
- "freePlugins": [
5967
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5968
- ],
5969
- "proPlugins": [
5970
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5971
- ],
5972
- "requiredtheme": ""
5973
- },
5974
- {
5975
- "id": "faq_style_3",
5976
- "shareId": "faq",
5977
- "title": "Faq Style Three",
5978
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_3.png",
5979
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_3.png",
5980
- "author": "HasThemes",
5981
- "url": "#",
5982
- "demoUrl": "http://demo.wphash.com/htmega/element-faq/",
5983
- "category": "blocks",
5984
- "tags": ["faq","blocks"],
5985
- "isPro": "1",
5986
- "tmpType": "pro",
5987
- "builder": ["elementor"],
5988
- "demoType": "blocks",
5989
- "freePlugins": [
5990
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
5991
- ],
5992
- "proPlugins": [
5993
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
5994
- ],
5995
- "requiredtheme": ""
5996
- },
5997
- {
5998
- "id": "faq_style_4",
5999
- "shareId": "faq",
6000
- "title": "Faq Style Four",
6001
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_4.png",
6002
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_4.png",
6003
- "author": "HasThemes",
6004
- "url": "#",
6005
- "demoUrl": "http://demo.wphash.com/htmega/element-faq/",
6006
- "category": "blocks",
6007
- "tags": ["faq","blocks"],
6008
- "isPro": "1",
6009
- "tmpType": "pro",
6010
- "builder": ["elementor"],
6011
- "demoType": "blocks",
6012
- "freePlugins": [
6013
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6014
- ],
6015
- "proPlugins": [
6016
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6017
- ],
6018
- "requiredtheme": ""
6019
- },
6020
- {
6021
- "id": "faq_style_5",
6022
- "shareId": "faq",
6023
- "title": "Faq Style Five",
6024
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/faq_style_5.png",
6025
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/faq_style_5.png",
6026
- "author": "HasThemes",
6027
- "url": "#",
6028
- "demoUrl": "http://demo.wphash.com/htmega/element-faq/",
6029
- "category": "blocks",
6030
- "tags": ["faq","blocks"],
6031
- "isPro": "1",
6032
- "tmpType": "pro",
6033
- "builder": ["elementor"],
6034
- "demoType": "blocks",
6035
- "freePlugins": [
6036
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6037
- ],
6038
- "proPlugins": [
6039
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6040
- ],
6041
- "requiredtheme": ""
6042
- },
6043
- {
6044
- "id": "flipbox_style_1",
6045
- "shareId": "flipbox",
6046
- "title": "Flipbox Style One",
6047
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_1.png",
6048
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_1.png",
6049
- "author": "HasThemes",
6050
- "url": "#",
6051
- "demoUrl": "http://demo.wphash.com/htmega/element-flipbox/",
6052
- "category": "blocks",
6053
- "tags": ["flipbox","blocks"],
6054
- "isPro": "1",
6055
- "tmpType": "pro",
6056
- "builder": ["elementor"],
6057
- "demoType": "blocks",
6058
- "freePlugins": [
6059
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6060
- ],
6061
- "proPlugins": [
6062
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6063
- ],
6064
- "requiredtheme": ""
6065
- },
6066
- {
6067
- "id": "flipbox_style_2",
6068
- "shareId": "flipbox",
6069
- "title": "Flipbox Style Two",
6070
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_2.png",
6071
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_2.png",
6072
- "author": "HasThemes",
6073
- "url": "#",
6074
- "demoUrl": "http://demo.wphash.com/htmega/element-flipbox/",
6075
- "category": "blocks",
6076
- "tags": ["flipbox","blocks"],
6077
- "isPro": "1",
6078
- "tmpType": "pro",
6079
- "builder": ["elementor"],
6080
- "demoType": "blocks",
6081
- "freePlugins": [
6082
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6083
- ],
6084
- "proPlugins": [
6085
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6086
- ],
6087
- "requiredtheme": ""
6088
- },
6089
- {
6090
- "id": "flipbox_style_3",
6091
- "shareId": "flipbox",
6092
- "title": "Flipbox Style Three",
6093
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_3.png",
6094
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_3.png",
6095
- "author": "HasThemes",
6096
- "url": "#",
6097
- "demoUrl": "http://demo.wphash.com/htmega/element-flipbox/",
6098
- "category": "blocks",
6099
- "tags": ["flipbox","blocks"],
6100
- "isPro": "1",
6101
- "tmpType": "pro",
6102
- "builder": ["elementor"],
6103
- "demoType": "blocks",
6104
- "freePlugins": [
6105
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6106
- ],
6107
- "proPlugins": [
6108
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6109
- ],
6110
- "requiredtheme": ""
6111
- },
6112
- {
6113
- "id": "flipbox_style_4",
6114
- "shareId": "flipbox",
6115
- "title": "Flipbox Style Four",
6116
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_4.png",
6117
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_4.png",
6118
- "author": "HasThemes",
6119
- "url": "#",
6120
- "demoUrl": "http://demo.wphash.com/htmega/element-flipbox/",
6121
- "category": "blocks",
6122
- "tags": ["flipbox","blocks"],
6123
- "isPro": "1",
6124
- "tmpType": "pro",
6125
- "builder": ["elementor"],
6126
- "demoType": "blocks",
6127
- "freePlugins": [
6128
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6129
- ],
6130
- "proPlugins": [
6131
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6132
- ],
6133
- "requiredtheme": ""
6134
- },
6135
- {
6136
- "id": "flipbox_style_5",
6137
- "shareId": "flipbox",
6138
- "title": "Flipbox Style Five",
6139
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/flipbox_style_5.png",
6140
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/flipbox_style_5.png",
6141
- "author": "HasThemes",
6142
- "url": "#",
6143
- "demoUrl": "http://demo.wphash.com/htmega/element-flipbox/",
6144
- "category": "blocks",
6145
- "tags": ["flipbox","blocks"],
6146
- "isPro": "1",
6147
- "tmpType": "pro",
6148
- "builder": ["elementor"],
6149
- "demoType": "blocks",
6150
- "freePlugins": [
6151
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6152
- ],
6153
- "proPlugins": [
6154
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6155
- ],
6156
- "requiredtheme": ""
6157
- },
6158
- {
6159
- "id": "google_map_style_1",
6160
- "shareId": "google-map",
6161
- "title": "Google Map Style One",
6162
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_1.png",
6163
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_1.png",
6164
- "author": "HasThemes",
6165
- "url": "#",
6166
- "demoUrl": "http://demo.wphash.com/htmega/element-google-map/",
6167
- "category": "blocks",
6168
- "tags": ["google map","map","google"],
6169
- "isPro": "1",
6170
- "tmpType": "pro",
6171
- "builder": ["elementor"],
6172
- "demoType": "blocks",
6173
- "freePlugins": [
6174
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6175
- ],
6176
- "proPlugins": [
6177
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6178
- ],
6179
- "requiredtheme": ""
6180
- },
6181
- {
6182
- "id": "google_map_style_2",
6183
- "shareId": "google-map",
6184
- "title": "Google Map Style Two",
6185
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_2.png",
6186
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_2.png",
6187
- "author": "HasThemes",
6188
- "url": "#",
6189
- "demoUrl": "http://demo.wphash.com/htmega/element-google-map/",
6190
- "category": "blocks",
6191
- "tags": ["google map","map","google"],
6192
- "isPro": "1",
6193
- "tmpType": "pro",
6194
- "builder": ["elementor"],
6195
- "demoType": "blocks",
6196
- "freePlugins": [
6197
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6198
- ],
6199
- "proPlugins": [
6200
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6201
- ],
6202
- "requiredtheme": ""
6203
- },
6204
- {
6205
- "id": "google_map_style_3",
6206
- "shareId": "google-map",
6207
- "title": "Google Map Style Three",
6208
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_3.png",
6209
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_3.png",
6210
- "author": "HasThemes",
6211
- "url": "#",
6212
- "demoUrl": "http://demo.wphash.com/htmega/element-google-map/",
6213
- "category": "blocks",
6214
- "tags": ["google map","map","google"],
6215
- "isPro": "1",
6216
- "tmpType": "pro",
6217
- "builder": ["elementor"],
6218
- "demoType": "blocks",
6219
- "freePlugins": [
6220
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6221
- ],
6222
- "proPlugins": [
6223
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6224
- ],
6225
- "requiredtheme": ""
6226
- },
6227
- {
6228
- "id": "google_map_style_4",
6229
- "shareId": "google-map",
6230
- "title": "Google Map Style Four",
6231
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_4.png",
6232
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_4.png",
6233
- "author": "HasThemes",
6234
- "url": "#",
6235
- "demoUrl": "http://demo.wphash.com/htmega/element-google-map/",
6236
- "category": "blocks",
6237
- "tags": ["google map","map","google"],
6238
- "isPro": "1",
6239
- "tmpType": "pro",
6240
- "builder": ["elementor"],
6241
- "demoType": "blocks",
6242
- "freePlugins": [
6243
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6244
- ],
6245
- "proPlugins": [
6246
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6247
- ],
6248
- "requiredtheme": ""
6249
- },
6250
- {
6251
- "id": "google_map_style_5",
6252
- "shareId": "google-map",
6253
- "title": "Google Map Style Five",
6254
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_5.png",
6255
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_5.png",
6256
- "author": "HasThemes",
6257
- "url": "#",
6258
- "demoUrl": "http://demo.wphash.com/htmega/element-google-map/",
6259
- "category": "blocks",
6260
- "tags": ["google map","map","google"],
6261
- "isPro": "1",
6262
- "tmpType": "pro",
6263
- "builder": ["elementor"],
6264
- "demoType": "blocks",
6265
- "freePlugins": [
6266
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6267
- ],
6268
- "proPlugins": [
6269
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6270
- ],
6271
- "requiredtheme": ""
6272
- },
6273
- {
6274
- "id": "google_map_style_6",
6275
- "shareId": "google-map",
6276
- "title": "Google Map Style Six",
6277
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_6.png",
6278
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_6.png",
6279
- "author": "HasThemes",
6280
- "url": "#",
6281
- "demoUrl": "http://demo.wphash.com/htmega/element-google-map/",
6282
- "category": "blocks",
6283
- "tags": ["google map","map","google"],
6284
- "isPro": "1",
6285
- "tmpType": "pro",
6286
- "builder": ["elementor"],
6287
- "demoType": "blocks",
6288
- "freePlugins": [
6289
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6290
- ],
6291
- "proPlugins": [
6292
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6293
- ],
6294
- "requiredtheme": ""
6295
- },
6296
- {
6297
- "id": "google_map_style_7",
6298
- "shareId": "google-map",
6299
- "title": "Google Map Style Seven",
6300
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/google_map_style_7.png",
6301
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/google_map_style_7.png",
6302
- "author": "HasThemes",
6303
- "url": "#",
6304
- "demoUrl": "http://demo.wphash.com/htmega/element-google-map/",
6305
- "category": "blocks",
6306
- "tags": ["google map","map","google"],
6307
- "isPro": "1",
6308
- "tmpType": "pro",
6309
- "builder": ["elementor"],
6310
- "demoType": "blocks",
6311
- "freePlugins": [
6312
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6313
- ],
6314
- "proPlugins": [
6315
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6316
- ],
6317
- "requiredtheme": ""
6318
- },
6319
- {
6320
- "id": "heading_style_1",
6321
- "shareId": "heading",
6322
- "title": "Heading Style One",
6323
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_1.png",
6324
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_1.png",
6325
- "author": "HasThemes",
6326
- "url": "#",
6327
- "demoUrl": "http://demo.wphash.com/htmega/element-heading/",
6328
- "category": "blocks",
6329
- "tags": ["heading","blocks"],
6330
- "isPro": "1",
6331
- "tmpType": "pro",
6332
- "builder": ["elementor"],
6333
- "demoType": "blocks",
6334
- "freePlugins": [
6335
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6336
- ],
6337
- "proPlugins": [
6338
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6339
- ],
6340
- "requiredtheme": ""
6341
- },
6342
- {
6343
- "id": "heading_style_2",
6344
- "shareId": "heading",
6345
- "title": "Heading Style Two",
6346
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_2.png",
6347
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_2.png",
6348
- "author": "HasThemes",
6349
- "url": "#",
6350
- "demoUrl": "http://demo.wphash.com/htmega/element-heading/",
6351
- "category": "blocks",
6352
- "tags": ["heading","blocks"],
6353
- "isPro": "1",
6354
- "tmpType": "pro",
6355
- "builder": ["elementor"],
6356
- "demoType": "blocks",
6357
- "freePlugins": [
6358
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6359
- ],
6360
- "proPlugins": [
6361
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6362
- ],
6363
- "requiredtheme": ""
6364
- },
6365
- {
6366
- "id": "heading_style_3",
6367
- "shareId": "heading",
6368
- "title": "Heading Style Three",
6369
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_3.png",
6370
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_3.png",
6371
- "author": "HasThemes",
6372
- "url": "#",
6373
- "demoUrl": "http://demo.wphash.com/htmega/element-heading/",
6374
- "category": "blocks",
6375
- "tags": ["heading","blocks"],
6376
- "isPro": "1",
6377
- "tmpType": "pro",
6378
- "builder": ["elementor"],
6379
- "demoType": "blocks",
6380
- "freePlugins": [
6381
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6382
- ],
6383
- "proPlugins": [
6384
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6385
- ],
6386
- "requiredtheme": ""
6387
- },
6388
- {
6389
- "id": "heading_style_4",
6390
- "shareId": "heading",
6391
- "title": "Heading Style Four",
6392
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_4.png",
6393
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_4.png",
6394
- "author": "HasThemes",
6395
- "url": "#",
6396
- "demoUrl": "http://demo.wphash.com/htmega/element-heading/",
6397
- "category": "blocks",
6398
- "tags": ["heading","blocks"],
6399
- "isPro": "1",
6400
- "tmpType": "pro",
6401
- "builder": ["elementor"],
6402
- "demoType": "blocks",
6403
- "freePlugins": [
6404
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6405
- ],
6406
- "proPlugins": [
6407
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6408
- ],
6409
- "requiredtheme": ""
6410
- },
6411
- {
6412
- "id": "heading_style_5",
6413
- "shareId": "heading",
6414
- "title": "Heading Style Five",
6415
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_5.png",
6416
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_5.png",
6417
- "author": "HasThemes",
6418
- "url": "#",
6419
- "demoUrl": "http://demo.wphash.com/htmega/element-heading/",
6420
- "category": "blocks",
6421
- "tags": ["heading","blocks"],
6422
- "isPro": "1",
6423
- "tmpType": "pro",
6424
- "builder": ["elementor"],
6425
- "demoType": "blocks",
6426
- "freePlugins": [
6427
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6428
- ],
6429
- "proPlugins": [
6430
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6431
- ],
6432
- "requiredtheme": ""
6433
- },
6434
- {
6435
- "id": "heading_style_6",
6436
- "shareId": "heading",
6437
- "title": "Heading Style Six",
6438
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_6.png",
6439
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_6.png",
6440
- "author": "HasThemes",
6441
- "url": "#",
6442
- "demoUrl": "http://demo.wphash.com/htmega/element-heading/",
6443
- "category": "blocks",
6444
- "tags": ["heading","blocks"],
6445
- "isPro": "1",
6446
- "tmpType": "pro",
6447
- "builder": ["elementor"],
6448
- "demoType": "blocks",
6449
- "freePlugins": [
6450
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6451
- ],
6452
- "proPlugins": [
6453
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6454
- ],
6455
- "requiredtheme": ""
6456
- },
6457
- {
6458
- "id": "heading_style_7",
6459
- "shareId": "heading",
6460
- "title": "Heading Style Seven",
6461
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/heading_style_7.png",
6462
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/heading_style_7.png",
6463
- "author": "HasThemes",
6464
- "url": "#",
6465
- "demoUrl": "http://demo.wphash.com/htmega/element-heading/",
6466
- "category": "blocks",
6467
- "tags": ["heading","blocks"],
6468
- "isPro": "1",
6469
- "tmpType": "pro",
6470
- "builder": ["elementor"],
6471
- "demoType": "blocks",
6472
- "freePlugins": [
6473
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6474
- ],
6475
- "proPlugins": [
6476
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6477
- ],
6478
- "requiredtheme": ""
6479
- },
6480
- {
6481
- "id": "image_comparison_style_1",
6482
- "shareId": "image-comparison",
6483
- "title": "Image Comparison Style One",
6484
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_1.png",
6485
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_1.png",
6486
- "author": "HasThemes",
6487
- "url": "#",
6488
- "demoUrl": "http://demo.wphash.com/htmega/element-image-comparison/",
6489
- "category": "blocks",
6490
- "tags": ["image comparison","image","comparison","blocks"],
6491
- "isPro": "1",
6492
- "tmpType": "pro",
6493
- "builder": ["elementor"],
6494
- "demoType": "blocks",
6495
- "freePlugins": [
6496
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6497
- ],
6498
- "proPlugins": [
6499
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6500
- ],
6501
- "requiredtheme": ""
6502
- },
6503
- {
6504
- "id": "image_comparison_style_2",
6505
- "shareId": "image-comparison",
6506
- "title": "Image Comparison Style Two",
6507
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_2.png",
6508
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_2.png",
6509
- "author": "HasThemes",
6510
- "url": "#",
6511
- "demoUrl": "http://demo.wphash.com/htmega/element-image-comparison/",
6512
- "category": "blocks",
6513
- "tags": ["image comparison","image","comparison","blocks"],
6514
- "isPro": "1",
6515
- "tmpType": "pro",
6516
- "builder": ["elementor"],
6517
- "demoType": "blocks",
6518
- "freePlugins": [
6519
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6520
- ],
6521
- "proPlugins": [
6522
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6523
- ],
6524
- "requiredtheme": ""
6525
- },
6526
- {
6527
- "id": "image_comparison_style_3",
6528
- "shareId": "image-comparison",
6529
- "title": "Image Comparison Style Three",
6530
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_3.png",
6531
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_3.png",
6532
- "author": "HasThemes",
6533
- "url": "#",
6534
- "demoUrl": "http://demo.wphash.com/htmega/element-image-comparison/",
6535
- "category": "blocks",
6536
- "tags": ["image comparison","image","comparison","blocks"],
6537
- "isPro": "1",
6538
- "tmpType": "pro",
6539
- "builder": ["elementor"],
6540
- "demoType": "blocks",
6541
- "freePlugins": [
6542
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6543
- ],
6544
- "proPlugins": [
6545
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6546
- ],
6547
- "requiredtheme": ""
6548
- },
6549
- {
6550
- "id": "image_comparison_style_4",
6551
- "shareId": "image-comparison",
6552
- "title": "Image Comparison Style Four",
6553
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_4.png",
6554
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_4.png",
6555
- "author": "HasThemes",
6556
- "url": "#",
6557
- "demoUrl": "http://demo.wphash.com/htmega/element-image-comparison/",
6558
- "category": "blocks",
6559
- "tags": ["image comparison","image","comparison","blocks"],
6560
- "isPro": "1",
6561
- "tmpType": "pro",
6562
- "builder": ["elementor"],
6563
- "demoType": "blocks",
6564
- "freePlugins": [
6565
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6566
- ],
6567
- "proPlugins": [
6568
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6569
- ],
6570
- "requiredtheme": ""
6571
- },
6572
- {
6573
- "id": "image_comparison_style_5",
6574
- "shareId": "image-comparison",
6575
- "title": "Image Comparison Style Five",
6576
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_comparison_style_5.png",
6577
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_comparison_style_5.png",
6578
- "author": "HasThemes",
6579
- "url": "#",
6580
- "demoUrl": "http://demo.wphash.com/htmega/element-image-comparison/",
6581
- "category": "blocks",
6582
- "tags": ["image comparison","image","comparison","blocks"],
6583
- "isPro": "1",
6584
- "tmpType": "pro",
6585
- "builder": ["elementor"],
6586
- "demoType": "blocks",
6587
- "freePlugins": [
6588
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6589
- ],
6590
- "proPlugins": [
6591
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6592
- ],
6593
- "requiredtheme": ""
6594
- },
6595
- {
6596
- "id": "image_justify_style_1",
6597
- "shareId": "image-justify",
6598
- "title": "Image Justify Style One",
6599
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_1.png",
6600
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_1.png",
6601
- "author": "HasThemes",
6602
- "url": "#",
6603
- "demoUrl": "http://demo.wphash.com/htmega/element-image-justify/",
6604
- "category": "blocks",
6605
- "tags": ["image justify","image","justify","blocks"],
6606
- "isPro": "1",
6607
- "tmpType": "pro",
6608
- "builder": ["elementor"],
6609
- "demoType": "blocks",
6610
- "freePlugins": [
6611
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6612
- ],
6613
- "proPlugins": [
6614
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6615
- ],
6616
- "requiredtheme": ""
6617
- },
6618
- {
6619
- "id": "image_justify_style_2",
6620
- "shareId": "image-justify",
6621
- "title": "Image Justify Style Two",
6622
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_2.png",
6623
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_2.png",
6624
- "author": "HasThemes",
6625
- "url": "#",
6626
- "demoUrl": "http://demo.wphash.com/htmega/element-image-justify/",
6627
- "category": "blocks",
6628
- "tags": ["image justify","image","justify","blocks"],
6629
- "isPro": "1",
6630
- "tmpType": "pro",
6631
- "builder": ["elementor"],
6632
- "demoType": "blocks",
6633
- "freePlugins": [
6634
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6635
- ],
6636
- "proPlugins": [
6637
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6638
- ],
6639
- "requiredtheme": ""
6640
- },
6641
- {
6642
- "id": "image_justify_style_3",
6643
- "shareId": "image-justify",
6644
- "title": "Image Justify Style Three",
6645
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_3.png",
6646
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_3.png",
6647
- "author": "HasThemes",
6648
- "url": "#",
6649
- "demoUrl": "http://demo.wphash.com/htmega/element-image-justify/",
6650
- "category": "blocks",
6651
- "tags": ["image justify","image","justify","blocks"],
6652
- "isPro": "1",
6653
- "tmpType": "pro",
6654
- "builder": ["elementor"],
6655
- "demoType": "blocks",
6656
- "freePlugins": [
6657
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6658
- ],
6659
- "proPlugins": [
6660
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6661
- ],
6662
- "requiredtheme": ""
6663
- },
6664
- {
6665
- "id": "image_justify_style_4",
6666
- "shareId": "image-justify",
6667
- "title": "Image Justify Style Four",
6668
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_justify_style_4.png",
6669
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_justify_style_4.png",
6670
- "author": "HasThemes",
6671
- "url": "#",
6672
- "demoUrl": "http://demo.wphash.com/htmega/element-image-justify/",
6673
- "category": "blocks",
6674
- "tags": ["image justify","image","justify","blocks"],
6675
- "isPro": "1",
6676
- "tmpType": "pro",
6677
- "builder": ["elementor"],
6678
- "demoType": "blocks",
6679
- "freePlugins": [
6680
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6681
- ],
6682
- "proPlugins": [
6683
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6684
- ],
6685
- "requiredtheme": ""
6686
- },
6687
- {
6688
- "id": "image_magnifier_style_1",
6689
- "shareId": "image-magnifier",
6690
- "title": "Image Magnifier Style One",
6691
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_1.png",
6692
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_1.png",
6693
- "author": "HasThemes",
6694
- "url": "#",
6695
- "demoUrl": "http://demo.wphash.com/htmega/element-image-magnifier/",
6696
- "category": "blocks",
6697
- "tags": ["image magnifier","image","magnifier"],
6698
- "isPro": "1",
6699
- "tmpType": "pro",
6700
- "builder": ["elementor"],
6701
- "demoType": "blocks",
6702
- "freePlugins": [
6703
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6704
- ],
6705
- "proPlugins": [
6706
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6707
- ],
6708
- "requiredtheme": ""
6709
- },
6710
- {
6711
- "id": "image_magnifier_style_2",
6712
- "shareId": "image-magnifier",
6713
- "title": "Image Magnifier Style Two",
6714
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_2.png",
6715
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_2.png",
6716
- "author": "HasThemes",
6717
- "url": "#",
6718
- "demoUrl": "http://demo.wphash.com/htmega/element-image-magnifier/",
6719
- "category": "blocks",
6720
- "tags": ["image magnifier","image","magnifier"],
6721
- "isPro": "1",
6722
- "tmpType": "pro",
6723
- "builder": ["elementor"],
6724
- "demoType": "blocks",
6725
- "freePlugins": [
6726
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6727
- ],
6728
- "proPlugins": [
6729
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6730
- ],
6731
- "requiredtheme": ""
6732
- },
6733
- {
6734
- "id": "image_magnifier_style_3",
6735
- "shareId": "image-magnifier",
6736
- "title": "Image Magnifier Style Three",
6737
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_magnifier_style_3.png",
6738
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_magnifier_style_3.png",
6739
- "author": "HasThemes",
6740
- "url": "#",
6741
- "demoUrl": "http://demo.wphash.com/htmega/element-image-magnifier/",
6742
- "category": "blocks",
6743
- "tags": ["image magnifier","image","magnifier"],
6744
- "isPro": "1",
6745
- "tmpType": "pro",
6746
- "builder": ["elementor"],
6747
- "demoType": "blocks",
6748
- "freePlugins": [
6749
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6750
- ],
6751
- "proPlugins": [
6752
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6753
- ],
6754
- "requiredtheme": ""
6755
- },
6756
- {
6757
- "id": "image_marker_style_1",
6758
- "shareId": "image-marker",
6759
- "title": "Image Marker Style One",
6760
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_1.png",
6761
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_1.png",
6762
- "author": "HasThemes",
6763
- "url": "#",
6764
- "demoUrl": "http://demo.wphash.com/htmega/element-image-marker/",
6765
- "category": "blocks",
6766
- "tags": ["image marker","image","marker","blocks"],
6767
- "isPro": "1",
6768
- "tmpType": "pro",
6769
- "builder": ["elementor"],
6770
- "demoType": "blocks",
6771
- "freePlugins": [
6772
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6773
- ],
6774
- "proPlugins": [
6775
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6776
- ],
6777
- "requiredtheme": ""
6778
- },
6779
- {
6780
- "id": "image_marker_style_2",
6781
- "shareId": "image-marker",
6782
- "title": "Image Marker Style Two",
6783
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_2.png",
6784
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_2.png",
6785
- "author": "HasThemes",
6786
- "url": "#",
6787
- "demoUrl": "http://demo.wphash.com/htmega/element-image-marker/",
6788
- "category": "blocks",
6789
- "tags": ["image marker","image","marker","blocks"],
6790
- "isPro": "1",
6791
- "tmpType": "pro",
6792
- "builder": ["elementor"],
6793
- "demoType": "blocks",
6794
- "freePlugins": [
6795
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6796
- ],
6797
- "proPlugins": [
6798
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6799
- ],
6800
- "requiredtheme": ""
6801
- },
6802
- {
6803
- "id": "image_marker_style_3",
6804
- "shareId": "image-marker",
6805
- "title": "Image Marker Style Three",
6806
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_3.png",
6807
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_3.png",
6808
- "author": "HasThemes",
6809
- "url": "#",
6810
- "demoUrl": "http://demo.wphash.com/htmega/element-image-marker/",
6811
- "category": "blocks",
6812
- "tags": ["image marker","image","marker","blocks"],
6813
- "isPro": "1",
6814
- "tmpType": "pro",
6815
- "builder": ["elementor"],
6816
- "demoType": "blocks",
6817
- "freePlugins": [
6818
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6819
- ],
6820
- "proPlugins": [
6821
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6822
- ],
6823
- "requiredtheme": ""
6824
- },
6825
- {
6826
- "id": "image_marker_style_4",
6827
- "shareId": "image-marker",
6828
- "title": "Image Marker Style Four",
6829
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_4.png",
6830
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_4.png",
6831
- "author": "HasThemes",
6832
- "url": "#",
6833
- "demoUrl": "http://demo.wphash.com/htmega/element-image-marker/",
6834
- "category": "blocks",
6835
- "tags": ["image marker","image","marker","blocks"],
6836
- "isPro": "1",
6837
- "tmpType": "pro",
6838
- "builder": ["elementor"],
6839
- "demoType": "blocks",
6840
- "freePlugins": [
6841
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6842
- ],
6843
- "proPlugins": [
6844
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6845
- ],
6846
- "requiredtheme": ""
6847
- },
6848
- {
6849
- "id": "image_marker_style_5",
6850
- "shareId": "image-marker",
6851
- "title": "Image Marker Style Five",
6852
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_marker_style_5.png",
6853
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_marker_style_5.png",
6854
- "author": "HasThemes",
6855
- "url": "#",
6856
- "demoUrl": "http://demo.wphash.com/htmega/element-image-marker/",
6857
- "category": "blocks",
6858
- "tags": ["image marker","image","marker","blocks"],
6859
- "isPro": "1",
6860
- "tmpType": "pro",
6861
- "builder": ["elementor"],
6862
- "demoType": "blocks",
6863
- "freePlugins": [
6864
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6865
- ],
6866
- "proPlugins": [
6867
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6868
- ],
6869
- "requiredtheme": ""
6870
- },
6871
- {
6872
- "id": "image_masonry_style_1",
6873
- "shareId": "image-masonry",
6874
- "title": "Image Masonry Style One",
6875
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_1.png",
6876
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_1.png",
6877
- "author": "HasThemes",
6878
- "url": "#",
6879
- "demoUrl": "http://demo.wphash.com/htmega/element-image-masonry/",
6880
- "category": "blocks",
6881
- "tags": ["image masonry","image","masonry","blocks"],
6882
- "isPro": "1",
6883
- "tmpType": "pro",
6884
- "builder": ["elementor"],
6885
- "demoType": "blocks",
6886
- "freePlugins": [
6887
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6888
- ],
6889
- "proPlugins": [
6890
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6891
- ],
6892
- "requiredtheme": ""
6893
- },
6894
- {
6895
- "id": "image_masonry_style_2",
6896
- "shareId": "image-masonry",
6897
- "title": "Image Masonry Style Two",
6898
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_2.png",
6899
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_2.png",
6900
- "author": "HasThemes",
6901
- "url": "#",
6902
- "demoUrl": "http://demo.wphash.com/htmega/element-image-masonry/",
6903
- "category": "blocks",
6904
- "tags": ["image masonry","image","masonry","blocks"],
6905
- "isPro": "1",
6906
- "tmpType": "pro",
6907
- "builder": ["elementor"],
6908
- "demoType": "blocks",
6909
- "freePlugins": [
6910
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6911
- ],
6912
- "proPlugins": [
6913
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6914
- ],
6915
- "requiredtheme": ""
6916
- },
6917
- {
6918
- "id": "image_masonry_style_3",
6919
- "shareId": "image-masonry",
6920
- "title": "Image Masonry Style Three",
6921
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_3.png",
6922
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_3.png",
6923
- "author": "HasThemes",
6924
- "url": "#",
6925
- "demoUrl": "http://demo.wphash.com/htmega/element-image-masonry/",
6926
- "category": "blocks",
6927
- "tags": ["image masonry","image","masonry","blocks"],
6928
- "isPro": "1",
6929
- "tmpType": "pro",
6930
- "builder": ["elementor"],
6931
- "demoType": "blocks",
6932
- "freePlugins": [
6933
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6934
- ],
6935
- "proPlugins": [
6936
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6937
- ],
6938
- "requiredtheme": ""
6939
- },
6940
- {
6941
- "id": "image_masonry_style_4",
6942
- "shareId": "image-masonry",
6943
- "title": "Image Masonry Style Four",
6944
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_4.png",
6945
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_4.png",
6946
- "author": "HasThemes",
6947
- "url": "#",
6948
- "demoUrl": "http://demo.wphash.com/htmega/element-image-masonry/",
6949
- "category": "blocks",
6950
- "tags": ["image masonry","image","masonry","blocks"],
6951
- "isPro": "1",
6952
- "tmpType": "pro",
6953
- "builder": ["elementor"],
6954
- "demoType": "blocks",
6955
- "freePlugins": [
6956
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6957
- ],
6958
- "proPlugins": [
6959
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6960
- ],
6961
- "requiredtheme": ""
6962
- },
6963
- {
6964
- "id": "image_masonry_style_5",
6965
- "shareId": "image-masonry",
6966
- "title": "Image Masonry Style Five",
6967
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/image_masonry_style_5.png",
6968
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/image_masonry_style_5.png",
6969
- "author": "HasThemes",
6970
- "url": "#",
6971
- "demoUrl": "http://demo.wphash.com/htmega/element-image-masonry/",
6972
- "category": "blocks",
6973
- "tags": ["image masonry","image","masonry","blocks"],
6974
- "isPro": "1",
6975
- "tmpType": "pro",
6976
- "builder": ["elementor"],
6977
- "demoType": "blocks",
6978
- "freePlugins": [
6979
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
6980
- ],
6981
- "proPlugins": [
6982
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
6983
- ],
6984
- "requiredtheme": ""
6985
- },
6986
- {
6987
- "id": "inline_menu_style_1",
6988
- "shareId": "inline-menu",
6989
- "title": "Inline Menu Style One",
6990
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_1.png",
6991
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_1.png",
6992
- "author": "HasThemes",
6993
- "url": "#",
6994
- "demoUrl": "http://demo.wphash.com/htmega/element-inline-menu/",
6995
- "category": "blocks",
6996
- "tags": ["inline menu","menu","inline","blocks"],
6997
- "isPro": "1",
6998
- "tmpType": "pro",
6999
- "builder": ["elementor"],
7000
- "demoType": "blocks",
7001
- "freePlugins": [
7002
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7003
- ],
7004
- "proPlugins": [
7005
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7006
- ],
7007
- "requiredtheme": ""
7008
- },
7009
- {
7010
- "id": "inline_menu_style_2",
7011
- "shareId": "inline-menu",
7012
- "title": "Inline Menu Style Two",
7013
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_2.png",
7014
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_2.png",
7015
- "author": "HasThemes",
7016
- "url": "#",
7017
- "demoUrl": "http://demo.wphash.com/htmega/element-inline-menu/",
7018
- "category": "blocks",
7019
- "tags": ["inline menu","menu","inline","blocks"],
7020
- "isPro": "1",
7021
- "tmpType": "pro",
7022
- "builder": ["elementor"],
7023
- "demoType": "blocks",
7024
- "freePlugins": [
7025
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7026
- ],
7027
- "proPlugins": [
7028
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7029
- ],
7030
- "requiredtheme": ""
7031
- },
7032
- {
7033
- "id": "inline_menu_style_3",
7034
- "shareId": "inline-menu",
7035
- "title": "Inline Menu Style Three",
7036
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_3.png",
7037
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_3.png",
7038
- "author": "HasThemes",
7039
- "url": "#",
7040
- "demoUrl": "http://demo.wphash.com/htmega/element-inline-menu/",
7041
- "category": "blocks",
7042
- "tags": ["inline menu","menu","inline","blocks"],
7043
- "isPro": "1",
7044
- "tmpType": "pro",
7045
- "builder": ["elementor"],
7046
- "demoType": "blocks",
7047
- "freePlugins": [
7048
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7049
- ],
7050
- "proPlugins": [
7051
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7052
- ],
7053
- "requiredtheme": ""
7054
- },
7055
- {
7056
- "id": "inline_menu_style_4",
7057
- "shareId": "inline-menu",
7058
- "title": "Inline Menu Style Four",
7059
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_4.png",
7060
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_4.png",
7061
- "author": "HasThemes",
7062
- "url": "#",
7063
- "demoUrl": "http://demo.wphash.com/htmega/element-inline-menu/",
7064
- "category": "blocks",
7065
- "tags": ["inline menu","menu","inline","blocks"],
7066
- "isPro": "1",
7067
- "tmpType": "pro",
7068
- "builder": ["elementor"],
7069
- "demoType": "blocks",
7070
- "freePlugins": [
7071
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7072
- ],
7073
- "proPlugins": [
7074
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7075
- ],
7076
- "requiredtheme": ""
7077
- },
7078
- {
7079
- "id": "inline_menu_style_5",
7080
- "shareId": "inline-menu",
7081
- "title": "Inline Menu Style Five",
7082
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_5.png",
7083
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_5.png",
7084
- "author": "HasThemes",
7085
- "url": "#",
7086
- "demoUrl": "http://demo.wphash.com/htmega/element-inline-menu/",
7087
- "category": "blocks",
7088
- "tags": ["inline menu","menu","inline","blocks"],
7089
- "isPro": "1",
7090
- "tmpType": "pro",
7091
- "builder": ["elementor"],
7092
- "demoType": "blocks",
7093
- "freePlugins": [
7094
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7095
- ],
7096
- "proPlugins": [
7097
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7098
- ],
7099
- "requiredtheme": ""
7100
- },
7101
- {
7102
- "id": "inline_menu_style_6",
7103
- "shareId": "inline-menu",
7104
- "title": "Inline Menu Style Six",
7105
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_6.png",
7106
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_6.png",
7107
- "author": "HasThemes",
7108
- "url": "#",
7109
- "demoUrl": "http://demo.wphash.com/htmega/element-inline-menu/",
7110
- "category": "blocks",
7111
- "tags": ["inline menu","menu","inline","blocks"],
7112
- "isPro": "1",
7113
- "tmpType": "pro",
7114
- "builder": ["elementor"],
7115
- "demoType": "blocks",
7116
- "freePlugins": [
7117
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7118
- ],
7119
- "proPlugins": [
7120
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7121
- ],
7122
- "requiredtheme": ""
7123
- },
7124
- {
7125
- "id": "inline_menu_style_7",
7126
- "shareId": "inline-menu",
7127
- "title": "Inline Menu Style Seven",
7128
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/inline_menu_style_7.png",
7129
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/inline_menu_style_7.png",
7130
- "author": "HasThemes",
7131
- "url": "#",
7132
- "demoUrl": "http://demo.wphash.com/htmega/element-inline-menu/",
7133
- "category": "blocks",
7134
- "tags": ["inline menu","menu","inline","blocks"],
7135
- "isPro": "1",
7136
- "tmpType": "pro",
7137
- "builder": ["elementor"],
7138
- "demoType": "blocks",
7139
- "freePlugins": [
7140
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7141
- ],
7142
- "proPlugins": [
7143
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7144
- ],
7145
- "requiredtheme": ""
7146
- },
7147
- {
7148
- "id": "instagram_feed_style_1",
7149
- "shareId": "instagram",
7150
- "title": "Instagram Feed Style One (Third party)",
7151
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_feed_style_1.png",
7152
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_feed_style_1.png",
7153
- "author": "HasThemes",
7154
- "url": "#",
7155
- "demoUrl": "http://demo.wphash.com/htmega/element-instagram-feed/",
7156
- "category": "blocks",
7157
- "tags": ["instagram feed","instagram","feed","blocks"],
7158
- "isPro": "1",
7159
- "tmpType": "pro",
7160
- "builder": ["elementor"],
7161
- "demoType": "blocks",
7162
- "freePlugins": [
7163
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7164
- ],
7165
- "proPlugins": [
7166
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7167
- ],
7168
- "requiredtheme": ""
7169
- },
7170
- {
7171
- "id": "instagram_style_1",
7172
- "shareId": "instagram",
7173
- "title": "Instagram Style One",
7174
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_1.png",
7175
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_1.png",
7176
- "author": "HasThemes",
7177
- "url": "#",
7178
- "demoUrl": "http://demo.wphash.com/htmega/element-instagram/",
7179
- "category": "blocks",
7180
- "tags": ["instagram","blocks","instagram feed","feed"],
7181
- "isPro": "1",
7182
- "tmpType": "pro",
7183
- "builder": ["elementor"],
7184
- "demoType": "blocks",
7185
- "freePlugins": [
7186
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7187
- ],
7188
- "proPlugins": [
7189
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7190
- ],
7191
- "requiredtheme": ""
7192
- },
7193
- {
7194
- "id": "instagram_style_2",
7195
- "shareId": "instagram",
7196
- "title": "Instagram Style Two",
7197
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_2.png",
7198
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_2.png",
7199
- "author": "HasThemes",
7200
- "url": "#",
7201
- "demoUrl": "http://demo.wphash.com/htmega/element-instagram/",
7202
- "category": "blocks",
7203
- "tags": ["instagram","blocks","instagram feed","feed"],
7204
- "isPro": "1",
7205
- "tmpType": "pro",
7206
- "builder": ["elementor"],
7207
- "demoType": "blocks",
7208
- "freePlugins": [
7209
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7210
- ],
7211
- "proPlugins": [
7212
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7213
- ],
7214
- "requiredtheme": ""
7215
- },
7216
- {
7217
- "id": "instagram_style_3",
7218
- "shareId": "instagram",
7219
- "title": "Instagram Style Three",
7220
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_3.png",
7221
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_3.png",
7222
- "author": "HasThemes",
7223
- "url": "#",
7224
- "demoUrl": "http://demo.wphash.com/htmega/element-instagram/",
7225
- "category": "blocks",
7226
- "tags": ["instagram","blocks","instagram feed","feed"],
7227
- "isPro": "1",
7228
- "tmpType": "pro",
7229
- "builder": ["elementor"],
7230
- "demoType": "blocks",
7231
- "freePlugins": [
7232
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7233
- ],
7234
- "proPlugins": [
7235
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7236
- ],
7237
- "requiredtheme": ""
7238
- },
7239
- {
7240
- "id": "instagram_style_4",
7241
- "shareId": "instagram",
7242
- "title": "Instagram Style Four",
7243
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_4.png",
7244
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_4.png",
7245
- "author": "HasThemes",
7246
- "url": "#",
7247
- "demoUrl": "http://demo.wphash.com/htmega/element-instagram/",
7248
- "category": "blocks",
7249
- "tags": ["instagram","blocks","instagram feed","feed"],
7250
- "isPro": "1",
7251
- "tmpType": "pro",
7252
- "builder": ["elementor"],
7253
- "demoType": "blocks",
7254
- "freePlugins": [
7255
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7256
- ],
7257
- "proPlugins": [
7258
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7259
- ],
7260
- "requiredtheme": ""
7261
- },
7262
- {
7263
- "id": "instagram_style_5",
7264
- "shareId": "instagram",
7265
- "title": "Instagram Style Five",
7266
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/instagram_style_5.png",
7267
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/instagram_style_5.png",
7268
- "author": "HasThemes",
7269
- "url": "#",
7270
- "demoUrl": "http://demo.wphash.com/htmega/element-instagram/",
7271
- "category": "blocks",
7272
- "tags": ["instagram","blocks","instagram feed","feed"],
7273
- "isPro": "1",
7274
- "tmpType": "pro",
7275
- "builder": ["elementor"],
7276
- "demoType": "blocks",
7277
- "freePlugins": [
7278
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7279
- ],
7280
- "proPlugins": [
7281
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7282
- ],
7283
- "requiredtheme": ""
7284
- },
7285
- {
7286
- "id": "light_box_style_1",
7287
- "shareId": "light-box",
7288
- "title": "Light Box Style One",
7289
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_1.png",
7290
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_1.png",
7291
- "author": "HasThemes",
7292
- "url": "#",
7293
- "demoUrl": "http://demo.wphash.com/htmega/element-light-box/",
7294
- "category": "blocks",
7295
- "tags": ["light box","light","box","blocks"],
7296
- "isPro": "1",
7297
- "tmpType": "pro",
7298
- "builder": ["elementor"],
7299
- "demoType": "blocks",
7300
- "freePlugins": [
7301
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7302
- ],
7303
- "proPlugins": [
7304
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7305
- ],
7306
- "requiredtheme": ""
7307
- },
7308
- {
7309
- "id": "light_box_style_2",
7310
- "shareId": "light-box",
7311
- "title": "Light Box Style Two",
7312
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_2.png",
7313
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_2.png",
7314
- "author": "HasThemes",
7315
- "url": "#",
7316
- "demoUrl": "http://demo.wphash.com/htmega/element-light-box/",
7317
- "category": "blocks",
7318
- "tags": ["light box","light","box","blocks"],
7319
- "isPro": "1",
7320
- "tmpType": "pro",
7321
- "builder": ["elementor"],
7322
- "demoType": "blocks",
7323
- "freePlugins": [
7324
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7325
- ],
7326
- "proPlugins": [
7327
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7328
- ],
7329
- "requiredtheme": ""
7330
- },
7331
- {
7332
- "id": "light_box_style_3",
7333
- "shareId": "light-box",
7334
- "title": "Light Box Style Three",
7335
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_3.png",
7336
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_3.png",
7337
- "author": "HasThemes",
7338
- "url": "#",
7339
- "demoUrl": "http://demo.wphash.com/htmega/element-light-box/",
7340
- "category": "blocks",
7341
- "tags": ["light box","light","box","blocks"],
7342
- "isPro": "1",
7343
- "tmpType": "pro",
7344
- "builder": ["elementor"],
7345
- "demoType": "blocks",
7346
- "freePlugins": [
7347
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7348
- ],
7349
- "proPlugins": [
7350
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7351
- ],
7352
- "requiredtheme": ""
7353
- },
7354
- {
7355
- "id": "light_box_style_4",
7356
- "shareId": "light-box",
7357
- "title": "Light Box Style Four",
7358
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/light_box_style_4.png",
7359
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/light_box_style_4.png",
7360
- "author": "HasThemes",
7361
- "url": "#",
7362
- "demoUrl": "http://demo.wphash.com/htmega/element-light-box/",
7363
- "category": "blocks",
7364
- "tags": ["light box","light","box","blocks"],
7365
- "isPro": "1",
7366
- "tmpType": "pro",
7367
- "builder": ["elementor"],
7368
- "demoType": "blocks",
7369
- "freePlugins": [
7370
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7371
- ],
7372
- "proPlugins": [
7373
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7374
- ],
7375
- "requiredtheme": ""
7376
- },
7377
- {
7378
- "id": "modal_style_1",
7379
- "shareId": "modal",
7380
- "title": "Modal Style One",
7381
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/modal_style_1.png",
7382
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/modal_style_1.png",
7383
- "author": "HasThemes",
7384
- "url": "#",
7385
- "demoUrl": "http://demo.wphash.com/htmega/element-modal/",
7386
- "category": "blocks",
7387
- "tags": ["modal","blocks","popup"],
7388
- "isPro": "1",
7389
- "tmpType": "pro",
7390
- "builder": ["elementor"],
7391
- "demoType": "blocks",
7392
- "freePlugins": [
7393
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7394
- ],
7395
- "proPlugins": [
7396
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7397
- ],
7398
- "requiredtheme": ""
7399
- },
7400
- {
7401
- "id": "modal_style_2",
7402
- "shareId": "modal",
7403
- "title": "Modal Style Two",
7404
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/modal_style_2.png",
7405
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/modal_style_2.png",
7406
- "author": "HasThemes",
7407
- "url": "#",
7408
- "demoUrl": "http://demo.wphash.com/htmega/element-modal/",
7409
- "category": "blocks",
7410
- "tags": ["modal","blocks","popup"],
7411
- "isPro": "1",
7412
- "tmpType": "pro",
7413
- "builder": ["elementor"],
7414
- "demoType": "blocks",
7415
- "freePlugins": [
7416
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7417
- ],
7418
- "proPlugins": [
7419
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7420
- ],
7421
- "requiredtheme": ""
7422
- },
7423
- {
7424
- "id": "news_ticker_style_1",
7425
- "shareId": "news-ticker",
7426
- "title": "News Ticker Style One",
7427
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_1.png",
7428
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_1.png",
7429
- "author": "HasThemes",
7430
- "url": "#",
7431
- "demoUrl": "http://demo.wphash.com/htmega/element-news-ticker/",
7432
- "category": "blocks",
7433
- "tags": ["news ticker","ticker","news","blocks"],
7434
- "isPro": "1",
7435
- "tmpType": "pro",
7436
- "builder": ["elementor"],
7437
- "demoType": "blocks",
7438
- "freePlugins": [
7439
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7440
- ],
7441
- "proPlugins": [
7442
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7443
- ],
7444
- "requiredtheme": ""
7445
- },
7446
- {
7447
- "id": "news_ticker_style_2",
7448
- "shareId": "news-ticker",
7449
- "title": "News Ticker Style Two",
7450
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_2.png",
7451
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_2.png",
7452
- "author": "HasThemes",
7453
- "url": "#",
7454
- "demoUrl": "http://demo.wphash.com/htmega/element-news-ticker/",
7455
- "category": "blocks",
7456
- "tags": ["news ticker","ticker","news","blocks"],
7457
- "isPro": "1",
7458
- "tmpType": "pro",
7459
- "builder": ["elementor"],
7460
- "demoType": "blocks",
7461
- "freePlugins": [
7462
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7463
- ],
7464
- "proPlugins": [
7465
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7466
- ],
7467
- "requiredtheme": ""
7468
- },
7469
- {
7470
- "id": "news_ticker_style_3",
7471
- "shareId": "news-ticker",
7472
- "title": "News Ticker Style Three",
7473
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_3.png",
7474
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_3.png",
7475
- "author": "HasThemes",
7476
- "url": "#",
7477
- "demoUrl": "http://demo.wphash.com/htmega/element-news-ticker/",
7478
- "category": "blocks",
7479
- "tags": ["news ticker","ticker","news","blocks"],
7480
- "isPro": "1",
7481
- "tmpType": "pro",
7482
- "builder": ["elementor"],
7483
- "demoType": "blocks",
7484
- "freePlugins": [
7485
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7486
- ],
7487
- "proPlugins": [
7488
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7489
- ],
7490
- "requiredtheme": ""
7491
- },
7492
- {
7493
- "id": "news_ticker_style_4",
7494
- "shareId": "news-ticker",
7495
- "title": "News Ticker Style Four",
7496
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_4.png",
7497
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_4.png",
7498
- "author": "HasThemes",
7499
- "url": "#",
7500
- "demoUrl": "http://demo.wphash.com/htmega/element-news-ticker/",
7501
- "category": "blocks",
7502
- "tags": ["news ticker","ticker","news","blocks"],
7503
- "isPro": "1",
7504
- "tmpType": "pro",
7505
- "builder": ["elementor"],
7506
- "demoType": "blocks",
7507
- "freePlugins": [
7508
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7509
- ],
7510
- "proPlugins": [
7511
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7512
- ],
7513
- "requiredtheme": ""
7514
- },
7515
- {
7516
- "id": "news_ticker_style_5",
7517
- "shareId": "news-ticker",
7518
- "title": "News Ticker Style Five",
7519
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_5.png",
7520
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_5.png",
7521
- "author": "HasThemes",
7522
- "url": "#",
7523
- "demoUrl": "http://demo.wphash.com/htmega/element-news-ticker/",
7524
- "category": "blocks",
7525
- "tags": ["news ticker","ticker","news","blocks"],
7526
- "isPro": "1",
7527
- "tmpType": "pro",
7528
- "builder": ["elementor"],
7529
- "demoType": "blocks",
7530
- "freePlugins": [
7531
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7532
- ],
7533
- "proPlugins": [
7534
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7535
- ],
7536
- "requiredtheme": ""
7537
- },
7538
- {
7539
- "id": "news_ticker_style_6",
7540
- "shareId": "news-ticker",
7541
- "title": "News Ticker Style Six",
7542
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_6.png",
7543
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_6.png",
7544
- "author": "HasThemes",
7545
- "url": "#",
7546
- "demoUrl": "http://demo.wphash.com/htmega/element-news-ticker/",
7547
- "category": "blocks",
7548
- "tags": ["news ticker","ticker","news","blocks"],
7549
- "isPro": "1",
7550
- "tmpType": "pro",
7551
- "builder": ["elementor"],
7552
- "demoType": "blocks",
7553
- "freePlugins": [
7554
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7555
- ],
7556
- "proPlugins": [
7557
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7558
- ],
7559
- "requiredtheme": ""
7560
- },
7561
- {
7562
- "id": "news_ticker_style_7",
7563
- "shareId": "news-ticker",
7564
- "title": "News Ticker Style Seven",
7565
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/news_ticker_style_7.png",
7566
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/news_ticker_style_7.png",
7567
- "author": "HasThemes",
7568
- "url": "#",
7569
- "demoUrl": "http://demo.wphash.com/htmega/element-news-ticker/",
7570
- "category": "blocks",
7571
- "tags": ["news ticker","ticker","news","blocks"],
7572
- "isPro": "1",
7573
- "tmpType": "pro",
7574
- "builder": ["elementor"],
7575
- "demoType": "blocks",
7576
- "freePlugins": [
7577
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7578
- ],
7579
- "proPlugins": [
7580
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7581
- ],
7582
- "requiredtheme": ""
7583
- },
7584
- {
7585
- "id": "notification_style_1",
7586
- "shareId": "notification",
7587
- "title": "Notification Style One",
7588
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/notification_style_1.png",
7589
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/notification_style_1.png",
7590
- "author": "HasThemes",
7591
- "url": "#",
7592
- "demoUrl": "http://demo.wphash.com/htmega/element-notification/",
7593
- "category": "blocks",
7594
- "tags": ["notification","blocks"],
7595
- "isPro": "1",
7596
- "tmpType": "pro",
7597
- "builder": ["elementor"],
7598
- "demoType": "blocks",
7599
- "freePlugins": [
7600
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7601
- ],
7602
- "proPlugins": [
7603
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7604
- ],
7605
- "requiredtheme": ""
7606
- },
7607
- {
7608
- "id": "notification_style_2",
7609
- "shareId": "notification",
7610
- "title": "Notification Style Two",
7611
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/notification_style_2.png",
7612
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/notification_style_2.png",
7613
- "author": "HasThemes",
7614
- "url": "#",
7615
- "demoUrl": "http://demo.wphash.com/htmega/element-notification/",
7616
- "category": "blocks",
7617
- "tags": ["notification","blocks"],
7618
- "isPro": "1",
7619
- "tmpType": "pro",
7620
- "builder": ["elementor"],
7621
- "demoType": "blocks",
7622
- "freePlugins": [
7623
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7624
- ],
7625
- "proPlugins": [
7626
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7627
- ],
7628
- "requiredtheme": ""
7629
- },
7630
- {
7631
- "id": "offcanvas_style_1",
7632
- "shareId": "off-canvas",
7633
- "title": "Off canvas Style One",
7634
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_1.png",
7635
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_1.png",
7636
- "author": "HasThemes",
7637
- "url": "#",
7638
- "demoUrl": "http://demo.wphash.com/htmega/element-off-canvas/",
7639
- "category": "blocks",
7640
- "tags": ["off canvas","blocks","canvas"],
7641
- "isPro": "1",
7642
- "tmpType": "pro",
7643
- "builder": ["elementor"],
7644
- "demoType": "blocks",
7645
- "freePlugins": [
7646
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7647
- ],
7648
- "proPlugins": [
7649
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7650
- ],
7651
- "requiredtheme": ""
7652
- },
7653
- {
7654
- "id": "offcanvas_style_2",
7655
- "shareId": "off-canvas",
7656
- "title": "Off canvas Style Two",
7657
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_2.png",
7658
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_2.png",
7659
- "author": "HasThemes",
7660
- "url": "#",
7661
- "demoUrl": "http://demo.wphash.com/htmega/element-off-canvas/",
7662
- "category": "blocks",
7663
- "tags": ["off canvas","blocks","canvas"],
7664
- "isPro": "1",
7665
- "tmpType": "pro",
7666
- "builder": ["elementor"],
7667
- "demoType": "blocks",
7668
- "freePlugins": [
7669
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7670
- ],
7671
- "proPlugins": [
7672
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7673
- ],
7674
- "requiredtheme": ""
7675
- },
7676
- {
7677
- "id": "offcanvas_style_3",
7678
- "shareId": "off-canvas",
7679
- "title": "Off canvas Style Three",
7680
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_3.png",
7681
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_3.png",
7682
- "author": "HasThemes",
7683
- "url": "#",
7684
- "demoUrl": "http://demo.wphash.com/htmega/element-off-canvas/",
7685
- "category": "blocks",
7686
- "tags": ["off canvas","blocks","canvas"],
7687
- "isPro": "1",
7688
- "tmpType": "pro",
7689
- "builder": ["elementor"],
7690
- "demoType": "blocks",
7691
- "freePlugins": [
7692
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7693
- ],
7694
- "proPlugins": [
7695
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7696
- ],
7697
- "requiredtheme": ""
7698
- },
7699
- {
7700
- "id": "offcanvas_style_4",
7701
- "shareId": "off-canvas",
7702
- "title": "Off canvas Style Four",
7703
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/offcanvas_style_4.png",
7704
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/offcanvas_style_4.png",
7705
- "author": "HasThemes",
7706
- "url": "#",
7707
- "demoUrl": "http://demo.wphash.com/htmega/element-off-canvas/",
7708
- "category": "blocks",
7709
- "tags": ["off canvas","blocks","canvas"],
7710
- "isPro": "1",
7711
- "tmpType": "pro",
7712
- "builder": ["elementor"],
7713
- "demoType": "blocks",
7714
- "freePlugins": [
7715
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7716
- ],
7717
- "proPlugins": [
7718
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7719
- ],
7720
- "requiredtheme": ""
7721
- },
7722
- {
7723
- "id": "page_not_found_content_styel_1",
7724
- "shareId": "404",
7725
- "title": "Page Not Found Content Style One",
7726
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_1.png",
7727
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_1.png",
7728
- "author": "HasThemes",
7729
- "url": "#",
7730
- "demoUrl": "http://demo.wphash.com/htmega/element-page-not-found-content/",
7731
- "category": "blocks",
7732
- "tags": ["404 page not found","404","not found","page not found","error","404 error","blocks"],
7733
- "isPro": "1",
7734
- "tmpType": "pro",
7735
- "builder": ["elementor"],
7736
- "demoType": "blocks",
7737
- "freePlugins": [
7738
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7739
- ],
7740
- "proPlugins": [
7741
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7742
- ],
7743
- "requiredtheme": ""
7744
- },
7745
- {
7746
- "id": "page_not_found_content_styel_2",
7747
- "shareId": "404",
7748
- "title": "Page Not Found Content Style Two",
7749
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_2.png",
7750
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_2.png",
7751
- "author": "HasThemes",
7752
- "url": "#",
7753
- "demoUrl": "http://demo.wphash.com/htmega/element-page-not-found-content/",
7754
- "category": "blocks",
7755
- "tags": ["404 page not found","404","not found","page not found","error","404 error","blocks"],
7756
- "isPro": "1",
7757
- "tmpType": "pro",
7758
- "builder": ["elementor"],
7759
- "demoType": "blocks",
7760
- "freePlugins": [
7761
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7762
- ],
7763
- "proPlugins": [
7764
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7765
- ],
7766
- "requiredtheme": ""
7767
- },
7768
- {
7769
- "id": "page_not_found_content_styel_3",
7770
- "shareId": "404",
7771
- "title": "Page Not Found Content Style Three",
7772
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_3.png",
7773
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_3.png",
7774
- "author": "HasThemes",
7775
- "url": "#",
7776
- "demoUrl": "http://demo.wphash.com/htmega/element-page-not-found-content/",
7777
- "category": "blocks",
7778
- "tags": ["404 page not found","404","not found","page not found","error","404 error","blocks"],
7779
- "isPro": "1",
7780
- "tmpType": "pro",
7781
- "builder": ["elementor"],
7782
- "demoType": "blocks",
7783
- "freePlugins": [
7784
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7785
- ],
7786
- "proPlugins": [
7787
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7788
- ],
7789
- "requiredtheme": ""
7790
- },
7791
- {
7792
- "id": "page_not_found_content_styel_4",
7793
- "shareId": "404",
7794
- "title": "Page Not Found Content Style Four",
7795
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/page_not_found_content_styel_4.png",
7796
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/page_not_found_content_styel_4.png",
7797
- "author": "HasThemes",
7798
- "url": "#",
7799
- "demoUrl": "http://demo.wphash.com/htmega/element-page-not-found-content/",
7800
- "category": "blocks",
7801
- "tags": ["404 page not found","404","not found","page not found","error","404 error","blocks"],
7802
- "isPro": "1",
7803
- "tmpType": "pro",
7804
- "builder": ["elementor"],
7805
- "demoType": "blocks",
7806
- "freePlugins": [
7807
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7808
- ],
7809
- "proPlugins": [
7810
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7811
- ],
7812
- "requiredtheme": ""
7813
- },
7814
- {
7815
- "id": "panel_slider_style_1",
7816
- "shareId": "panel-slider",
7817
- "title": "Panel Slider Style One",
7818
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_1.png",
7819
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_1.png",
7820
- "author": "HasThemes",
7821
- "url": "#",
7822
- "demoUrl": "http://demo.wphash.com/htmega/element-panel-slider/",
7823
- "category": "blocks",
7824
- "tags": ["panel slider","panel","slider","blocks"],
7825
- "isPro": "1",
7826
- "tmpType": "pro",
7827
- "builder": ["elementor"],
7828
- "demoType": "blocks",
7829
- "freePlugins": [
7830
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7831
- ],
7832
- "proPlugins": [
7833
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7834
- ],
7835
- "requiredtheme": ""
7836
- },
7837
- {
7838
- "id": "panel_slider_style_2",
7839
- "shareId": "panel-slider",
7840
- "title": "Panel Slider Style Two",
7841
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_2.png",
7842
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_2.png",
7843
- "author": "HasThemes",
7844
- "url": "#",
7845
- "demoUrl": "http://demo.wphash.com/htmega/element-panel-slider/",
7846
- "category": "blocks",
7847
- "tags": ["panel slider","panel","slider","blocks"],
7848
- "isPro": "1",
7849
- "tmpType": "pro",
7850
- "builder": ["elementor"],
7851
- "demoType": "blocks",
7852
- "freePlugins": [
7853
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7854
- ],
7855
- "proPlugins": [
7856
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7857
- ],
7858
- "requiredtheme": ""
7859
- },
7860
- {
7861
- "id": "panel_slider_style_3",
7862
- "shareId": "panel-slider",
7863
- "title": "Panel Slider Style Three",
7864
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_3.png",
7865
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_3.png",
7866
- "author": "HasThemes",
7867
- "url": "#",
7868
- "demoUrl": "http://demo.wphash.com/htmega/element-panel-slider/",
7869
- "category": "blocks",
7870
- "tags": ["panel slider","panel","slider","blocks"],
7871
- "isPro": "1",
7872
- "tmpType": "pro",
7873
- "builder": ["elementor"],
7874
- "demoType": "blocks",
7875
- "freePlugins": [
7876
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7877
- ],
7878
- "proPlugins": [
7879
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7880
- ],
7881
- "requiredtheme": ""
7882
- },
7883
- {
7884
- "id": "panel_slider_style_4",
7885
- "shareId": "panel-slider",
7886
- "title": "Panel Slider Style Four",
7887
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/panel_slider_style_4.png",
7888
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/panel_slider_style_4.png",
7889
- "author": "HasThemes",
7890
- "url": "#",
7891
- "demoUrl": "http://demo.wphash.com/htmega/element-panel-slider/",
7892
- "category": "blocks",
7893
- "tags": ["panel slider","panel","slider","blocks"],
7894
- "isPro": "1",
7895
- "tmpType": "pro",
7896
- "builder": ["elementor"],
7897
- "demoType": "blocks",
7898
- "freePlugins": [
7899
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7900
- ],
7901
- "proPlugins": [
7902
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7903
- ],
7904
- "requiredtheme": ""
7905
- },
7906
- {
7907
- "id": "popover_style_1",
7908
- "shareId": "popover",
7909
- "title": "Popover Style One",
7910
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_1.png",
7911
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_1.png",
7912
- "author": "HasThemes",
7913
- "url": "#",
7914
- "demoUrl": "http://demo.wphash.com/htmega/element-popover/",
7915
- "category": "blocks",
7916
- "tags": ["popover","blocks"],
7917
- "isPro": "1",
7918
- "tmpType": "pro",
7919
- "builder": ["elementor"],
7920
- "demoType": "blocks",
7921
- "freePlugins": [
7922
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7923
- ],
7924
- "proPlugins": [
7925
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7926
- ],
7927
- "requiredtheme": ""
7928
- },
7929
- {
7930
- "id": "popover_style_2",
7931
- "shareId": "popover",
7932
- "title": "Popover Style Two",
7933
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_2.png",
7934
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_2.png",
7935
- "author": "HasThemes",
7936
- "url": "#",
7937
- "demoUrl": "http://demo.wphash.com/htmega/element-popover/",
7938
- "category": "blocks",
7939
- "tags": ["popover","blocks"],
7940
- "isPro": "1",
7941
- "tmpType": "pro",
7942
- "builder": ["elementor"],
7943
- "demoType": "blocks",
7944
- "freePlugins": [
7945
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7946
- ],
7947
- "proPlugins": [
7948
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7949
- ],
7950
- "requiredtheme": ""
7951
- },
7952
- {
7953
- "id": "popover_style_3",
7954
- "shareId": "popover",
7955
- "title": "Popover Style Three",
7956
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/popover_style_3.png",
7957
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/popover_style_3.png",
7958
- "author": "HasThemes",
7959
- "url": "#",
7960
- "demoUrl": "http://demo.wphash.com/htmega/element-popover/",
7961
- "category": "blocks",
7962
- "tags": ["popover","blocks"],
7963
- "isPro": "1",
7964
- "tmpType": "pro",
7965
- "builder": ["elementor"],
7966
- "demoType": "blocks",
7967
- "freePlugins": [
7968
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7969
- ],
7970
- "proPlugins": [
7971
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7972
- ],
7973
- "requiredtheme": ""
7974
- },
7975
- {
7976
- "id": "pos_slider_style_1",
7977
- "shareId": "post-slider",
7978
- "title": "Post Slider Style One",
7979
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_1.png",
7980
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_1.png",
7981
- "author": "HasThemes",
7982
- "url": "#",
7983
- "demoUrl": "http://demo.wphash.com/htmega/element-post-slider/",
7984
- "category": "blocks",
7985
- "tags": ["post slider","post","slider","blocks"],
7986
- "isPro": "1",
7987
- "tmpType": "pro",
7988
- "builder": ["elementor"],
7989
- "demoType": "blocks",
7990
- "freePlugins": [
7991
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
7992
- ],
7993
- "proPlugins": [
7994
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
7995
- ],
7996
- "requiredtheme": ""
7997
- },
7998
- {
7999
- "id": "pos_slider_style_2",
8000
- "shareId": "post-slider",
8001
- "title": "Post Slider Style Two",
8002
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_2.png",
8003
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_2.png",
8004
- "author": "HasThemes",
8005
- "url": "#",
8006
- "demoUrl": "http://demo.wphash.com/htmega/element-post-slider/",
8007
- "category": "blocks",
8008
- "tags": ["post slider","post","slider","blocks"],
8009
- "isPro": "1",
8010
- "tmpType": "pro",
8011
- "builder": ["elementor"],
8012
- "demoType": "blocks",
8013
- "freePlugins": [
8014
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8015
- ],
8016
- "proPlugins": [
8017
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8018
- ],
8019
- "requiredtheme": ""
8020
- },
8021
- {
8022
- "id": "pos_slider_style_3",
8023
- "shareId": "post-slider",
8024
- "title": "Post Slider Style Three",
8025
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_3.png",
8026
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_3.png",
8027
- "author": "HasThemes",
8028
- "url": "#",
8029
- "demoUrl": "http://demo.wphash.com/htmega/element-post-slider/",
8030
- "category": "blocks",
8031
- "tags": ["post slider","post","slider","blocks"],
8032
- "isPro": "1",
8033
- "tmpType": "pro",
8034
- "builder": ["elementor"],
8035
- "demoType": "blocks",
8036
- "freePlugins": [
8037
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8038
- ],
8039
- "proPlugins": [
8040
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8041
- ],
8042
- "requiredtheme": ""
8043
- },
8044
- {
8045
- "id": "pos_slider_style_4",
8046
- "shareId": "post-slider",
8047
- "title": "Post Slider Style Four",
8048
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_4.png",
8049
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_4.png",
8050
- "author": "HasThemes",
8051
- "url": "#",
8052
- "demoUrl": "http://demo.wphash.com/htmega/element-post-slider/",
8053
- "category": "blocks",
8054
- "tags": ["post slider","post","slider","blocks"],
8055
- "isPro": "1",
8056
- "tmpType": "pro",
8057
- "builder": ["elementor"],
8058
- "demoType": "blocks",
8059
- "freePlugins": [
8060
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8061
- ],
8062
- "proPlugins": [
8063
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8064
- ],
8065
- "requiredtheme": ""
8066
- },
8067
- {
8068
- "id": "pos_slider_style_5",
8069
- "shareId": "post-slider",
8070
- "title": "Post Slider Style Five",
8071
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pos_slider_style_5.png",
8072
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pos_slider_style_5.png",
8073
- "author": "HasThemes",
8074
- "url": "#",
8075
- "demoUrl": "http://demo.wphash.com/htmega/element-post-slider/",
8076
- "category": "blocks",
8077
- "tags": ["post slider","post","slider","blocks"],
8078
- "isPro": "1",
8079
- "tmpType": "pro",
8080
- "builder": ["elementor"],
8081
- "demoType": "blocks",
8082
- "freePlugins": [
8083
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8084
- ],
8085
- "proPlugins": [
8086
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8087
- ],
8088
- "requiredtheme": ""
8089
- },
8090
- {
8091
- "id": "post_carosul_style_1",
8092
- "shareId": "post-carousel",
8093
- "title": "Post Carousel Style One",
8094
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_1.png",
8095
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_1.png",
8096
- "author": "HasThemes",
8097
- "url": "#",
8098
- "demoUrl": "http://demo.wphash.com/htmega/post-carosul/",
8099
- "category": "blocks",
8100
- "tags": ["post carousel","post","carousel","blocks"],
8101
- "isPro": "1",
8102
- "tmpType": "pro",
8103
- "builder": ["elementor"],
8104
- "demoType": "blocks",
8105
- "freePlugins": [
8106
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8107
- ],
8108
- "proPlugins": [
8109
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8110
- ],
8111
- "requiredtheme": ""
8112
- },
8113
- {
8114
- "id": "post_carosul_style_2",
8115
- "shareId": "post-carousel",
8116
- "title": "Post Carousel Style Two",
8117
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_2.png",
8118
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_2.png",
8119
- "author": "HasThemes",
8120
- "url": "#",
8121
- "demoUrl": "http://demo.wphash.com/htmega/post-carosul/",
8122
- "category": "blocks",
8123
- "tags": ["post carousel","post","carousel","blocks"],
8124
- "isPro": "1",
8125
- "tmpType": "pro",
8126
- "builder": ["elementor"],
8127
- "demoType": "blocks",
8128
- "freePlugins": [
8129
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8130
- ],
8131
- "proPlugins": [
8132
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8133
- ],
8134
- "requiredtheme": ""
8135
- },
8136
- {
8137
- "id": "post_carosul_style_3",
8138
- "shareId": "post-carousel",
8139
- "title": "Post Carousel Style Three",
8140
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_3.png",
8141
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_3.png",
8142
- "author": "HasThemes",
8143
- "url": "#",
8144
- "demoUrl": "http://demo.wphash.com/htmega/post-carosul/",
8145
- "category": "blocks",
8146
- "tags": ["post carousel","post","carousel","blocks"],
8147
- "isPro": "1",
8148
- "tmpType": "pro",
8149
- "builder": ["elementor"],
8150
- "demoType": "blocks",
8151
- "freePlugins": [
8152
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8153
- ],
8154
- "proPlugins": [
8155
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8156
- ],
8157
- "requiredtheme": ""
8158
- },
8159
- {
8160
- "id": "post_carosul_style_4",
8161
- "shareId": "post-carousel",
8162
- "title": "Post Carousel Style Four",
8163
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_4.png",
8164
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_4.png",
8165
- "author": "HasThemes",
8166
- "url": "#",
8167
- "demoUrl": "http://demo.wphash.com/htmega/post-carosul/",
8168
- "category": "blocks",
8169
- "tags": ["post carousel","post","carousel","blocks"],
8170
- "isPro": "1",
8171
- "tmpType": "pro",
8172
- "builder": ["elementor"],
8173
- "demoType": "blocks",
8174
- "freePlugins": [
8175
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8176
- ],
8177
- "proPlugins": [
8178
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8179
- ],
8180
- "requiredtheme": ""
8181
- },
8182
- {
8183
- "id": "post_carosul_style_5",
8184
- "shareId": "post-carousel",
8185
- "title": "Post Carousel Style Five",
8186
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_carosul_style_5.png",
8187
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_carosul_style_5.png",
8188
- "author": "HasThemes",
8189
- "url": "#",
8190
- "demoUrl": "http://demo.wphash.com/htmega/post-carosul/",
8191
- "category": "blocks",
8192
- "tags": ["post carousel","post","carousel","blocks"],
8193
- "isPro": "1",
8194
- "tmpType": "pro",
8195
- "builder": ["elementor"],
8196
- "demoType": "blocks",
8197
- "freePlugins": [
8198
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8199
- ],
8200
- "proPlugins": [
8201
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8202
- ],
8203
- "requiredtheme": ""
8204
- },
8205
- {
8206
- "id": "post_grid_style_1",
8207
- "shareId": "post-grid",
8208
- "title": "Post Grid Style One",
8209
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_1.png",
8210
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_1.png",
8211
- "author": "HasThemes",
8212
- "url": "#",
8213
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid/",
8214
- "category": "blocks",
8215
- "tags": ["post grid","post","grid","blocks"],
8216
- "isPro": "1",
8217
- "tmpType": "pro",
8218
- "builder": ["elementor"],
8219
- "demoType": "blocks",
8220
- "freePlugins": [
8221
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8222
- ],
8223
- "proPlugins": [
8224
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8225
- ],
8226
- "requiredtheme": ""
8227
- },
8228
- {
8229
- "id": "post_grid_style_2",
8230
- "shareId": "post-grid",
8231
- "title": "Post Grid Style Two",
8232
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_2.png",
8233
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_2.png",
8234
- "author": "HasThemes",
8235
- "url": "#",
8236
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid/",
8237
- "category": "blocks",
8238
- "tags": ["post grid","post","grid","blocks"],
8239
- "isPro": "1",
8240
- "tmpType": "pro",
8241
- "builder": ["elementor"],
8242
- "demoType": "blocks",
8243
- "freePlugins": [
8244
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8245
- ],
8246
- "proPlugins": [
8247
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8248
- ],
8249
- "requiredtheme": ""
8250
- },
8251
- {
8252
- "id": "post_grid_style_3",
8253
- "shareId": "post-grid",
8254
- "title": "Post Grid Style Three",
8255
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_3.png",
8256
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_3.png",
8257
- "author": "HasThemes",
8258
- "url": "#",
8259
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid/",
8260
- "category": "blocks",
8261
- "tags": ["post grid","post","grid","blocks"],
8262
- "isPro": "1",
8263
- "tmpType": "pro",
8264
- "builder": ["elementor"],
8265
- "demoType": "blocks",
8266
- "freePlugins": [
8267
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8268
- ],
8269
- "proPlugins": [
8270
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8271
- ],
8272
- "requiredtheme": ""
8273
- },
8274
- {
8275
- "id": "post_grid_style_4",
8276
- "shareId": "post-grid",
8277
- "title": "Post Grid Style Four",
8278
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_4.png",
8279
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_4.png",
8280
- "author": "HasThemes",
8281
- "url": "#",
8282
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid/",
8283
- "category": "blocks",
8284
- "tags": ["post grid","post","grid","blocks"],
8285
- "isPro": "1",
8286
- "tmpType": "pro",
8287
- "builder": ["elementor"],
8288
- "demoType": "blocks",
8289
- "freePlugins": [
8290
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8291
- ],
8292
- "proPlugins": [
8293
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8294
- ],
8295
- "requiredtheme": ""
8296
- },
8297
- {
8298
- "id": "post_grid_style_5",
8299
- "shareId": "post-grid",
8300
- "title": "Post Grid Style Five",
8301
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_style_5.png",
8302
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_style_5.png",
8303
- "author": "HasThemes",
8304
- "url": "#",
8305
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid/",
8306
- "category": "blocks",
8307
- "tags": ["post grid","post","grid","blocks"],
8308
- "isPro": "1",
8309
- "tmpType": "pro",
8310
- "builder": ["elementor"],
8311
- "demoType": "blocks",
8312
- "freePlugins": [
8313
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8314
- ],
8315
- "proPlugins": [
8316
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8317
- ],
8318
- "requiredtheme": ""
8319
- },
8320
- {
8321
- "id": "post_grid_tab_style_1",
8322
- "shareId": "post-grid-tab",
8323
- "title": "Post Grid Tab Style One",
8324
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_1.png",
8325
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_1.png",
8326
- "author": "HasThemes",
8327
- "url": "#",
8328
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid-tab/",
8329
- "category": "blocks",
8330
- "tags": ["post grid tab","post","grid","tab","blocks"],
8331
- "isPro": "1",
8332
- "tmpType": "pro",
8333
- "builder": ["elementor"],
8334
- "demoType": "blocks",
8335
- "freePlugins": [
8336
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8337
- ],
8338
- "proPlugins": [
8339
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8340
- ],
8341
- "requiredtheme": ""
8342
- },
8343
- {
8344
- "id": "post_grid_tab_style_2",
8345
- "shareId": "post-grid-tab",
8346
- "title": "Post Grid Tab Style Two",
8347
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_2.png",
8348
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_2.png",
8349
- "author": "HasThemes",
8350
- "url": "#",
8351
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid-tab/",
8352
- "category": "blocks",
8353
- "tags": ["post grid tab","post","grid","tab","blocks"],
8354
- "isPro": "1",
8355
- "tmpType": "pro",
8356
- "builder": ["elementor"],
8357
- "demoType": "blocks",
8358
- "freePlugins": [
8359
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8360
- ],
8361
- "proPlugins": [
8362
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8363
- ],
8364
- "requiredtheme": ""
8365
- },
8366
- {
8367
- "id": "post_grid_tab_style_3",
8368
- "shareId": "post-grid-tab",
8369
- "title": "Post Grid Tab Style Three",
8370
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_3.png",
8371
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_3.png",
8372
- "author": "HasThemes",
8373
- "url": "#",
8374
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid-tab/",
8375
- "category": "blocks",
8376
- "tags": ["post grid tab","post","grid","tab","blocks"],
8377
- "isPro": "1",
8378
- "tmpType": "pro",
8379
- "builder": ["elementor"],
8380
- "demoType": "blocks",
8381
- "freePlugins": [
8382
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8383
- ],
8384
- "proPlugins": [
8385
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8386
- ],
8387
- "requiredtheme": ""
8388
- },
8389
- {
8390
- "id": "post_grid_tab_style_4",
8391
- "shareId": "post-grid-tab",
8392
- "title": "Post Grid Tab Style Four",
8393
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_4.png",
8394
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_4.png",
8395
- "author": "HasThemes",
8396
- "url": "#",
8397
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid-tab/",
8398
- "category": "blocks",
8399
- "tags": ["post grid tab","post","grid","tab","blocks"],
8400
- "isPro": "1",
8401
- "tmpType": "pro",
8402
- "builder": ["elementor"],
8403
- "demoType": "blocks",
8404
- "freePlugins": [
8405
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8406
- ],
8407
- "proPlugins": [
8408
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8409
- ],
8410
- "requiredtheme": ""
8411
- },
8412
- {
8413
- "id": "post_grid_tab_style_5",
8414
- "shareId": "post-grid-tab",
8415
- "title": "Post Grid Tab Style Five",
8416
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/post_grid_tab_style_5.png",
8417
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/post_grid_tab_style_5.png",
8418
- "author": "HasThemes",
8419
- "url": "#",
8420
- "demoUrl": "http://demo.wphash.com/htmega/element-post-grid-tab/",
8421
- "category": "blocks",
8422
- "tags": ["post grid tab","post","grid","tab","blocks"],
8423
- "isPro": "1",
8424
- "tmpType": "pro",
8425
- "builder": ["elementor"],
8426
- "demoType": "blocks",
8427
- "freePlugins": [
8428
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8429
- ],
8430
- "proPlugins": [
8431
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8432
- ],
8433
- "requiredtheme": ""
8434
- },
8435
- {
8436
- "id": "pricing_list_view_style_1",
8437
- "shareId": "pricing-list",
8438
- "title": "Pricing List View Style One",
8439
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_1.png",
8440
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_1.png",
8441
- "author": "HasThemes",
8442
- "url": "#",
8443
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-list-view/",
8444
- "category": "blocks",
8445
- "tags": ["pricing list view","pricing","list","view","blocks"],
8446
- "isPro": "1",
8447
- "tmpType": "pro",
8448
- "builder": ["elementor"],
8449
- "demoType": "blocks",
8450
- "freePlugins": [
8451
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8452
- ],
8453
- "proPlugins": [
8454
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8455
- ],
8456
- "requiredtheme": ""
8457
- },
8458
- {
8459
- "id": "pricing_list_view_style_2",
8460
- "shareId": "pricing-list",
8461
- "title": "Pricing List View Style Two",
8462
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_2.png",
8463
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_2.png",
8464
- "author": "HasThemes",
8465
- "url": "#",
8466
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-list-view/",
8467
- "category": "blocks",
8468
- "tags": ["pricing list view","pricing","list","view","blocks"],
8469
- "isPro": "1",
8470
- "tmpType": "pro",
8471
- "builder": ["elementor"],
8472
- "demoType": "blocks",
8473
- "freePlugins": [
8474
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8475
- ],
8476
- "proPlugins": [
8477
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8478
- ],
8479
- "requiredtheme": ""
8480
- },
8481
- {
8482
- "id": "pricing_list_view_style_3",
8483
- "shareId": "pricing-list",
8484
- "title": "Pricing List View Style Three",
8485
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_list_view_style_3.png",
8486
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_list_view_style_3.png",
8487
- "author": "HasThemes",
8488
- "url": "#",
8489
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-list-view/",
8490
- "category": "blocks",
8491
- "tags": ["pricing list view","pricing","list","view","blocks"],
8492
- "isPro": "1",
8493
- "tmpType": "pro",
8494
- "builder": ["elementor"],
8495
- "demoType": "blocks",
8496
- "freePlugins": [
8497
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8498
- ],
8499
- "proPlugins": [
8500
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8501
- ],
8502
- "requiredtheme": ""
8503
- },
8504
- {
8505
- "id": "pricing_table_style_1",
8506
- "shareId": "pricing-table",
8507
- "title": "Pricing Table Style One",
8508
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_1.png",
8509
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_1.png",
8510
- "author": "HasThemes",
8511
- "url": "#",
8512
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-table/",
8513
- "category": "blocks",
8514
- "tags": ["pricing table","pricing","table","blocks"],
8515
- "isPro": "1",
8516
- "tmpType": "pro",
8517
- "builder": ["elementor"],
8518
- "demoType": "blocks",
8519
- "freePlugins": [
8520
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8521
- ],
8522
- "proPlugins": [
8523
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8524
- ],
8525
- "requiredtheme": ""
8526
- },
8527
- {
8528
- "id": "pricing_table_style_2",
8529
- "shareId": "pricing-table",
8530
- "title": "Pricing Table Style Two",
8531
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_2.png",
8532
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_2.png",
8533
- "author": "HasThemes",
8534
- "url": "#",
8535
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-table/",
8536
- "category": "blocks",
8537
- "tags": ["pricing table","pricing","table","blocks"],
8538
- "isPro": "1",
8539
- "tmpType": "pro",
8540
- "builder": ["elementor"],
8541
- "demoType": "blocks",
8542
- "freePlugins": [
8543
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8544
- ],
8545
- "proPlugins": [
8546
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8547
- ],
8548
- "requiredtheme": ""
8549
- },
8550
- {
8551
- "id": "pricing_table_style_3",
8552
- "shareId": "pricing-table",
8553
- "title": "Pricing Table Style Three",
8554
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_3.png",
8555
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_3.png",
8556
- "author": "HasThemes",
8557
- "url": "#",
8558
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-table/",
8559
- "category": "blocks",
8560
- "tags": ["pricing table","pricing","table","blocks"],
8561
- "isPro": "1",
8562
- "tmpType": "pro",
8563
- "builder": ["elementor"],
8564
- "demoType": "blocks",
8565
- "freePlugins": [
8566
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8567
- ],
8568
- "proPlugins": [
8569
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8570
- ],
8571
- "requiredtheme": ""
8572
- },
8573
- {
8574
- "id": "pricing_table_style_4",
8575
- "shareId": "pricing-table",
8576
- "title": "Pricing Table Style Four",
8577
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_4.png",
8578
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_4.png",
8579
- "author": "HasThemes",
8580
- "url": "#",
8581
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-table/",
8582
- "category": "blocks",
8583
- "tags": ["pricing table","pricing","table","blocks"],
8584
- "isPro": "1",
8585
- "tmpType": "pro",
8586
- "builder": ["elementor"],
8587
- "demoType": "blocks",
8588
- "freePlugins": [
8589
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8590
- ],
8591
- "proPlugins": [
8592
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8593
- ],
8594
- "requiredtheme": ""
8595
- },
8596
- {
8597
- "id": "pricing_table_style_5",
8598
- "shareId": "pricing-table",
8599
- "title": "Pricing Table Style Five",
8600
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_5.png",
8601
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_5.png",
8602
- "author": "HasThemes",
8603
- "url": "#",
8604
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-table/",
8605
- "category": "blocks",
8606
- "tags": ["pricing table","pricing","table","blocks"],
8607
- "isPro": "1",
8608
- "tmpType": "pro",
8609
- "builder": ["elementor"],
8610
- "demoType": "blocks",
8611
- "freePlugins": [
8612
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8613
- ],
8614
- "proPlugins": [
8615
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8616
- ],
8617
- "requiredtheme": ""
8618
- },
8619
- {
8620
- "id": "pricing_table_style_6",
8621
- "shareId": "pricing-table",
8622
- "title": "Pricing Table Style Six",
8623
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_6.png",
8624
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_6.png",
8625
- "author": "HasThemes",
8626
- "url": "#",
8627
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-table/",
8628
- "category": "blocks",
8629
- "tags": ["pricing table","pricing","table","blocks"],
8630
- "isPro": "1",
8631
- "tmpType": "pro",
8632
- "builder": ["elementor"],
8633
- "demoType": "blocks",
8634
- "freePlugins": [
8635
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8636
- ],
8637
- "proPlugins": [
8638
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8639
- ],
8640
- "requiredtheme": ""
8641
- },
8642
- {
8643
- "id": "pricing_table_style_7",
8644
- "shareId": "pricing-table",
8645
- "title": "Pricing Table Style Seven",
8646
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/pricing_table_style_7.png",
8647
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/pricing_table_style_7.png",
8648
- "author": "HasThemes",
8649
- "url": "#",
8650
- "demoUrl": "http://demo.wphash.com/htmega/element-pricing-table/",
8651
- "category": "blocks",
8652
- "tags": ["pricing table","pricing","table","blocks"],
8653
- "isPro": "1",
8654
- "tmpType": "pro",
8655
- "builder": ["elementor"],
8656
- "demoType": "blocks",
8657
- "freePlugins": [
8658
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8659
- ],
8660
- "proPlugins": [
8661
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8662
- ],
8663
- "requiredtheme": ""
8664
- },
8665
- {
8666
- "id": "progress_bar_style_1",
8667
- "shareId": "progress-bar",
8668
- "title": "Progress Bar Style One",
8669
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_1.png",
8670
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_1.png",
8671
- "author": "HasThemes",
8672
- "url": "#",
8673
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8674
- "category": "blocks",
8675
- "tags": ["progress bar","progress","bar","blocks"],
8676
- "isPro": "1",
8677
- "tmpType": "pro",
8678
- "builder": ["elementor"],
8679
- "demoType": "blocks",
8680
- "freePlugins": [
8681
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8682
- ],
8683
- "proPlugins": [
8684
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8685
- ],
8686
- "requiredtheme": ""
8687
- },
8688
- {
8689
- "id": "progress_bar_style_2",
8690
- "shareId": "progress-bar",
8691
- "title": "Progress Bar Style Two",
8692
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_2.png",
8693
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_2.png",
8694
- "author": "HasThemes",
8695
- "url": "#",
8696
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8697
- "category": "blocks",
8698
- "tags": ["progress bar","progress","bar","blocks"],
8699
- "isPro": "1",
8700
- "tmpType": "pro",
8701
- "builder": ["elementor"],
8702
- "demoType": "blocks",
8703
- "freePlugins": [
8704
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8705
- ],
8706
- "proPlugins": [
8707
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8708
- ],
8709
- "requiredtheme": ""
8710
- },
8711
- {
8712
- "id": "progress_bar_style_3",
8713
- "shareId": "progress-bar",
8714
- "title": "Progress Bar Style Three",
8715
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_3.png",
8716
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_3.png",
8717
- "author": "HasThemes",
8718
- "url": "#",
8719
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8720
- "category": "blocks",
8721
- "tags": ["progress bar","progress","bar","blocks"],
8722
- "isPro": "1",
8723
- "tmpType": "pro",
8724
- "builder": ["elementor"],
8725
- "demoType": "blocks",
8726
- "freePlugins": [
8727
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8728
- ],
8729
- "proPlugins": [
8730
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8731
- ],
8732
- "requiredtheme": ""
8733
- },
8734
- {
8735
- "id": "progress_bar_style_4",
8736
- "shareId": "progress-bar",
8737
- "title": "Progress Bar Style Four",
8738
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_4.png",
8739
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_4.png",
8740
- "author": "HasThemes",
8741
- "url": "#",
8742
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8743
- "category": "blocks",
8744
- "tags": ["progress bar","progress","bar","blocks"],
8745
- "isPro": "1",
8746
- "tmpType": "pro",
8747
- "builder": ["elementor"],
8748
- "demoType": "blocks",
8749
- "freePlugins": [
8750
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8751
- ],
8752
- "proPlugins": [
8753
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8754
- ],
8755
- "requiredtheme": ""
8756
- },
8757
- {
8758
- "id": "progress_bar_style_5",
8759
- "shareId": "progress-bar",
8760
- "title": "Progress Bar Style Five",
8761
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_5.png",
8762
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_5.png",
8763
- "author": "HasThemes",
8764
- "url": "#",
8765
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8766
- "category": "blocks",
8767
- "tags": ["progress bar","progress","bar","blocks"],
8768
- "isPro": "1",
8769
- "tmpType": "pro",
8770
- "builder": ["elementor"],
8771
- "demoType": "blocks",
8772
- "freePlugins": [
8773
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8774
- ],
8775
- "proPlugins": [
8776
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8777
- ],
8778
- "requiredtheme": ""
8779
- },
8780
- {
8781
- "id": "progress_bar_style_6",
8782
- "shareId": "progress-bar",
8783
- "title": "Progress Bar Style Six",
8784
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_6.png",
8785
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_6.png",
8786
- "author": "HasThemes",
8787
- "url": "#",
8788
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8789
- "category": "blocks",
8790
- "tags": ["progress bar","progress","bar","blocks"],
8791
- "isPro": "1",
8792
- "tmpType": "pro",
8793
- "builder": ["elementor"],
8794
- "demoType": "blocks",
8795
- "freePlugins": [
8796
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8797
- ],
8798
- "proPlugins": [
8799
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8800
- ],
8801
- "requiredtheme": ""
8802
- },
8803
- {
8804
- "id": "progress_bar_style_7",
8805
- "shareId": "progress-bar",
8806
- "title": "Progress Bar Style Seven",
8807
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_7.png",
8808
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_7.png",
8809
- "author": "HasThemes",
8810
- "url": "#",
8811
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8812
- "category": "blocks",
8813
- "tags": ["progress bar","progress","bar","blocks"],
8814
- "isPro": "1",
8815
- "tmpType": "pro",
8816
- "builder": ["elementor"],
8817
- "demoType": "blocks",
8818
- "freePlugins": [
8819
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8820
- ],
8821
- "proPlugins": [
8822
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8823
- ],
8824
- "requiredtheme": ""
8825
- },
8826
- {
8827
- "id": "progress_bar_style_8",
8828
- "shareId": "progress-bar",
8829
- "title": "Progress Bar Style Eight",
8830
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_8.png",
8831
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_8.png",
8832
- "author": "HasThemes",
8833
- "url": "#",
8834
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8835
- "category": "blocks",
8836
- "tags": ["progress bar","progress","bar","blocks"],
8837
- "isPro": "1",
8838
- "tmpType": "pro",
8839
- "builder": ["elementor"],
8840
- "demoType": "blocks",
8841
- "freePlugins": [
8842
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8843
- ],
8844
- "proPlugins": [
8845
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8846
- ],
8847
- "requiredtheme": ""
8848
- },
8849
- {
8850
- "id": "progress_bar_style_9",
8851
- "shareId": "progress-bar",
8852
- "title": "Progress Bar Style Nine",
8853
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_9.png",
8854
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_9.png",
8855
- "author": "HasThemes",
8856
- "url": "#",
8857
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8858
- "category": "blocks",
8859
- "tags": ["progress bar","progress","bar","blocks"],
8860
- "isPro": "1",
8861
- "tmpType": "pro",
8862
- "builder": ["elementor"],
8863
- "demoType": "blocks",
8864
- "freePlugins": [
8865
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8866
- ],
8867
- "proPlugins": [
8868
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8869
- ],
8870
- "requiredtheme": ""
8871
- },
8872
- {
8873
- "id": "progress_bar_style_10",
8874
- "shareId": "progress-bar",
8875
- "title": "Progress Bar Style Ten",
8876
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_10.png",
8877
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_10.png",
8878
- "author": "HasThemes",
8879
- "url": "#",
8880
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8881
- "category": "blocks",
8882
- "tags": ["progress bar","progress","bar","blocks"],
8883
- "isPro": "1",
8884
- "tmpType": "pro",
8885
- "builder": ["elementor"],
8886
- "demoType": "blocks",
8887
- "freePlugins": [
8888
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8889
- ],
8890
- "proPlugins": [
8891
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8892
- ],
8893
- "requiredtheme": ""
8894
- },
8895
- {
8896
- "id": "progress_bar_style_11",
8897
- "shareId": "progress-bar",
8898
- "title": "Progress Bar Style Eleven",
8899
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/progress_bar_style_11.png",
8900
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/progress_bar_style_11.png",
8901
- "author": "HasThemes",
8902
- "url": "#",
8903
- "demoUrl": "http://demo.wphash.com/htmega/element-progress-bar/",
8904
- "category": "blocks",
8905
- "tags": ["progress bar","progress","bar","blocks"],
8906
- "isPro": "1",
8907
- "tmpType": "pro",
8908
- "builder": ["elementor"],
8909
- "demoType": "blocks",
8910
- "freePlugins": [
8911
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8912
- ],
8913
- "proPlugins": [
8914
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8915
- ],
8916
- "requiredtheme": ""
8917
- },
8918
- {
8919
- "id": "scroll_image_style_1",
8920
- "shareId": "scroll-image",
8921
- "title": "Scroll Image Style One",
8922
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_image_style_1.png",
8923
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_image_style_1.png",
8924
- "author": "HasThemes",
8925
- "url": "#",
8926
- "demoUrl": "http://demo.wphash.com/htmega/element-scroll-image/",
8927
- "category": "blocks",
8928
- "tags": ["scroll image","image","scroll"],
8929
- "isPro": "1",
8930
- "tmpType": "pro",
8931
- "builder": ["elementor"],
8932
- "demoType": "blocks",
8933
- "freePlugins": [
8934
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8935
- ],
8936
- "proPlugins": [
8937
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8938
- ],
8939
- "requiredtheme": ""
8940
- },
8941
- {
8942
- "id": "scroll_image_style_2",
8943
- "shareId": "scroll-image",
8944
- "title": "Scroll Image Style Two",
8945
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_image_style_2.png",
8946
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_image_style_2.png",
8947
- "author": "HasThemes",
8948
- "url": "#",
8949
- "demoUrl": "http://demo.wphash.com/htmega/element-scroll-image/",
8950
- "category": "blocks",
8951
- "tags": ["scroll image","image","scroll"],
8952
- "isPro": "1",
8953
- "tmpType": "pro",
8954
- "builder": ["elementor"],
8955
- "demoType": "blocks",
8956
- "freePlugins": [
8957
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8958
- ],
8959
- "proPlugins": [
8960
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8961
- ],
8962
- "requiredtheme": ""
8963
- },
8964
- {
8965
- "id": "scroll_navigation_style_1",
8966
- "shareId": "scroll-navigation",
8967
- "title": "Scroll Navigation Style One",
8968
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/scroll_navigation_style_1.png",
8969
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/scroll_navigation_style_1.png",
8970
- "author": "HasThemes",
8971
- "url": "#",
8972
- "demoUrl": "http://demo.wphash.com/htmega/element-scroll-navigation/",
8973
- "category": "blocks",
8974
- "tags": ["scroll navigation","scroll","navigation"],
8975
- "isPro": "1",
8976
- "tmpType": "pro",
8977
- "builder": ["elementor"],
8978
- "demoType": "blocks",
8979
- "freePlugins": [
8980
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
8981
- ],
8982
- "proPlugins": [
8983
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
8984
- ],
8985
- "requiredtheme": ""
8986
- },
8987
- {
8988
- "id": "search_form_style_1",
8989
- "shareId": "search-form",
8990
- "title": "Search Form Style One",
8991
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_1.png",
8992
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_1.png",
8993
- "author": "HasThemes",
8994
- "url": "#",
8995
- "demoUrl": "http://demo.wphash.com/htmega/elementor-search/",
8996
- "category": "blocks",
8997
- "tags": ["search form","search","form","blocks"],
8998
- "isPro": "1",
8999
- "tmpType": "pro",
9000
- "builder": ["elementor"],
9001
- "demoType": "blocks",
9002
- "freePlugins": [
9003
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9004
- ],
9005
- "proPlugins": [
9006
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9007
- ],
9008
- "requiredtheme": ""
9009
- },
9010
- {
9011
- "id": "search_form_style_2",
9012
- "shareId": "search-form",
9013
- "title": "Search Form Style Two",
9014
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_2.png",
9015
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_2.png",
9016
- "author": "HasThemes",
9017
- "url": "#",
9018
- "demoUrl": "http://demo.wphash.com/htmega/elementor-search/",
9019
- "category": "blocks",
9020
- "tags": ["search form","search","form","blocks"],
9021
- "isPro": "1",
9022
- "tmpType": "pro",
9023
- "builder": ["elementor"],
9024
- "demoType": "blocks",
9025
- "freePlugins": [
9026
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9027
- ],
9028
- "proPlugins": [
9029
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9030
- ],
9031
- "requiredtheme": ""
9032
- },
9033
- {
9034
- "id": "search_form_style_3",
9035
- "shareId": "search-form",
9036
- "title": "Search Form Style Three",
9037
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_3.png",
9038
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_3.png",
9039
- "author": "HasThemes",
9040
- "url": "#",
9041
- "demoUrl": "http://demo.wphash.com/htmega/elementor-search/",
9042
- "category": "blocks",
9043
- "tags": ["search form","search","form","blocks"],
9044
- "isPro": "1",
9045
- "tmpType": "pro",
9046
- "builder": ["elementor"],
9047
- "demoType": "blocks",
9048
- "freePlugins": [
9049
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9050
- ],
9051
- "proPlugins": [
9052
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9053
- ],
9054
- "requiredtheme": ""
9055
- },
9056
- {
9057
- "id": "search_form_style_4",
9058
- "shareId": "search-form",
9059
- "title": "Search Form Style Four",
9060
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_4.png",
9061
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_4.png",
9062
- "author": "HasThemes",
9063
- "url": "#",
9064
- "demoUrl": "http://demo.wphash.com/htmega/elementor-search/",
9065
- "category": "blocks",
9066
- "tags": ["search form","search","form","blocks"],
9067
- "isPro": "1",
9068
- "tmpType": "pro",
9069
- "builder": ["elementor"],
9070
- "demoType": "blocks",
9071
- "freePlugins": [
9072
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9073
- ],
9074
- "proPlugins": [
9075
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9076
- ],
9077
- "requiredtheme": ""
9078
- },
9079
- {
9080
- "id": "search_form_style_5",
9081
- "shareId": "search-form",
9082
- "title": "Search Form Style Five",
9083
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/search_form_style_5.png",
9084
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/search_form_style_5.png",
9085
- "author": "HasThemes",
9086
- "url": "#",
9087
- "demoUrl": "http://demo.wphash.com/htmega/elementor-search/",
9088
- "category": "blocks",
9089
- "tags": ["search form","search","form","blocks"],
9090
- "isPro": "1",
9091
- "tmpType": "pro",
9092
- "builder": ["elementor"],
9093
- "demoType": "blocks",
9094
- "freePlugins": [
9095
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9096
- ],
9097
- "proPlugins": [
9098
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9099
- ],
9100
- "requiredtheme": ""
9101
- },
9102
- {
9103
- "id": "services_style_1",
9104
- "shareId": "services",
9105
- "title": "Services Style One",
9106
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_1.png",
9107
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_1.png",
9108
- "author": "HasThemes",
9109
- "url": "#",
9110
- "demoUrl": "http://demo.wphash.com/htmega/element-services/",
9111
- "category": "blocks",
9112
- "tags": ["services","blocks"],
9113
- "isPro": "1",
9114
- "tmpType": "pro",
9115
- "builder": ["elementor"],
9116
- "demoType": "blocks",
9117
- "freePlugins": [
9118
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9119
- ],
9120
- "proPlugins": [
9121
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9122
- ],
9123
- "requiredtheme": ""
9124
- },
9125
- {
9126
- "id": "services_style_2",
9127
- "shareId": "services",
9128
- "title": "Services Style Two",
9129
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_2.png",
9130
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_2.png",
9131
- "author": "HasThemes",
9132
- "url": "#",
9133
- "demoUrl": "http://demo.wphash.com/htmega/element-services/",
9134
- "category": "blocks",
9135
- "tags": ["services","blocks"],
9136
- "isPro": "1",
9137
- "tmpType": "pro",
9138
- "builder": ["elementor"],
9139
- "demoType": "blocks",
9140
- "freePlugins": [
9141
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9142
- ],
9143
- "proPlugins": [
9144
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9145
- ],
9146
- "requiredtheme": ""
9147
- },
9148
- {
9149
- "id": "services_style_3",
9150
- "shareId": "services",
9151
- "title": "Services Style Three",
9152
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_3.png",
9153
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_3.png",
9154
- "author": "HasThemes",
9155
- "url": "#",
9156
- "demoUrl": "http://demo.wphash.com/htmega/element-services/",
9157
- "category": "blocks",
9158
- "tags": ["services","blocks"],
9159
- "isPro": "1",
9160
- "tmpType": "pro",
9161
- "builder": ["elementor"],
9162
- "demoType": "blocks",
9163
- "freePlugins": [
9164
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9165
- ],
9166
- "proPlugins": [
9167
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9168
- ],
9169
- "requiredtheme": ""
9170
- },
9171
- {
9172
- "id": "services_style_4",
9173
- "shareId": "services",
9174
- "title": "Services Style Four",
9175
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_4.png",
9176
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_4.png",
9177
- "author": "HasThemes",
9178
- "url": "#",
9179
- "demoUrl": "http://demo.wphash.com/htmega/element-services/",
9180
- "category": "blocks",
9181
- "tags": ["services","blocks"],
9182
- "isPro": "1",
9183
- "tmpType": "pro",
9184
- "builder": ["elementor"],
9185
- "demoType": "blocks",
9186
- "freePlugins": [
9187
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9188
- ],
9189
- "proPlugins": [
9190
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9191
- ],
9192
- "requiredtheme": ""
9193
- },
9194
- {
9195
- "id": "services_style_5",
9196
- "shareId": "services",
9197
- "title": "Services Style Five",
9198
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_5.png",
9199
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_5.png",
9200
- "author": "HasThemes",
9201
- "url": "#",
9202
- "demoUrl": "http://demo.wphash.com/htmega/element-services/",
9203
- "category": "blocks",
9204
- "tags": ["services","blocks"],
9205
- "isPro": "1",
9206
- "tmpType": "pro",
9207
- "builder": ["elementor"],
9208
- "demoType": "blocks",
9209
- "freePlugins": [
9210
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9211
- ],
9212
- "proPlugins": [
9213
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9214
- ],
9215
- "requiredtheme": ""
9216
- },
9217
- {
9218
- "id": "services_style_6",
9219
- "shareId": "services",
9220
- "title": "Services Style Six",
9221
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_6.png",
9222
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_6.png",
9223
- "author": "HasThemes",
9224
- "url": "#",
9225
- "demoUrl": "http://demo.wphash.com/htmega/element-services/",
9226
- "category": "blocks",
9227
- "tags": ["services","blocks"],
9228
- "isPro": "1",
9229
- "tmpType": "pro",
9230
- "builder": ["elementor"],
9231
- "demoType": "blocks",
9232
- "freePlugins": [
9233
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9234
- ],
9235
- "proPlugins": [
9236
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9237
- ],
9238
- "requiredtheme": ""
9239
- },
9240
- {
9241
- "id": "services_style_7",
9242
- "shareId": "services",
9243
- "title": "Services Style Seven",
9244
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/services_style_7.png",
9245
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/services_style_7.png",
9246
- "author": "HasThemes",
9247
- "url": "#",
9248
- "demoUrl": "http://demo.wphash.com/htmega/element-services/",
9249
- "category": "blocks",
9250
- "tags": ["services","blocks"],
9251
- "isPro": "1",
9252
- "tmpType": "pro",
9253
- "builder": ["elementor"],
9254
- "demoType": "blocks",
9255
- "freePlugins": [
9256
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9257
- ],
9258
- "proPlugins": [
9259
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9260
- ],
9261
- "requiredtheme": ""
9262
- },
9263
- {
9264
- "id": "single_post_style_1",
9265
- "shareId": "single-post",
9266
- "title": "Single Post Style One",
9267
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_1.png",
9268
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_1.png",
9269
- "author": "HasThemes",
9270
- "url": "#",
9271
- "demoUrl": "http://demo.wphash.com/htmega/element-single-post/",
9272
- "category": "blocks",
9273
- "tags": ["single post","single","post","blocks"],
9274
- "isPro": "1",
9275
- "tmpType": "pro",
9276
- "builder": ["elementor"],
9277
- "demoType": "blocks",
9278
- "freePlugins": [
9279
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9280
- ],
9281
- "proPlugins": [
9282
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9283
- ],
9284
- "requiredtheme": ""
9285
- },
9286
- {
9287
- "id": "single_post_style_2",
9288
- "shareId": "single-post",
9289
- "title": "Single Post Style Two",
9290
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_2.png",
9291
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_2.png",
9292
- "author": "HasThemes",
9293
- "url": "#",
9294
- "demoUrl": "http://demo.wphash.com/htmega/element-single-post/",
9295
- "category": "blocks",
9296
- "tags": ["single post","single","post","blocks"],
9297
- "isPro": "1",
9298
- "tmpType": "pro",
9299
- "builder": ["elementor"],
9300
- "demoType": "blocks",
9301
- "freePlugins": [
9302
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9303
- ],
9304
- "proPlugins": [
9305
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9306
- ],
9307
- "requiredtheme": ""
9308
- },
9309
- {
9310
- "id": "single_post_style_3",
9311
- "shareId": "single-post",
9312
- "title": "Single Post Style Three",
9313
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_3.png",
9314
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_3.png",
9315
- "author": "HasThemes",
9316
- "url": "#",
9317
- "demoUrl": "http://demo.wphash.com/htmega/element-single-post/",
9318
- "category": "blocks",
9319
- "tags": ["single post","single","post","blocks"],
9320
- "isPro": "1",
9321
- "tmpType": "pro",
9322
- "builder": ["elementor"],
9323
- "demoType": "blocks",
9324
- "freePlugins": [
9325
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9326
- ],
9327
- "proPlugins": [
9328
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9329
- ],
9330
- "requiredtheme": ""
9331
- },
9332
- {
9333
- "id": "single_post_style_4",
9334
- "shareId": "single-post",
9335
- "title": "Single Post Style Four",
9336
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_4.png",
9337
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_4.png",
9338
- "author": "HasThemes",
9339
- "url": "#",
9340
- "demoUrl": "http://demo.wphash.com/htmega/element-single-post/",
9341
- "category": "blocks",
9342
- "tags": ["single post","single","post","blocks"],
9343
- "isPro": "1",
9344
- "tmpType": "pro",
9345
- "builder": ["elementor"],
9346
- "demoType": "blocks",
9347
- "freePlugins": [
9348
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9349
- ],
9350
- "proPlugins": [
9351
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9352
- ],
9353
- "requiredtheme": ""
9354
- },
9355
- {
9356
- "id": "single_post_style_5",
9357
- "shareId": "single-post",
9358
- "title": "Single Post Style Five",
9359
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/single_post_style_5.png",
9360
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/single_post_style_5.png",
9361
- "author": "HasThemes",
9362
- "url": "#",
9363
- "demoUrl": "http://demo.wphash.com/htmega/element-single-post/",
9364
- "category": "blocks",
9365
- "tags": ["single post","single","post","blocks"],
9366
- "isPro": "1",
9367
- "tmpType": "pro",
9368
- "builder": ["elementor"],
9369
- "demoType": "blocks",
9370
- "freePlugins": [
9371
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9372
- ],
9373
- "proPlugins": [
9374
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9375
- ],
9376
- "requiredtheme": ""
9377
- },
9378
- {
9379
- "id": "social_share_style_1",
9380
- "shareId": "social-share",
9381
- "title": "Social Share Style One",
9382
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_1.png",
9383
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_1.png",
9384
- "author": "HasThemes",
9385
- "url": "#",
9386
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9387
- "category": "blocks",
9388
- "tags": ["social share","social","share","blocks"],
9389
- "isPro": "1",
9390
- "tmpType": "pro",
9391
- "builder": ["elementor"],
9392
- "demoType": "blocks",
9393
- "freePlugins": [
9394
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9395
- ],
9396
- "proPlugins": [
9397
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9398
- ],
9399
- "requiredtheme": ""
9400
- },
9401
- {
9402
- "id": "social_share_style_2",
9403
- "shareId": "social-share",
9404
- "title": "Social Share Style Two",
9405
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_2.png",
9406
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_2.png",
9407
- "author": "HasThemes",
9408
- "url": "#",
9409
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9410
- "category": "blocks",
9411
- "tags": ["social share","social","share","blocks"],
9412
- "isPro": "1",
9413
- "tmpType": "pro",
9414
- "builder": ["elementor"],
9415
- "demoType": "blocks",
9416
- "freePlugins": [
9417
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9418
- ],
9419
- "proPlugins": [
9420
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9421
- ],
9422
- "requiredtheme": ""
9423
- },
9424
- {
9425
- "id": "social_share_style_3",
9426
- "shareId": "social-share",
9427
- "title": "Social Share Style Three",
9428
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_3.png",
9429
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_3.png",
9430
- "author": "HasThemes",
9431
- "url": "#",
9432
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9433
- "category": "blocks",
9434
- "tags": ["social share","social","share","blocks"],
9435
- "isPro": "1",
9436
- "tmpType": "pro",
9437
- "builder": ["elementor"],
9438
- "demoType": "blocks",
9439
- "freePlugins": [
9440
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9441
- ],
9442
- "proPlugins": [
9443
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9444
- ],
9445
- "requiredtheme": ""
9446
- },
9447
- {
9448
- "id": "social_share_style_4",
9449
- "shareId": "social-share",
9450
- "title": "Social Share Style Four",
9451
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_4.png",
9452
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_4.png",
9453
- "author": "HasThemes",
9454
- "url": "#",
9455
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9456
- "category": "blocks",
9457
- "tags": ["social share","social","share","blocks"],
9458
- "isPro": "1",
9459
- "tmpType": "pro",
9460
- "builder": ["elementor"],
9461
- "demoType": "blocks",
9462
- "freePlugins": [
9463
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9464
- ],
9465
- "proPlugins": [
9466
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9467
- ],
9468
- "requiredtheme": ""
9469
- },
9470
- {
9471
- "id": "social_share_style_5",
9472
- "shareId": "social-share",
9473
- "title": "Social Share Style Five",
9474
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_5.png",
9475
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_5.png",
9476
- "author": "HasThemes",
9477
- "url": "#",
9478
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9479
- "category": "blocks",
9480
- "tags": ["social share","social","share","blocks"],
9481
- "isPro": "1",
9482
- "tmpType": "pro",
9483
- "builder": ["elementor"],
9484
- "demoType": "blocks",
9485
- "freePlugins": [
9486
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9487
- ],
9488
- "proPlugins": [
9489
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9490
- ],
9491
- "requiredtheme": ""
9492
- },
9493
- {
9494
- "id": "social_share_style_6",
9495
- "shareId": "social-share",
9496
- "title": "Social Share Style Six",
9497
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_6.png",
9498
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_6.png",
9499
- "author": "HasThemes",
9500
- "url": "#",
9501
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9502
- "category": "blocks",
9503
- "tags": ["social share","social","share","blocks"],
9504
- "isPro": "1",
9505
- "tmpType": "pro",
9506
- "builder": ["elementor"],
9507
- "demoType": "blocks",
9508
- "freePlugins": [
9509
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9510
- ],
9511
- "proPlugins": [
9512
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9513
- ],
9514
- "requiredtheme": ""
9515
- },
9516
- {
9517
- "id": "social_share_style_7",
9518
- "shareId": "social-share",
9519
- "title": "Social Share Style Seven",
9520
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_7.png",
9521
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_7.png",
9522
- "author": "HasThemes",
9523
- "url": "#",
9524
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9525
- "category": "blocks",
9526
- "tags": ["social share","social","share","blocks"],
9527
- "isPro": "1",
9528
- "tmpType": "pro",
9529
- "builder": ["elementor"],
9530
- "demoType": "blocks",
9531
- "freePlugins": [
9532
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9533
- ],
9534
- "proPlugins": [
9535
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9536
- ],
9537
- "requiredtheme": ""
9538
- },
9539
- {
9540
- "id": "social_share_style_8",
9541
- "shareId": "social-share",
9542
- "title": "Social Share Style Eight",
9543
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_8.png",
9544
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_8.png",
9545
- "author": "HasThemes",
9546
- "url": "#",
9547
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9548
- "category": "blocks",
9549
- "tags": ["social share","social","share","blocks"],
9550
- "isPro": "1",
9551
- "tmpType": "pro",
9552
- "builder": ["elementor"],
9553
- "demoType": "blocks",
9554
- "freePlugins": [
9555
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9556
- ],
9557
- "proPlugins": [
9558
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9559
- ],
9560
- "requiredtheme": ""
9561
- },
9562
- {
9563
- "id": "social_share_style_9",
9564
- "shareId": "social-share",
9565
- "title": "Social Share Style Nine",
9566
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/social_share_style_9.png",
9567
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/social_share_style_9.png",
9568
- "author": "HasThemes",
9569
- "url": "#",
9570
- "demoUrl": "http://demo.wphash.com/htmega/element-social-shere/",
9571
- "category": "blocks",
9572
- "tags": ["social share","social","share","blocks"],
9573
- "isPro": "1",
9574
- "tmpType": "pro",
9575
- "builder": ["elementor"],
9576
- "demoType": "blocks",
9577
- "freePlugins": [
9578
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9579
- ],
9580
- "proPlugins": [
9581
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9582
- ],
9583
- "requiredtheme": ""
9584
- },
9585
- {
9586
- "id": "subscribe_style_1",
9587
- "shareId": "subscribe",
9588
- "title": "Subscribe Style One",
9589
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_1.png",
9590
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_1.png",
9591
- "author": "HasThemes",
9592
- "url": "#",
9593
- "demoUrl": "http://demo.wphash.com/htmega/element-subscribe/",
9594
- "category": "blocks",
9595
- "tags": ["subscribe","blocks"],
9596
- "isPro": "1",
9597
- "tmpType": "pro",
9598
- "builder": ["elementor"],
9599
- "demoType": "blocks",
9600
- "freePlugins": [
9601
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9602
- ],
9603
- "proPlugins": [
9604
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9605
- ],
9606
- "requiredtheme": ""
9607
- },
9608
- {
9609
- "id": "subscribe_style_2",
9610
- "shareId": "subscribe",
9611
- "title": "Subscribe Style Two",
9612
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_2.png",
9613
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_2.png",
9614
- "author": "HasThemes",
9615
- "url": "#",
9616
- "demoUrl": "http://demo.wphash.com/htmega/element-subscribe/",
9617
- "category": "blocks",
9618
- "tags": ["subscribe","blocks"],
9619
- "isPro": "1",
9620
- "tmpType": "pro",
9621
- "builder": ["elementor"],
9622
- "demoType": "blocks",
9623
- "freePlugins": [
9624
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9625
- ],
9626
- "proPlugins": [
9627
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9628
- ],
9629
- "requiredtheme": ""
9630
- },
9631
- {
9632
- "id": "subscribe_style_3",
9633
- "shareId": "subscribe",
9634
- "title": "Subscribe Style Three",
9635
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_3.png",
9636
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_3.png",
9637
- "author": "HasThemes",
9638
- "url": "#",
9639
- "demoUrl": "http://demo.wphash.com/htmega/element-subscribe/",
9640
- "category": "blocks",
9641
- "tags": ["subscribe","blocks"],
9642
- "isPro": "1",
9643
- "tmpType": "pro",
9644
- "builder": ["elementor"],
9645
- "demoType": "blocks",
9646
- "freePlugins": [
9647
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9648
- ],
9649
- "proPlugins": [
9650
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9651
- ],
9652
- "requiredtheme": ""
9653
- },
9654
- {
9655
- "id": "subscribe_style_4",
9656
- "shareId": "subscribe",
9657
- "title": "Subscribe Style Four",
9658
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_4.png",
9659
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_4.png",
9660
- "author": "HasThemes",
9661
- "url": "#",
9662
- "demoUrl": "http://demo.wphash.com/htmega/element-subscribe/",
9663
- "category": "blocks",
9664
- "tags": ["subscribe","blocks"],
9665
- "isPro": "1",
9666
- "tmpType": "pro",
9667
- "builder": ["elementor"],
9668
- "demoType": "blocks",
9669
- "freePlugins": [
9670
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9671
- ],
9672
- "proPlugins": [
9673
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9674
- ],
9675
- "requiredtheme": ""
9676
- },
9677
- {
9678
- "id": "subscribe_style_5",
9679
- "shareId": "subscribe",
9680
- "title": "Subscribe Style Five",
9681
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/subscribe_style_5.png",
9682
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/subscribe_style_5.png",
9683
- "author": "HasThemes",
9684
- "url": "#",
9685
- "demoUrl": "http://demo.wphash.com/htmega/element-subscribe/",
9686
- "category": "blocks",
9687
- "tags": ["subscribe","blocks"],
9688
- "isPro": "1",
9689
- "tmpType": "pro",
9690
- "builder": ["elementor"],
9691
- "demoType": "blocks",
9692
- "freePlugins": [
9693
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9694
- ],
9695
- "proPlugins": [
9696
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9697
- ],
9698
- "requiredtheme": ""
9699
- },
9700
- {
9701
- "id": "switcher_style_1",
9702
- "shareId": "switcher",
9703
- "title": "Switcher Style One",
9704
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_1.png",
9705
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_1.png",
9706
- "author": "HasThemes",
9707
- "url": "#",
9708
- "demoUrl": "http://demo.wphash.com/htmega/element-switcher/",
9709
- "category": "blocks",
9710
- "tags": ["switcher","blocks"],
9711
- "isPro": "1",
9712
- "tmpType": "pro",
9713
- "builder": ["elementor"],
9714
- "demoType": "blocks",
9715
- "freePlugins": [
9716
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9717
- ],
9718
- "proPlugins": [
9719
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9720
- ],
9721
- "requiredtheme": ""
9722
- },
9723
- {
9724
- "id": "switcher_style_2",
9725
- "shareId": "switcher",
9726
- "title": "Switcher Style Two",
9727
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_2.png",
9728
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_2.png",
9729
- "author": "HasThemes",
9730
- "url": "#",
9731
- "demoUrl": "http://demo.wphash.com/htmega/element-switcher/",
9732
- "category": "blocks",
9733
- "tags": ["switcher","blocks"],
9734
- "isPro": "1",
9735
- "tmpType": "pro",
9736
- "builder": ["elementor"],
9737
- "demoType": "blocks",
9738
- "freePlugins": [
9739
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9740
- ],
9741
- "proPlugins": [
9742
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9743
- ],
9744
- "requiredtheme": ""
9745
- },
9746
- {
9747
- "id": "switcher_style_3",
9748
- "shareId": "switcher",
9749
- "title": "Switcher Style Three",
9750
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/switcher_style_3.png",
9751
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/switcher_style_3.png",
9752
- "author": "HasThemes",
9753
- "url": "#",
9754
- "demoUrl": "http://demo.wphash.com/htmega/element-switcher/",
9755
- "category": "blocks",
9756
- "tags": ["switcher","blocks"],
9757
- "isPro": "1",
9758
- "tmpType": "pro",
9759
- "builder": ["elementor"],
9760
- "demoType": "blocks",
9761
- "freePlugins": [
9762
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9763
- ],
9764
- "proPlugins": [
9765
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9766
- ],
9767
- "requiredtheme": ""
9768
- },
9769
- {
9770
- "id": "tab_style_1",
9771
- "shareId": "tab",
9772
- "title": "Tab Style One",
9773
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_1.png",
9774
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_1.png",
9775
- "author": "HasThemes",
9776
- "url": "#",
9777
- "demoUrl": "http://demo.wphash.com/htmega/element-tab/",
9778
- "category": "blocks",
9779
- "tags": ["tab","blocks"],
9780
- "isPro": "1",
9781
- "tmpType": "pro",
9782
- "builder": ["elementor"],
9783
- "demoType": "blocks",
9784
- "freePlugins": [
9785
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9786
- ],
9787
- "proPlugins": [
9788
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9789
- ],
9790
- "requiredtheme": ""
9791
- },
9792
- {
9793
- "id": "tab_style_2",
9794
- "shareId": "tab",
9795
- "title": "Tab Style Two",
9796
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_2.png",
9797
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_2.png",
9798
- "author": "HasThemes",
9799
- "url": "#",
9800
- "demoUrl": "http://demo.wphash.com/htmega/element-tab/",
9801
- "category": "blocks",
9802
- "tags": ["tab","blocks"],
9803
- "isPro": "1",
9804
- "tmpType": "pro",
9805
- "builder": ["elementor"],
9806
- "demoType": "blocks",
9807
- "freePlugins": [
9808
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9809
- ],
9810
- "proPlugins": [
9811
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9812
- ],
9813
- "requiredtheme": ""
9814
- },
9815
- {
9816
- "id": "tab_style_3",
9817
- "shareId": "tab",
9818
- "title": "Tab Style Three",
9819
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_3.png",
9820
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_3.png",
9821
- "author": "HasThemes",
9822
- "url": "#",
9823
- "demoUrl": "http://demo.wphash.com/htmega/element-tab/",
9824
- "category": "blocks",
9825
- "tags": ["tab","blocks"],
9826
- "isPro": "1",
9827
- "tmpType": "pro",
9828
- "builder": ["elementor"],
9829
- "demoType": "blocks",
9830
- "freePlugins": [
9831
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9832
- ],
9833
- "proPlugins": [
9834
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9835
- ],
9836
- "requiredtheme": ""
9837
- },
9838
- {
9839
- "id": "tab_style_4",
9840
- "shareId": "tab",
9841
- "title": "Tab Style Four",
9842
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_4.png",
9843
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_4.png",
9844
- "author": "HasThemes",
9845
- "url": "#",
9846
- "demoUrl": "http://demo.wphash.com/htmega/element-tab/",
9847
- "category": "blocks",
9848
- "tags": ["tab","blocks"],
9849
- "isPro": "1",
9850
- "tmpType": "pro",
9851
- "builder": ["elementor"],
9852
- "demoType": "blocks",
9853
- "freePlugins": [
9854
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9855
- ],
9856
- "proPlugins": [
9857
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9858
- ],
9859
- "requiredtheme": ""
9860
- },
9861
- {
9862
- "id": "tab_style_5",
9863
- "shareId": "tab",
9864
- "title": "Tab Style Five",
9865
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tab_style_5.png",
9866
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tab_style_5.png",
9867
- "author": "HasThemes",
9868
- "url": "#",
9869
- "demoUrl": "http://demo.wphash.com/htmega/element-tab/",
9870
- "category": "blocks",
9871
- "tags": ["tab","blocks"],
9872
- "isPro": "1",
9873
- "tmpType": "pro",
9874
- "builder": ["elementor"],
9875
- "demoType": "blocks",
9876
- "freePlugins": [
9877
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9878
- ],
9879
- "proPlugins": [
9880
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9881
- ],
9882
- "requiredtheme": ""
9883
- },
9884
- {
9885
- "id": "team_member_style_1",
9886
- "shareId": "team-member",
9887
- "title": "Team Member Style One",
9888
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_1.png",
9889
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_1.png",
9890
- "author": "HasThemes",
9891
- "url": "#",
9892
- "demoUrl": "http://demo.wphash.com/htmega/element-team-member/",
9893
- "category": "blocks",
9894
- "tags": ["team member","team","member","blocks"],
9895
- "isPro": "1",
9896
- "tmpType": "pro",
9897
- "builder": ["elementor"],
9898
- "demoType": "blocks",
9899
- "freePlugins": [
9900
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9901
- ],
9902
- "proPlugins": [
9903
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9904
- ],
9905
- "requiredtheme": ""
9906
- },
9907
- {
9908
- "id": "team_member_style_2",
9909
- "shareId": "team-member",
9910
- "title": "Team Member Style Two",
9911
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_2.png",
9912
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_2.png",
9913
- "author": "HasThemes",
9914
- "url": "#",
9915
- "demoUrl": "http://demo.wphash.com/htmega/element-team-member/",
9916
- "category": "blocks",
9917
- "tags": ["team member","team","member","blocks"],
9918
- "isPro": "1",
9919
- "tmpType": "pro",
9920
- "builder": ["elementor"],
9921
- "demoType": "blocks",
9922
- "freePlugins": [
9923
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9924
- ],
9925
- "proPlugins": [
9926
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9927
- ],
9928
- "requiredtheme": ""
9929
- },
9930
- {
9931
- "id": "team_member_style_3",
9932
- "shareId": "team-member",
9933
- "title": "Team Member Style Three",
9934
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_3.png",
9935
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_3.png",
9936
- "author": "HasThemes",
9937
- "url": "#",
9938
- "demoUrl": "http://demo.wphash.com/htmega/element-team-member/",
9939
- "category": "blocks",
9940
- "tags": ["team member","team","member","blocks"],
9941
- "isPro": "1",
9942
- "tmpType": "pro",
9943
- "builder": ["elementor"],
9944
- "demoType": "blocks",
9945
- "freePlugins": [
9946
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9947
- ],
9948
- "proPlugins": [
9949
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9950
- ],
9951
- "requiredtheme": ""
9952
- },
9953
- {
9954
- "id": "team_member_style_4",
9955
- "shareId": "team-member",
9956
- "title": "Team Member Style Four",
9957
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_4.png",
9958
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_4.png",
9959
- "author": "HasThemes",
9960
- "url": "#",
9961
- "demoUrl": "http://demo.wphash.com/htmega/element-team-member/",
9962
- "category": "blocks",
9963
- "tags": ["team member","team","member","blocks"],
9964
- "isPro": "1",
9965
- "tmpType": "pro",
9966
- "builder": ["elementor"],
9967
- "demoType": "blocks",
9968
- "freePlugins": [
9969
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9970
- ],
9971
- "proPlugins": [
9972
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9973
- ],
9974
- "requiredtheme": ""
9975
- },
9976
- {
9977
- "id": "team_member_style_5",
9978
- "shareId": "team-member",
9979
- "title": "Team Member Style Five",
9980
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_5.png",
9981
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_5.png",
9982
- "author": "HasThemes",
9983
- "url": "#",
9984
- "demoUrl": "http://demo.wphash.com/htmega/element-team-member/",
9985
- "category": "blocks",
9986
- "tags": ["team member","team","member","blocks"],
9987
- "isPro": "1",
9988
- "tmpType": "pro",
9989
- "builder": ["elementor"],
9990
- "demoType": "blocks",
9991
- "freePlugins": [
9992
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
9993
- ],
9994
- "proPlugins": [
9995
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
9996
- ],
9997
- "requiredtheme": ""
9998
- },
9999
- {
10000
- "id": "team_member_style_6",
10001
- "shareId": "team-member",
10002
- "title": "Team Member Style Six",
10003
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_6.png",
10004
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_6.png",
10005
- "author": "HasThemes",
10006
- "url": "#",
10007
- "demoUrl": "http://demo.wphash.com/htmega/element-team-member/",
10008
- "category": "blocks",
10009
- "tags": ["team member","team","member","blocks"],
10010
- "isPro": "1",
10011
- "tmpType": "pro",
10012
- "builder": ["elementor"],
10013
- "demoType": "blocks",
10014
- "freePlugins": [
10015
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10016
- ],
10017
- "proPlugins": [
10018
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10019
- ],
10020
- "requiredtheme": ""
10021
- },
10022
- {
10023
- "id": "team_member_style_7",
10024
- "shareId": "team-member",
10025
- "title": "Team Member Style Seven",
10026
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_7.png",
10027
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_7.png",
10028
- "author": "HasThemes",
10029
- "url": "#",
10030
- "demoUrl": "http://demo.wphash.com/htmega/element-team-member/",
10031
- "category": "blocks",
10032
- "tags": ["team member","team","member","blocks"],
10033
- "isPro": "1",
10034
- "tmpType": "pro",
10035
- "builder": ["elementor"],
10036
- "demoType": "blocks",
10037
- "freePlugins": [
10038
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10039
- ],
10040
- "proPlugins": [
10041
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10042
- ],
10043
- "requiredtheme": ""
10044
- },
10045
- {
10046
- "id": "team_member_style_8",
10047
- "shareId": "team-member",
10048
- "title": "Team Member Style Eight",
10049
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/team_member_style_8.png",
10050
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/team_member_style_8.png",
10051
- "author": "HasThemes",
10052
- "url": "#",
10053
- "demoUrl": "http://demo.wphash.com/htmega/element-team-member/",
10054
- "category": "blocks",
10055
- "tags": ["team member","team","member","blocks"],
10056
- "isPro": "1",
10057
- "tmpType": "pro",
10058
- "builder": ["elementor"],
10059
- "demoType": "blocks",
10060
- "freePlugins": [
10061
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10062
- ],
10063
- "proPlugins": [
10064
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10065
- ],
10066
- "requiredtheme": ""
10067
- },
10068
- {
10069
- "id": "testimonial_carosel_style_1",
10070
- "shareId": "testimonial-carousel",
10071
- "title": "Testimonial Carousel Style One",
10072
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_1.png",
10073
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_1.png",
10074
- "author": "HasThemes",
10075
- "url": "#",
10076
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10077
- "category": "blocks",
10078
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10079
- "isPro": "1",
10080
- "tmpType": "pro",
10081
- "builder": ["elementor"],
10082
- "demoType": "blocks",
10083
- "freePlugins": [
10084
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10085
- ],
10086
- "proPlugins": [
10087
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10088
- ],
10089
- "requiredtheme": ""
10090
- },
10091
- {
10092
- "id": "testimonial_carosel_style_2",
10093
- "shareId": "testimonial-carousel",
10094
- "title": "Testimonial Carousel Style Two",
10095
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_2.png",
10096
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_2.png",
10097
- "author": "HasThemes",
10098
- "url": "#",
10099
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10100
- "category": "blocks",
10101
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10102
- "isPro": "1",
10103
- "tmpType": "pro",
10104
- "builder": ["elementor"],
10105
- "demoType": "blocks",
10106
- "freePlugins": [
10107
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10108
- ],
10109
- "proPlugins": [
10110
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10111
- ],
10112
- "requiredtheme": ""
10113
- },
10114
- {
10115
- "id": "testimonial_carosel_style_3",
10116
- "shareId": "testimonial-carousel",
10117
- "title": "Testimonial Carousel Style Three",
10118
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_3.png",
10119
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_3.png",
10120
- "author": "HasThemes",
10121
- "url": "#",
10122
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10123
- "category": "blocks",
10124
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10125
- "isPro": "1",
10126
- "tmpType": "pro",
10127
- "builder": ["elementor"],
10128
- "demoType": "blocks",
10129
- "freePlugins": [
10130
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10131
- ],
10132
- "proPlugins": [
10133
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10134
- ],
10135
- "requiredtheme": ""
10136
- },
10137
- {
10138
- "id": "testimonial_carosel_style_4",
10139
- "shareId": "testimonial-carousel",
10140
- "title": "Testimonial Carousel Style Four",
10141
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_4.png",
10142
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_4.png",
10143
- "author": "HasThemes",
10144
- "url": "#",
10145
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10146
- "category": "blocks",
10147
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10148
- "isPro": "1",
10149
- "tmpType": "pro",
10150
- "builder": ["elementor"],
10151
- "demoType": "blocks",
10152
- "freePlugins": [
10153
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10154
- ],
10155
- "proPlugins": [
10156
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10157
- ],
10158
- "requiredtheme": ""
10159
- },
10160
- {
10161
- "id": "testimonial_carosel_style_5",
10162
- "shareId": "testimonial-carousel",
10163
- "title": "Testimonial Carousel Style Five",
10164
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_5.png",
10165
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_5.png",
10166
- "author": "HasThemes",
10167
- "url": "#",
10168
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10169
- "category": "blocks",
10170
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10171
- "isPro": "1",
10172
- "tmpType": "pro",
10173
- "builder": ["elementor"],
10174
- "demoType": "blocks",
10175
- "freePlugins": [
10176
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10177
- ],
10178
- "proPlugins": [
10179
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10180
- ],
10181
- "requiredtheme": ""
10182
- },
10183
- {
10184
- "id": "testimonial_carosel_style_6",
10185
- "shareId": "testimonial-carousel",
10186
- "title": "Testimonial Carousel Style Six",
10187
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_6.png",
10188
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_6.png",
10189
- "author": "HasThemes",
10190
- "url": "#",
10191
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10192
- "category": "blocks",
10193
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10194
- "isPro": "1",
10195
- "tmpType": "pro",
10196
- "builder": ["elementor"],
10197
- "demoType": "blocks",
10198
- "freePlugins": [
10199
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10200
- ],
10201
- "proPlugins": [
10202
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10203
- ],
10204
- "requiredtheme": ""
10205
- },
10206
- {
10207
- "id": "testimonial_carosel_style_7",
10208
- "shareId": "testimonial-carousel",
10209
- "title": "Testimonial Carousel Style Seven",
10210
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_7.png",
10211
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_7.png",
10212
- "author": "HasThemes",
10213
- "url": "#",
10214
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10215
- "category": "blocks",
10216
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10217
- "isPro": "1",
10218
- "tmpType": "pro",
10219
- "builder": ["elementor"],
10220
- "demoType": "blocks",
10221
- "freePlugins": [
10222
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10223
- ],
10224
- "proPlugins": [
10225
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10226
- ],
10227
- "requiredtheme": ""
10228
- },
10229
- {
10230
- "id": "testimonial_carosel_style_8",
10231
- "shareId": "testimonial-carousel",
10232
- "title": "Testimonial Carousel Style Eight",
10233
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_8.png",
10234
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_8.png",
10235
- "author": "HasThemes",
10236
- "url": "#",
10237
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10238
- "category": "blocks",
10239
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10240
- "isPro": "1",
10241
- "tmpType": "pro",
10242
- "builder": ["elementor"],
10243
- "demoType": "blocks",
10244
- "freePlugins": [
10245
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10246
- ],
10247
- "proPlugins": [
10248
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10249
- ],
10250
- "requiredtheme": ""
10251
- },
10252
- {
10253
- "id": "testimonial_carosel_style_9",
10254
- "shareId": "testimonial-carousel",
10255
- "title": "Testimonial Carousel Style Nine",
10256
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_carosel_style_9.png",
10257
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_carosel_style_9.png",
10258
- "author": "HasThemes",
10259
- "url": "#",
10260
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial/",
10261
- "category": "blocks",
10262
- "tags": ["testimonial carousel","testimonial","carousel","blocks"],
10263
- "isPro": "1",
10264
- "tmpType": "pro",
10265
- "builder": ["elementor"],
10266
- "demoType": "blocks",
10267
- "freePlugins": [
10268
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10269
- ],
10270
- "proPlugins": [
10271
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10272
- ],
10273
- "requiredtheme": ""
10274
- },
10275
- {
10276
- "id": "testimonial_grid_style_1",
10277
- "shareId": "testimonial-grid",
10278
- "title": "Testimonial Grid Style One",
10279
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_1.png",
10280
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_1.png",
10281
- "author": "HasThemes",
10282
- "url": "#",
10283
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10284
- "category": "blocks",
10285
- "tags": ["testimonial grid","testimonial","grid","blocks"],
10286
- "isPro": "1",
10287
- "tmpType": "pro",
10288
- "builder": ["elementor"],
10289
- "demoType": "blocks",
10290
- "freePlugins": [
10291
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10292
- ],
10293
- "proPlugins": [
10294
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10295
- ],
10296
- "requiredtheme": ""
10297
- },
10298
- {
10299
- "id": "testimonial_grid_style_2",
10300
- "shareId": "testimonial-grid",
10301
- "title": "Testimonial Grid Style Two",
10302
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_2.png",
10303
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_2.png",
10304
- "author": "HasThemes",
10305
- "url": "#",
10306
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10307
- "category": "blocks",
10308
- "tags": ["testimonial grid","testimonial","grid","blocks"],
10309
- "isPro": "1",
10310
- "tmpType": "pro",
10311
- "builder": ["elementor"],
10312
- "demoType": "blocks",
10313
- "freePlugins": [
10314
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10315
- ],
10316
- "proPlugins": [
10317
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10318
- ],
10319
- "requiredtheme": ""
10320
- },
10321
- {
10322
- "id": "testimonial_grid_style_3",
10323
- "shareId": "testimonial-grid",
10324
- "title": "Testimonial Grid Style Three",
10325
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_3.png",
10326
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_3.png",
10327
- "author": "HasThemes",
10328
- "url": "#",
10329
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10330
- "category": "blocks",
10331
- "tags": ["testimonial grid","testimonial","grid","blocks"],
10332
- "isPro": "1",
10333
- "tmpType": "pro",
10334
- "builder": ["elementor"],
10335
- "demoType": "blocks",
10336
- "freePlugins": [
10337
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10338
- ],
10339
- "proPlugins": [
10340
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10341
- ],
10342
- "requiredtheme": ""
10343
- },
10344
- {
10345
- "id": "testimonial_grid_style_4",
10346
- "shareId": "testimonial-grid",
10347
- "title": "Testimonial Grid Style Four",
10348
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_4.png",
10349
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_4.png",
10350
- "author": "HasThemes",
10351
- "url": "#",
10352
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10353
- "category": "blocks",
10354
- "tags": ["testimonial grid","testimonial","grid","blocks"],
10355
- "isPro": "1",
10356
- "tmpType": "pro",
10357
- "builder": ["elementor"],
10358
- "demoType": "blocks",
10359
- "freePlugins": [
10360
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10361
- ],
10362
- "proPlugins": [
10363
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10364
- ],
10365
- "requiredtheme": ""
10366
- },
10367
- {
10368
- "id": "testimonial_grid_style_5",
10369
- "shareId": "testimonial-grid",
10370
- "title": "Testimonial Grid Style Five",
10371
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/testimonial_grid_style_5.png",
10372
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/testimonial_grid_style_5.png",
10373
- "author": "HasThemes",
10374
- "url": "#",
10375
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10376
- "category": "blocks",
10377
- "tags": ["testimonial grid","testimonial","grid","blocks"],
10378
- "isPro": "1",
10379
- "tmpType": "pro",
10380
- "builder": ["elementor"],
10381
- "demoType": "blocks",
10382
- "freePlugins": [
10383
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10384
- ],
10385
- "proPlugins": [
10386
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10387
- ],
10388
- "requiredtheme": ""
10389
- },
10390
- {
10391
- "id": "thumbnails_gallery_style_1",
10392
- "shareId": "thumbnails-gallery",
10393
- "title": "Thumbnails Gallery Style One",
10394
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_1.png",
10395
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_1.png",
10396
- "author": "HasThemes",
10397
- "url": "#",
10398
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10399
- "category": "blocks",
10400
- "tags": ["thumbnails gallery","thumbnail","gallery"],
10401
- "isPro": "1",
10402
- "tmpType": "pro",
10403
- "builder": ["elementor"],
10404
- "demoType": "blocks",
10405
- "freePlugins": [
10406
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10407
- ],
10408
- "proPlugins": [
10409
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10410
- ],
10411
- "requiredtheme": ""
10412
- },
10413
- {
10414
- "id": "thumbnails_gallery_style_2",
10415
- "shareId": "thumbnails-gallery",
10416
- "title": "Thumbnails Gallery Style Two",
10417
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_2.png",
10418
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_2.png",
10419
- "author": "HasThemes",
10420
- "url": "#",
10421
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10422
- "category": "blocks",
10423
- "tags": ["thumbnails gallery","thumbnail","gallery"],
10424
- "isPro": "1",
10425
- "tmpType": "pro",
10426
- "builder": ["elementor"],
10427
- "demoType": "blocks",
10428
- "freePlugins": [
10429
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10430
- ],
10431
- "proPlugins": [
10432
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10433
- ],
10434
- "requiredtheme": ""
10435
- },
10436
- {
10437
- "id": "thumbnails_gallery_style_3",
10438
- "shareId": "thumbnails-gallery",
10439
- "title": "Thumbnails Gallery Style Three",
10440
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_3.png",
10441
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_3.png",
10442
- "author": "HasThemes",
10443
- "url": "#",
10444
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10445
- "category": "blocks",
10446
- "tags": ["thumbnails gallery","thumbnail","gallery"],
10447
- "isPro": "1",
10448
- "tmpType": "pro",
10449
- "builder": ["elementor"],
10450
- "demoType": "blocks",
10451
- "freePlugins": [
10452
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10453
- ],
10454
- "proPlugins": [
10455
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10456
- ],
10457
- "requiredtheme": ""
10458
- },
10459
- {
10460
- "id": "thumbnails_gallery_style_4",
10461
- "shareId": "thumbnails-gallery",
10462
- "title": "Thumbnails Gallery Style Four",
10463
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/thumbnails_gallery_style_4.png",
10464
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/thumbnails_gallery_style_4.png",
10465
- "author": "HasThemes",
10466
- "url": "#",
10467
- "demoUrl": "http://demo.wphash.com/htmega/element-testimonial-grid/",
10468
- "category": "blocks",
10469
- "tags": ["thumbnails gallery","thumbnail","gallery"],
10470
- "isPro": "1",
10471
- "tmpType": "pro",
10472
- "builder": ["elementor"],
10473
- "demoType": "blocks",
10474
- "freePlugins": [
10475
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10476
- ],
10477
- "proPlugins": [
10478
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10479
- ],
10480
- "requiredtheme": ""
10481
- },
10482
- {
10483
- "id": "toggle_style_1",
10484
- "shareId": "toggle",
10485
- "title": "Toggle Style One",
10486
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_1.png",
10487
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_1.png",
10488
- "author": "HasThemes",
10489
- "url": "#",
10490
- "demoUrl": "http://demo.wphash.com/htmega/element-toggle/",
10491
- "category": "blocks",
10492
- "tags": ["toggle","blocks"],
10493
- "isPro": "1",
10494
- "tmpType": "pro",
10495
- "builder": ["elementor"],
10496
- "demoType": "blocks",
10497
- "freePlugins": [
10498
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10499
- ],
10500
- "proPlugins": [
10501
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10502
- ],
10503
- "requiredtheme": ""
10504
- },
10505
- {
10506
- "id": "toggle_style_2",
10507
- "shareId": "toggle",
10508
- "title": "Toggle Style Two",
10509
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_2.png",
10510
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_2.png",
10511
- "author": "HasThemes",
10512
- "url": "#",
10513
- "demoUrl": "http://demo.wphash.com/htmega/element-toggle/",
10514
- "category": "blocks",
10515
- "tags": ["toggle","blocks"],
10516
- "isPro": "1",
10517
- "tmpType": "pro",
10518
- "builder": ["elementor"],
10519
- "demoType": "blocks",
10520
- "freePlugins": [
10521
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10522
- ],
10523
- "proPlugins": [
10524
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10525
- ],
10526
- "requiredtheme": ""
10527
- },
10528
- {
10529
- "id": "toggle_style_3",
10530
- "shareId": "toggle",
10531
- "title": "Toggle Style Three",
10532
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/toggle_style_3.png",
10533
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/toggle_style_3.png",
10534
- "author": "HasThemes",
10535
- "url": "#",
10536
- "demoUrl": "http://demo.wphash.com/htmega/element-toggle/",
10537
- "category": "blocks",
10538
- "tags": ["toggle","blocks"],
10539
- "isPro": "1",
10540
- "tmpType": "pro",
10541
- "builder": ["elementor"],
10542
- "demoType": "blocks",
10543
- "freePlugins": [
10544
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10545
- ],
10546
- "proPlugins": [
10547
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10548
- ],
10549
- "requiredtheme": ""
10550
- },
10551
- {
10552
- "id": "tooltip_style_1",
10553
- "shareId": "tooltip",
10554
- "title": "Tooltip",
10555
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/tooltip_style_1.png",
10556
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/tooltip_style_1.png",
10557
- "author": "HasThemes",
10558
- "url": "#",
10559
- "demoUrl": "http://demo.wphash.com/htmega/element-tooltip/",
10560
- "category": "blocks",
10561
- "tags": ["tooltip","blocks"],
10562
- "isPro": "1",
10563
- "tmpType": "pro",
10564
- "builder": ["elementor"],
10565
- "demoType": "blocks",
10566
- "freePlugins": [
10567
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10568
- ],
10569
- "proPlugins": [
10570
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10571
- ],
10572
- "requiredtheme": ""
10573
- },
10574
- {
10575
- "id": "twitter_feed_style_1",
10576
- "shareId": "twitter-feed",
10577
- "title": "Twitter Feed Style One",
10578
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_1.png",
10579
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_1.png",
10580
- "author": "HasThemes",
10581
- "url": "#",
10582
- "demoUrl": "http://demo.wphash.com/htmega/element-twitter-feed/",
10583
- "category": "blocks",
10584
- "tags": ["twitter feed","blocks","feed","twitter"],
10585
- "isPro": "1",
10586
- "tmpType": "pro",
10587
- "builder": ["elementor"],
10588
- "demoType": "blocks",
10589
- "freePlugins": [
10590
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10591
- ],
10592
- "proPlugins": [
10593
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10594
- ],
10595
- "requiredtheme": ""
10596
- },
10597
- {
10598
- "id": "twitter_feed_style_2",
10599
- "shareId": "twitter-feed",
10600
- "title": "Twitter Feed Style Two",
10601
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_2.png",
10602
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_2.png",
10603
- "author": "HasThemes",
10604
- "url": "#",
10605
- "demoUrl": "http://demo.wphash.com/htmega/element-twitter-feed/",
10606
- "category": "blocks",
10607
- "tags": ["twitter feed","blocks","feed","twitter"],
10608
- "isPro": "1",
10609
- "tmpType": "pro",
10610
- "builder": ["elementor"],
10611
- "demoType": "blocks",
10612
- "freePlugins": [
10613
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10614
- ],
10615
- "proPlugins": [
10616
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10617
- ],
10618
- "requiredtheme": ""
10619
- },
10620
- {
10621
- "id": "twitter_feed_style_3",
10622
- "shareId": "twitter-feed",
10623
- "title": "Twitter Feed Style Three",
10624
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_3.png",
10625
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_3.png",
10626
- "author": "HasThemes",
10627
- "url": "#",
10628
- "demoUrl": "http://demo.wphash.com/htmega/element-twitter-feed/",
10629
- "category": "blocks",
10630
- "tags": ["twitter feed","blocks","feed","twitter"],
10631
- "isPro": "1",
10632
- "tmpType": "pro",
10633
- "builder": ["elementor"],
10634
- "demoType": "blocks",
10635
- "freePlugins": [
10636
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10637
- ],
10638
- "proPlugins": [
10639
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10640
- ],
10641
- "requiredtheme": ""
10642
- },
10643
- {
10644
- "id": "twitter_feed_style_4",
10645
- "shareId": "twitter-feed",
10646
- "title": "Twitter Feed Style Four",
10647
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_4.png",
10648
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_4.png",
10649
- "author": "HasThemes",
10650
- "url": "#",
10651
- "demoUrl": "http://demo.wphash.com/htmega/element-twitter-feed/",
10652
- "category": "blocks",
10653
- "tags": ["twitter feed","blocks","feed","twitter"],
10654
- "isPro": "1",
10655
- "tmpType": "pro",
10656
- "builder": ["elementor"],
10657
- "demoType": "blocks",
10658
- "freePlugins": [
10659
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10660
- ],
10661
- "proPlugins": [
10662
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10663
- ],
10664
- "requiredtheme": ""
10665
- },
10666
- {
10667
- "id": "twitter_feed_style_5",
10668
- "shareId": "twitter-feed",
10669
- "title": "Twitter Feed Style Five",
10670
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/twitter_feed_style_5.png",
10671
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/twitter_feed_style_5.png",
10672
- "author": "HasThemes",
10673
- "url": "#",
10674
- "demoUrl": "http://demo.wphash.com/htmega/element-twitter-feed/",
10675
- "category": "blocks",
10676
- "tags": ["twitter feed","blocks","feed","twitter"],
10677
- "isPro": "1",
10678
- "tmpType": "pro",
10679
- "builder": ["elementor"],
10680
- "demoType": "blocks",
10681
- "freePlugins": [
10682
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10683
- ],
10684
- "proPlugins": [
10685
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10686
- ],
10687
- "requiredtheme": ""
10688
- },
10689
- {
10690
- "id": "user_login_form_style_1",
10691
- "shareId": "user-login-form",
10692
- "title": "User Login Form Style One",
10693
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_1.png",
10694
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_1.png",
10695
- "author": "HasThemes",
10696
- "url": "#",
10697
- "demoUrl": "http://demo.wphash.com/htmega/element-user-login/",
10698
- "category": "blocks",
10699
- "tags": ["user login form","login","form","user","blocks"],
10700
- "isPro": "1",
10701
- "tmpType": "pro",
10702
- "builder": ["elementor"],
10703
- "demoType": "blocks",
10704
- "freePlugins": [
10705
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10706
- ],
10707
- "proPlugins": [
10708
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10709
- ],
10710
- "requiredtheme": ""
10711
- },
10712
- {
10713
- "id": "user_login_form_style_2",
10714
- "shareId": "user-login-form",
10715
- "title": "User Login Form Style Two",
10716
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_2.png",
10717
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_2.png",
10718
- "author": "HasThemes",
10719
- "url": "#",
10720
- "demoUrl": "http://demo.wphash.com/htmega/element-user-login/",
10721
- "category": "blocks",
10722
- "tags": ["user login form","login","form","user","blocks"],
10723
- "isPro": "1",
10724
- "tmpType": "pro",
10725
- "builder": ["elementor"],
10726
- "demoType": "blocks",
10727
- "freePlugins": [
10728
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10729
- ],
10730
- "proPlugins": [
10731
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10732
- ],
10733
- "requiredtheme": ""
10734
- },
10735
- {
10736
- "id": "user_login_form_style_3",
10737
- "shareId": "user-login-form",
10738
- "title": "User Login Form Style Three",
10739
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_3.png",
10740
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_3.png",
10741
- "author": "HasThemes",
10742
- "url": "#",
10743
- "demoUrl": "http://demo.wphash.com/htmega/element-user-login/",
10744
- "category": "blocks",
10745
- "tags": ["user login form","login","form","user","blocks"],
10746
- "isPro": "1",
10747
- "tmpType": "pro",
10748
- "builder": ["elementor"],
10749
- "demoType": "blocks",
10750
- "freePlugins": [
10751
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10752
- ],
10753
- "proPlugins": [
10754
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10755
- ],
10756
- "requiredtheme": ""
10757
- },
10758
- {
10759
- "id": "user_login_form_style_4",
10760
- "shareId": "user-login-form",
10761
- "title": "User Login Form Style Four",
10762
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_4.png",
10763
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_4.png",
10764
- "author": "HasThemes",
10765
- "url": "#",
10766
- "demoUrl": "http://demo.wphash.com/htmega/element-user-login/",
10767
- "category": "blocks",
10768
- "tags": ["user login form","login","form","user","blocks"],
10769
- "isPro": "1",
10770
- "tmpType": "pro",
10771
- "builder": ["elementor"],
10772
- "demoType": "blocks",
10773
- "freePlugins": [
10774
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10775
- ],
10776
- "proPlugins": [
10777
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10778
- ],
10779
- "requiredtheme": ""
10780
- },
10781
- {
10782
- "id": "user_login_form_style_5",
10783
- "shareId": "user-login-form",
10784
- "title": "User Login Form Style Five",
10785
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_login_form_style_5.png",
10786
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_login_form_style_5.png",
10787
- "author": "HasThemes",
10788
- "url": "#",
10789
- "demoUrl": "http://demo.wphash.com/htmega/element-user-login/",
10790
- "category": "blocks",
10791
- "tags": ["user login form","login","form","user","blocks"],
10792
- "isPro": "1",
10793
- "tmpType": "pro",
10794
- "builder": ["elementor"],
10795
- "demoType": "blocks",
10796
- "freePlugins": [
10797
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10798
- ],
10799
- "proPlugins": [
10800
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10801
- ],
10802
- "requiredtheme": ""
10803
- },
10804
- {
10805
- "id": "user_register_style_1",
10806
- "shareId": "user-register-form",
10807
- "title": "User Register Form Style One",
10808
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_1.png",
10809
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_1.png",
10810
- "author": "HasThemes",
10811
- "url": "#",
10812
- "demoUrl": "http://demo.wphash.com/htmega/element-user-register/",
10813
- "category": "blocks",
10814
- "tags": ["user register form","register","form","user","blocks"],
10815
- "isPro": "1",
10816
- "tmpType": "pro",
10817
- "builder": ["elementor"],
10818
- "demoType": "blocks",
10819
- "freePlugins": [
10820
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10821
- ],
10822
- "proPlugins": [
10823
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10824
- ],
10825
- "requiredtheme": ""
10826
- },
10827
- {
10828
- "id": "user_register_style_2",
10829
- "shareId": "user-register-form",
10830
- "title": "User Register Form Style Two",
10831
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_2.png",
10832
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_2.png",
10833
- "author": "HasThemes",
10834
- "url": "#",
10835
- "demoUrl": "http://demo.wphash.com/htmega/element-user-register/",
10836
- "category": "blocks",
10837
- "tags": ["user register form","register","form","user","blocks"],
10838
- "isPro": "1",
10839
- "tmpType": "pro",
10840
- "builder": ["elementor"],
10841
- "demoType": "blocks",
10842
- "freePlugins": [
10843
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10844
- ],
10845
- "proPlugins": [
10846
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10847
- ],
10848
- "requiredtheme": ""
10849
- },
10850
- {
10851
- "id": "user_register_style_3",
10852
- "shareId": "user-register-form",
10853
- "title": "User Register Form Style Three",
10854
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_3.png",
10855
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_3.png",
10856
- "author": "HasThemes",
10857
- "url": "#",
10858
- "demoUrl": "http://demo.wphash.com/htmega/element-user-register/",
10859
- "category": "blocks",
10860
- "tags": ["user register form","register","form","user","blocks"],
10861
- "isPro": "1",
10862
- "tmpType": "pro",
10863
- "builder": ["elementor"],
10864
- "demoType": "blocks",
10865
- "freePlugins": [
10866
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10867
- ],
10868
- "proPlugins": [
10869
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10870
- ],
10871
- "requiredtheme": ""
10872
- },
10873
- {
10874
- "id": "user_register_style_4",
10875
- "shareId": "user-register-form",
10876
- "title": "User Register Form Style Four",
10877
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_4.png",
10878
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_4.png",
10879
- "author": "HasThemes",
10880
- "url": "#",
10881
- "demoUrl": "http://demo.wphash.com/htmega/element-user-register/",
10882
- "category": "blocks",
10883
- "tags": ["user register form","register","form","user","blocks"],
10884
- "isPro": "1",
10885
- "tmpType": "pro",
10886
- "builder": ["elementor"],
10887
- "demoType": "blocks",
10888
- "freePlugins": [
10889
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10890
- ],
10891
- "proPlugins": [
10892
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10893
- ],
10894
- "requiredtheme": ""
10895
- },
10896
- {
10897
- "id": "user_register_style_5",
10898
- "shareId": "user-register-form",
10899
- "title": "User Register Form Style Five",
10900
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/user_register_style_5.png",
10901
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/user_register_style_5.png",
10902
- "author": "HasThemes",
10903
- "url": "#",
10904
- "demoUrl": "http://demo.wphash.com/htmega/element-user-register/",
10905
- "category": "blocks",
10906
- "tags": ["user register form","register","form","user","blocks"],
10907
- "isPro": "1",
10908
- "tmpType": "pro",
10909
- "builder": ["elementor"],
10910
- "demoType": "blocks",
10911
- "freePlugins": [
10912
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10913
- ],
10914
- "proPlugins": [
10915
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10916
- ],
10917
- "requiredtheme": ""
10918
- },
10919
- {
10920
- "id": "vertical_timeline_style_1",
10921
- "shareId": "vertical-timeline",
10922
- "title": "Vertical Timeline Style One",
10923
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_1.png",
10924
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_1.png",
10925
- "author": "HasThemes",
10926
- "url": "#",
10927
- "demoUrl": "http://demo.wphash.com/htmega/element-vertical-timeline/",
10928
- "category": "blocks",
10929
- "tags": ["vertical timeline","vertical","timeline","blocks"],
10930
- "isPro": "1",
10931
- "tmpType": "pro",
10932
- "builder": ["elementor"],
10933
- "demoType": "blocks",
10934
- "freePlugins": [
10935
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10936
- ],
10937
- "proPlugins": [
10938
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10939
- ],
10940
- "requiredtheme": ""
10941
- },
10942
- {
10943
- "id": "vertical_timeline_style_2",
10944
- "shareId": "vertical-timeline",
10945
- "title": "Vertical Timeline Style Two",
10946
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_2.png",
10947
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_2.png",
10948
- "author": "HasThemes",
10949
- "url": "#",
10950
- "demoUrl": "http://demo.wphash.com/htmega/element-vertical-timeline/",
10951
- "category": "blocks",
10952
- "tags": ["vertical timeline","vertical","timeline","blocks"],
10953
- "isPro": "1",
10954
- "tmpType": "pro",
10955
- "builder": ["elementor"],
10956
- "demoType": "blocks",
10957
- "freePlugins": [
10958
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10959
- ],
10960
- "proPlugins": [
10961
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10962
- ],
10963
- "requiredtheme": ""
10964
- },
10965
- {
10966
- "id": "vertical_timeline_style_3",
10967
- "shareId": "vertical-timeline",
10968
- "title": "Vertical Timeline Style Three",
10969
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/vertical_timeline_style_3.png",
10970
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/vertical_timeline_style_3.png",
10971
- "author": "HasThemes",
10972
- "url": "#",
10973
- "demoUrl": "http://demo.wphash.com/htmega/element-vertical-timeline/",
10974
- "category": "blocks",
10975
- "tags": ["vertical timeline","vertical","timeline","blocks"],
10976
- "isPro": "1",
10977
- "tmpType": "pro",
10978
- "builder": ["elementor"],
10979
- "demoType": "blocks",
10980
- "freePlugins": [
10981
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
10982
- ],
10983
- "proPlugins": [
10984
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
10985
- ],
10986
- "requiredtheme": ""
10987
- },
10988
- {
10989
- "id": "video_player_style_1",
10990
- "shareId": "video-player",
10991
- "title": "Video Player Style One",
10992
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_1.png",
10993
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_1.png",
10994
- "author": "HasThemes",
10995
- "url": "#",
10996
- "demoUrl": "http://demo.wphash.com/htmega/elementor-video-player/",
10997
- "category": "blocks",
10998
- "tags": ["video player","video","player","blocks"],
10999
- "isPro": "1",
11000
- "tmpType": "pro",
11001
- "builder": ["elementor"],
11002
- "demoType": "blocks",
11003
- "freePlugins": [
11004
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11005
- ],
11006
- "proPlugins": [
11007
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11008
- ],
11009
- "requiredtheme": ""
11010
- },
11011
- {
11012
- "id": "video_player_style_2",
11013
- "shareId": "video-player",
11014
- "title": "Video Player Style Two",
11015
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_2.png",
11016
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_2.png",
11017
- "author": "HasThemes",
11018
- "url": "#",
11019
- "demoUrl": "http://demo.wphash.com/htmega/elementor-video-player/",
11020
- "category": "blocks",
11021
- "tags": ["video player","video","player","blocks"],
11022
- "isPro": "1",
11023
- "tmpType": "pro",
11024
- "builder": ["elementor"],
11025
- "demoType": "blocks",
11026
- "freePlugins": [
11027
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11028
- ],
11029
- "proPlugins": [
11030
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11031
- ],
11032
- "requiredtheme": ""
11033
- },
11034
- {
11035
- "id": "video_player_style_3",
11036
- "shareId": "video-player",
11037
- "title": "Video Player Style Three",
11038
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_3.png",
11039
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_3.png",
11040
- "author": "HasThemes",
11041
- "url": "#",
11042
- "demoUrl": "http://demo.wphash.com/htmega/elementor-video-player/",
11043
- "category": "blocks",
11044
- "tags": ["video player","video","player","blocks"],
11045
- "isPro": "1",
11046
- "tmpType": "pro",
11047
- "builder": ["elementor"],
11048
- "demoType": "blocks",
11049
- "freePlugins": [
11050
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11051
- ],
11052
- "proPlugins": [
11053
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11054
- ],
11055
- "requiredtheme": ""
11056
- },
11057
- {
11058
- "id": "video_player_style_4",
11059
- "shareId": "video-player",
11060
- "title": "Video Player Style Four",
11061
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/video_player_style_4.png",
11062
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/video_player_style_4.png",
11063
- "author": "HasThemes",
11064
- "url": "#",
11065
- "demoUrl": "http://demo.wphash.com/htmega/elementor-video-player/",
11066
- "category": "blocks",
11067
- "tags": ["video player","video","player","blocks"],
11068
- "isPro": "1",
11069
- "tmpType": "pro",
11070
- "builder": ["elementor"],
11071
- "demoType": "blocks",
11072
- "freePlugins": [
11073
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11074
- ],
11075
- "proPlugins": [
11076
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11077
- ],
11078
- "requiredtheme": ""
11079
- },
11080
- {
11081
- "id": "weather_style_1",
11082
- "shareId": "weather",
11083
- "title": "Weather Style One",
11084
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/weather_style_1.png",
11085
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/weather_style_1.png",
11086
- "author": "HasThemes",
11087
- "url": "#",
11088
- "demoUrl": "http://demo.wphash.com/htmega/element-weather/",
11089
- "category": "blocks",
11090
- "tags": ["weather","blocks"],
11091
- "isPro": "1",
11092
- "tmpType": "pro",
11093
- "builder": ["elementor"],
11094
- "demoType": "blocks",
11095
- "freePlugins": [
11096
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11097
- ],
11098
- "proPlugins": [
11099
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11100
- ],
11101
- "requiredtheme": ""
11102
- },
11103
- {
11104
- "id": "woocommerce_add_to_cart_button",
11105
- "shareId": "woocommerce",
11106
- "title": "WooCommerce Add To Cart",
11107
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_add_to_cart_button.png",
11108
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_add_to_cart_button.png",
11109
- "author": "HasThemes",
11110
- "url": "#",
11111
- "demoUrl": "http://demo.wphash.com/htmega/element-woocommerce-add-to-cart/",
11112
- "category": "blocks",
11113
- "tags": ["add to cart","blocks","woocommerce"],
11114
- "isPro": "1",
11115
- "tmpType": "pro",
11116
- "builder": ["elementor"],
11117
- "demoType": "blocks",
11118
- "freePlugins": [
11119
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11120
- ],
11121
- "proPlugins": [
11122
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11123
- ],
11124
- "requiredtheme": ""
11125
- },
11126
- {
11127
- "id": "woocommerce_cart_page",
11128
- "shareId": "woocommerce",
11129
- "title": "WooCommerce Cart Page",
11130
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_cart_page.png",
11131
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_cart_page.png",
11132
- "author": "HasThemes",
11133
- "url": "#",
11134
- "demoUrl": "http://demo.wphash.com/htmega/element-woocommerce-cart-page/",
11135
- "category": "blocks",
11136
- "tags": ["cart page","woocommerce","blocks","page"],
11137
- "isPro": "1",
11138
- "tmpType": "pro",
11139
- "builder": ["elementor"],
11140
- "demoType": "blocks",
11141
- "freePlugins": [
11142
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11143
- ],
11144
- "proPlugins": [
11145
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11146
- ],
11147
- "requiredtheme": ""
11148
- },
11149
- {
11150
- "id": "woocommerce_category",
11151
- "shareId": "woocommerce",
11152
- "title": "WooCommerce Category Page",
11153
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_category.png",
11154
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_category.png",
11155
- "author": "HasThemes",
11156
- "url": "#",
11157
- "demoUrl": "http://demo.wphash.com/htmega/element-woocommerce-category/",
11158
- "category": "blocks",
11159
- "tags": ["category page","category","blocks","woocommerce"],
11160
- "isPro": "1",
11161
- "tmpType": "pro",
11162
- "builder": ["elementor"],
11163
- "demoType": "blocks",
11164
- "freePlugins": [
11165
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11166
- ],
11167
- "proPlugins": [
11168
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11169
- ],
11170
- "requiredtheme": ""
11171
- },
11172
- {
11173
- "id": "woocommerce_checkout_page",
11174
- "shareId": "woocommerce",
11175
- "title": "WooCommerce Checkout Page",
11176
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/woocommerce_checkout_page.png",
11177
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/woocommerce_checkout_page.png",
11178
- "author": "HasThemes",
11179
- "url": "#",
11180
- "demoUrl": "http://demo.wphash.com/htmega/element-checkout-page/",
11181
- "category": "blocks",
11182
- "tags": ["checkout page","checkout","page","blocks","woocommerce"],
11183
- "isPro": "1",
11184
- "tmpType": "pro",
11185
- "builder": ["elementor"],
11186
- "demoType": "blocks",
11187
- "freePlugins": [
11188
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11189
- ],
11190
- "proPlugins": [
11191
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11192
- ],
11193
- "requiredtheme": ""
11194
- },
11195
- {
11196
- "id": "working_process_style_1",
11197
- "shareId": "working-progress",
11198
- "title": "Working Progress Style One",
11199
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_1.png",
11200
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_1.png",
11201
- "author": "HasThemes",
11202
- "url": "#",
11203
- "demoUrl": "http://demo.wphash.com/htmega/element-working-process/",
11204
- "category": "blocks",
11205
- "tags": ["working progress","working","progress","blocks"],
11206
- "isPro": "1",
11207
- "tmpType": "pro",
11208
- "builder": ["elementor"],
11209
- "demoType": "blocks",
11210
- "freePlugins": [
11211
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11212
- ],
11213
- "proPlugins": [
11214
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11215
- ],
11216
- "requiredtheme": ""
11217
- },
11218
- {
11219
- "id": "working_process_style_2",
11220
- "shareId": "working-progress",
11221
- "title": "Working Progress Style Two",
11222
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_2.png",
11223
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_2.png",
11224
- "author": "HasThemes",
11225
- "url": "#",
11226
- "demoUrl": "http://demo.wphash.com/htmega/element-working-process/",
11227
- "category": "blocks",
11228
- "tags": ["working progress","working","progress","blocks"],
11229
- "isPro": "1",
11230
- "tmpType": "pro",
11231
- "builder": ["elementor"],
11232
- "demoType": "blocks",
11233
- "freePlugins": [
11234
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11235
- ],
11236
- "proPlugins": [
11237
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11238
- ],
11239
- "requiredtheme": ""
11240
- },
11241
- {
11242
- "id": "working_process_style_3",
11243
- "shareId": "working-progress",
11244
- "title": "Working Progress Style Three",
11245
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_3.png",
11246
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_3.png",
11247
- "author": "HasThemes",
11248
- "url": "#",
11249
- "demoUrl": "http://demo.wphash.com/htmega/element-working-process/",
11250
- "category": "blocks",
11251
- "tags": ["working progress","working","progress","blocks"],
11252
- "isPro": "1",
11253
- "tmpType": "pro",
11254
- "builder": ["elementor"],
11255
- "demoType": "blocks",
11256
- "freePlugins": [
11257
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11258
- ],
11259
- "proPlugins": [
11260
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11261
- ],
11262
- "requiredtheme": ""
11263
- },
11264
- {
11265
- "id": "working_process_style_4",
11266
- "shareId": "working-progress",
11267
- "title": "Working Progress Style Four",
11268
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/working_process_style_4.png",
11269
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/working_process_style_4.png",
11270
- "author": "HasThemes",
11271
- "url": "#",
11272
- "demoUrl": "http://demo.wphash.com/htmega/element-working-process/",
11273
- "category": "blocks",
11274
- "tags": ["working progress","working","progress","blocks"],
11275
- "isPro": "1",
11276
- "tmpType": "pro",
11277
- "builder": ["elementor"],
11278
- "demoType": "blocks",
11279
- "freePlugins": [
11280
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11281
- ],
11282
- "proPlugins": [
11283
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11284
- ],
11285
- "requiredtheme": ""
11286
- },
11287
- {
11288
- "id": "mega-menu-layout-1",
11289
- "shareId": "mega-menu",
11290
- "title": "Menu Layout One",
11291
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_1.png",
11292
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_1.png",
11293
- "author": "HasThemes",
11294
- "url": "#",
11295
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/",
11296
- "category": "mega menu",
11297
- "tags": ["mega menu","menu"],
11298
- "isPro": "0",
11299
- "tmpType": "free",
11300
- "builder": ["elementor"],
11301
- "demoType": "blocks",
11302
- "freePlugins": [
11303
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11304
- ],
11305
- "proPlugins": [],
11306
- "requiredtheme": ""
11307
- },
11308
- {
11309
- "id": "mega-menu-layout-2",
11310
- "shareId": "mega-menu",
11311
- "title": "Menu Layout Two",
11312
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_2.png",
11313
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_2.png",
11314
- "author": "HasThemes",
11315
- "url": "#",
11316
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/home-two/",
11317
- "category": "mega menu",
11318
- "tags": ["mega menu","menu"],
11319
- "isPro": "0",
11320
- "tmpType": "free",
11321
- "builder": ["elementor"],
11322
- "demoType": "blocks",
11323
- "freePlugins": [
11324
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11325
- ],
11326
- "proPlugins": [],
11327
- "requiredtheme": ""
11328
- },
11329
- {
11330
- "id": "mega-menu-layout-3",
11331
- "shareId": "mega-menu",
11332
- "title": "Menu Layout Three",
11333
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_3.png",
11334
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_3.png",
11335
- "author": "HasThemes",
11336
- "url": "#",
11337
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/home-three/",
11338
- "category": "mega menu",
11339
- "tags": ["mega menu","menu"],
11340
- "isPro": "0",
11341
- "tmpType": "free",
11342
- "builder": ["elementor"],
11343
- "demoType": "blocks",
11344
- "freePlugins": [
11345
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11346
- ],
11347
- "proPlugins": [],
11348
- "requiredtheme": ""
11349
- },
11350
- {
11351
- "id": "mega-menu-layout-4",
11352
- "shareId": "mega-menu",
11353
- "title": "Menu Layout Four",
11354
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_4.png",
11355
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_4.png",
11356
- "author": "HasThemes",
11357
- "url": "#",
11358
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/menu-with-product/",
11359
- "category": "mega menu",
11360
- "tags": ["mega menu","menu"],
11361
- "isPro": "0",
11362
- "tmpType": "free",
11363
- "builder": ["elementor"],
11364
- "demoType": "blocks",
11365
- "freePlugins": [
11366
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11367
- ],
11368
- "proPlugins": [],
11369
- "requiredtheme": ""
11370
- },
11371
- {
11372
- "id": "mega-menu-layout-5",
11373
- "shareId": "mega-menu",
11374
- "title": "Menu Layout Five",
11375
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_5.png",
11376
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_5.png",
11377
- "author": "HasThemes",
11378
- "url": "#",
11379
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/menu-with-map/",
11380
- "category": "mega menu",
11381
- "tags": ["mega menu","menu"],
11382
- "isPro": "0",
11383
- "tmpType": "free",
11384
- "builder": ["elementor"],
11385
- "demoType": "blocks",
11386
- "freePlugins": [
11387
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11388
- ],
11389
- "proPlugins": [],
11390
- "requiredtheme": ""
11391
- },
11392
- {
11393
- "id": "mega-menu-layout-6",
11394
- "shareId": "mega-menu",
11395
- "title": "Menu Layout Six",
11396
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_6.png",
11397
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_6.png",
11398
- "author": "HasThemes",
11399
- "url": "#",
11400
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/home-two/",
11401
- "category": "mega menu",
11402
- "tags": ["mega menu","menu"],
11403
- "isPro": "1",
11404
- "tmpType": "pro",
11405
- "builder": ["elementor"],
11406
- "demoType": "blocks",
11407
- "freePlugins": [
11408
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11409
- ],
11410
- "proPlugins": [
11411
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11412
- ],
11413
- "requiredtheme": ""
11414
- },
11415
- {
11416
- "id": "mega-menu-layout-7",
11417
- "shareId": "mega-menu",
11418
- "title": "Menu Layout Seven",
11419
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_7.png",
11420
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_7.png",
11421
- "author": "HasThemes",
11422
- "url": "#",
11423
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/menu-with-image/",
11424
- "category": "mega menu",
11425
- "tags": ["mega menu","menu"],
11426
- "isPro": "1",
11427
- "tmpType": "pro",
11428
- "builder": ["elementor"],
11429
- "demoType": "blocks",
11430
- "freePlugins": [
11431
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11432
- ],
11433
- "proPlugins": [
11434
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11435
- ],
11436
- "requiredtheme": ""
11437
- },
11438
- {
11439
- "id": "mega-menu-layout-8",
11440
- "shareId": "mega-menu",
11441
- "title": "Menu Layout Eight",
11442
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_8.png",
11443
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_8.png",
11444
- "author": "HasThemes",
11445
- "url": "#",
11446
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/menu-with-post/",
11447
- "category": "mega menu",
11448
- "tags": ["mega menu","menu"],
11449
- "isPro": "1",
11450
- "tmpType": "pro",
11451
- "builder": ["elementor"],
11452
- "demoType": "blocks",
11453
- "freePlugins": [
11454
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11455
- ],
11456
- "proPlugins": [
11457
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11458
- ],
11459
- "requiredtheme": ""
11460
- },
11461
- {
11462
- "id": "mega-menu-layout-9",
11463
- "shareId": "mega-menu",
11464
- "title": "Menu Layout Nine",
11465
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_9.png",
11466
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_9.png",
11467
- "author": "HasThemes",
11468
- "url": "#",
11469
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/menu-with-categories/",
11470
- "category": "mega menu",
11471
- "tags": ["mega menu","menu"],
11472
- "isPro": "1",
11473
- "tmpType": "pro",
11474
- "builder": ["elementor"],
11475
- "demoType": "blocks",
11476
- "freePlugins": [
11477
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11478
- ],
11479
- "proPlugins": [
11480
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11481
- ],
11482
- "requiredtheme": ""
11483
- },
11484
- {
11485
- "id": "mega-menu-layout-10",
11486
- "shareId": "mega-menu",
11487
- "title": "Menu Layout Ten",
11488
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/menu_layout_10.png",
11489
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/menu_layout_10.png",
11490
- "author": "HasThemes",
11491
- "url": "#",
11492
- "demoUrl": "http://demo.shrimpthemes.com/1/megamenu/home-two/",
11493
- "category": "mega menu",
11494
- "tags": ["mega menu","menu"],
11495
- "isPro": "1",
11496
- "tmpType": "pro",
11497
- "builder": ["elementor"],
11498
- "demoType": "blocks",
11499
- "freePlugins": [
11500
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11501
- ],
11502
- "proPlugins": [
11503
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11504
- ],
11505
- "requiredtheme": ""
11506
- },
11507
- {
11508
- "id": "header-1",
11509
- "shareId": "header",
11510
- "title": "Header One",
11511
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-1.png",
11512
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-1.png",
11513
- "author": "HasThemes",
11514
- "url": "#",
11515
- "demoUrl": "#",
11516
- "category": "header",
11517
- "tags": ["header","blocks"],
11518
- "isPro": "0",
11519
- "tmpType": "free",
11520
- "builder": ["elementor"],
11521
- "demoType": "blocks",
11522
- "freePlugins": [
11523
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11524
- ],
11525
- "proPlugins": [],
11526
- "requiredtheme": ""
11527
- },
11528
- {
11529
- "id": "header-2",
11530
- "shareId": "header",
11531
- "title": "Header Two",
11532
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-2.png",
11533
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-2.png",
11534
- "author": "HasThemes",
11535
- "url": "#",
11536
- "demoUrl": "#",
11537
- "category": "header",
11538
- "tags": ["header","blocks"],
11539
- "isPro": "1",
11540
- "tmpType": "pro",
11541
- "builder": ["elementor"],
11542
- "demoType": "blocks",
11543
- "freePlugins": [
11544
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11545
- ],
11546
- "proPlugins": [
11547
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11548
- ],
11549
- "requiredtheme": ""
11550
- },
11551
- {
11552
- "id": "header-3",
11553
- "shareId": "header",
11554
- "title": "Header Three",
11555
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-3.png",
11556
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-3.png",
11557
- "author": "HasThemes",
11558
- "url": "#",
11559
- "demoUrl": "#",
11560
- "category": "header",
11561
- "tags": ["header","blocks"],
11562
- "isPro": "1",
11563
- "tmpType": "pro",
11564
- "builder": ["elementor"],
11565
- "demoType": "blocks",
11566
- "freePlugins": [
11567
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11568
- ],
11569
- "proPlugins": [
11570
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11571
- ],
11572
- "requiredtheme": ""
11573
- },
11574
- {
11575
- "id": "header-4",
11576
- "shareId": "header",
11577
- "title": "Header Four",
11578
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-4.png",
11579
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-4.png",
11580
- "author": "HasThemes",
11581
- "url": "#",
11582
- "demoUrl": "#",
11583
- "category": "header",
11584
- "tags": ["header","blocks"],
11585
- "isPro": "1",
11586
- "tmpType": "pro",
11587
- "builder": ["elementor"],
11588
- "demoType": "blocks",
11589
- "freePlugins": [
11590
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11591
- ],
11592
- "proPlugins": [
11593
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11594
- ],
11595
- "requiredtheme": ""
11596
- },
11597
- {
11598
- "id": "header-5",
11599
- "shareId": "header",
11600
- "title": "Header Five",
11601
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-5.png",
11602
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-5.png",
11603
- "author": "HasThemes",
11604
- "url": "#",
11605
- "demoUrl": "#",
11606
- "category": "header",
11607
- "tags": ["header","blocks"],
11608
- "isPro": "1",
11609
- "tmpType": "pro",
11610
- "builder": ["elementor"],
11611
- "demoType": "blocks",
11612
- "freePlugins": [
11613
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11614
- ],
11615
- "proPlugins": [
11616
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11617
- ],
11618
- "requiredtheme": ""
11619
- },
11620
- {
11621
- "id": "header-6",
11622
- "shareId": "header",
11623
- "title": "Header Six",
11624
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-6.png",
11625
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-6.png",
11626
- "author": "HasThemes",
11627
- "url": "#",
11628
- "demoUrl": "#",
11629
- "category": "header",
11630
- "tags": ["header","blocks"],
11631
- "isPro": "1",
11632
- "tmpType": "pro",
11633
- "builder": ["elementor"],
11634
- "demoType": "blocks",
11635
- "freePlugins": [
11636
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11637
- ],
11638
- "proPlugins": [
11639
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11640
- ],
11641
- "requiredtheme": ""
11642
- },
11643
- {
11644
- "id": "header-7",
11645
- "shareId": "header",
11646
- "title": "Header Seven",
11647
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-7.png",
11648
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-7.png",
11649
- "author": "HasThemes",
11650
- "url": "#",
11651
- "demoUrl": "#",
11652
- "category": "header",
11653
- "tags": ["header","blocks"],
11654
- "isPro": "1",
11655
- "tmpType": "pro",
11656
- "builder": ["elementor"],
11657
- "demoType": "blocks",
11658
- "freePlugins": [
11659
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11660
- ],
11661
- "proPlugins": [
11662
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11663
- ],
11664
- "requiredtheme": ""
11665
- },
11666
- {
11667
- "id": "header-8",
11668
- "shareId": "header",
11669
- "title": "Header Eight",
11670
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-8.png",
11671
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-8.png",
11672
- "author": "HasThemes",
11673
- "url": "#",
11674
- "demoUrl": "#",
11675
- "category": "header",
11676
- "tags": ["header","blocks"],
11677
- "isPro": "1",
11678
- "tmpType": "pro",
11679
- "builder": ["elementor"],
11680
- "demoType": "blocks",
11681
- "freePlugins": [
11682
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11683
- ],
11684
- "proPlugins": [
11685
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11686
- ],
11687
- "requiredtheme": ""
11688
- },
11689
- {
11690
- "id": "header-9",
11691
- "shareId": "header",
11692
- "title": "Header Nine",
11693
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-9.png",
11694
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-9.png",
11695
- "author": "HasThemes",
11696
- "url": "#",
11697
- "demoUrl": "#",
11698
- "category": "header",
11699
- "tags": ["header","blocks"],
11700
- "isPro": "1",
11701
- "tmpType": "pro",
11702
- "builder": ["elementor"],
11703
- "demoType": "blocks",
11704
- "freePlugins": [
11705
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11706
- ],
11707
- "proPlugins": [
11708
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11709
- ],
11710
- "requiredtheme": ""
11711
- },
11712
- {
11713
- "id": "header-10",
11714
- "shareId": "header",
11715
- "title": "Header Ten",
11716
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/header-10.png",
11717
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/header-10.png",
11718
- "author": "HasThemes",
11719
- "url": "#",
11720
- "demoUrl": "#",
11721
- "category": "header",
11722
- "tags": ["header","blocks"],
11723
- "isPro": "1",
11724
- "tmpType": "pro",
11725
- "builder": ["elementor"],
11726
- "demoType": "blocks",
11727
- "freePlugins": [
11728
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11729
- ],
11730
- "proPlugins": [
11731
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11732
- ],
11733
- "requiredtheme": ""
11734
- },
11735
- {
11736
- "id": "footer-1",
11737
- "shareId": "footer",
11738
- "title": "Footer One",
11739
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-1.png",
11740
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-1.png",
11741
- "author": "HasThemes",
11742
- "url": "#",
11743
- "demoUrl": "#",
11744
- "category": "footer",
11745
- "tags": ["footer","blocks"],
11746
- "isPro": "1",
11747
- "tmpType": "pro",
11748
- "builder": ["elementor"],
11749
- "demoType": "blocks",
11750
- "freePlugins": [
11751
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11752
- ],
11753
- "proPlugins": [
11754
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11755
- ],
11756
- "requiredtheme": ""
11757
- },
11758
- {
11759
- "id": "footer-2",
11760
- "shareId": "footer",
11761
- "title": "Footer Two",
11762
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-2.png",
11763
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-2.png",
11764
- "author": "HasThemes",
11765
- "url": "#",
11766
- "demoUrl": "#",
11767
- "category": "footer",
11768
- "tags": ["footer","blocks"],
11769
- "isPro": "1",
11770
- "tmpType": "pro",
11771
- "builder": ["elementor"],
11772
- "demoType": "blocks",
11773
- "freePlugins": [
11774
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11775
- ],
11776
- "proPlugins": [
11777
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11778
- ],
11779
- "requiredtheme": ""
11780
- },
11781
- {
11782
- "id": "footer-3",
11783
- "shareId": "footer",
11784
- "title": "Footer Three",
11785
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-3.png",
11786
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-3.png",
11787
- "author": "HasThemes",
11788
- "url": "#",
11789
- "demoUrl": "#",
11790
- "category": "footer",
11791
- "tags": ["footer","blocks"],
11792
- "isPro": "1",
11793
- "tmpType": "pro",
11794
- "builder": ["elementor"],
11795
- "demoType": "blocks",
11796
- "freePlugins": [
11797
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11798
- ],
11799
- "proPlugins": [
11800
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11801
- ],
11802
- "requiredtheme": ""
11803
- },
11804
- {
11805
- "id": "footer-4",
11806
- "shareId": "footer",
11807
- "title": "Footer Four",
11808
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-4.png",
11809
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-4.png",
11810
- "author": "HasThemes",
11811
- "url": "#",
11812
- "demoUrl": "#",
11813
- "category": "footer",
11814
- "tags": ["footer","blocks"],
11815
- "isPro": "1",
11816
- "tmpType": "pro",
11817
- "builder": ["elementor"],
11818
- "demoType": "blocks",
11819
- "freePlugins": [
11820
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11821
- ],
11822
- "proPlugins": [
11823
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11824
- ],
11825
- "requiredtheme": ""
11826
- },
11827
- {
11828
- "id": "footer-5",
11829
- "shareId": "footer",
11830
- "title": "Footer Five",
11831
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-5.png",
11832
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-5.png",
11833
- "author": "HasThemes",
11834
- "url": "#",
11835
- "demoUrl": "#",
11836
- "category": "footer",
11837
- "tags": ["footer","blocks"],
11838
- "isPro": "1",
11839
- "tmpType": "pro",
11840
- "builder": ["elementor"],
11841
- "demoType": "blocks",
11842
- "freePlugins": [
11843
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11844
- ],
11845
- "proPlugins": [
11846
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11847
- ],
11848
- "requiredtheme": ""
11849
- },
11850
- {
11851
- "id": "footer-6",
11852
- "shareId": "footer",
11853
- "title": "Footer Six",
11854
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-6.png",
11855
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-6.png",
11856
- "author": "HasThemes",
11857
- "url": "#",
11858
- "demoUrl": "#",
11859
- "category": "footer",
11860
- "tags": ["footer","blocks"],
11861
- "isPro": "1",
11862
- "tmpType": "pro",
11863
- "builder": ["elementor"],
11864
- "demoType": "blocks",
11865
- "freePlugins": [
11866
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11867
- ],
11868
- "proPlugins": [
11869
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11870
- ],
11871
- "requiredtheme": ""
11872
- },
11873
- {
11874
- "id": "footer-7",
11875
- "shareId": "footer",
11876
- "title": "Footer Seven",
11877
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-7.png",
11878
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-7.png",
11879
- "author": "HasThemes",
11880
- "url": "#",
11881
- "demoUrl": "#",
11882
- "category": "footer",
11883
- "tags": ["footer","blocks"],
11884
- "isPro": "1",
11885
- "tmpType": "pro",
11886
- "builder": ["elementor"],
11887
- "demoType": "blocks",
11888
- "freePlugins": [
11889
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11890
- ],
11891
- "proPlugins": [
11892
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11893
- ],
11894
- "requiredtheme": ""
11895
- },
11896
- {
11897
- "id": "footer-8",
11898
- "shareId": "footer",
11899
- "title": "Footer Eight",
11900
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-8.png",
11901
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-8.png",
11902
- "author": "HasThemes",
11903
- "url": "#",
11904
- "demoUrl": "#",
11905
- "category": "footer",
11906
- "tags": ["footer","blocks"],
11907
- "isPro": "1",
11908
- "tmpType": "pro",
11909
- "builder": ["elementor"],
11910
- "demoType": "blocks",
11911
- "freePlugins": [
11912
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11913
- ],
11914
- "proPlugins": [
11915
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11916
- ],
11917
- "requiredtheme": ""
11918
- },
11919
- {
11920
- "id": "footer-9",
11921
- "shareId": "footer",
11922
- "title": "Footer Nine",
11923
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-9.png",
11924
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-9.png",
11925
- "author": "HasThemes",
11926
- "url": "#",
11927
- "demoUrl": "#",
11928
- "category": "footer",
11929
- "tags": ["footer","blocks"],
11930
- "isPro": "1",
11931
- "tmpType": "pro",
11932
- "builder": ["elementor"],
11933
- "demoType": "blocks",
11934
- "freePlugins": [
11935
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11936
- ],
11937
- "proPlugins": [
11938
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11939
- ],
11940
- "requiredtheme": ""
11941
- },
11942
- {
11943
- "id": "footer-10",
11944
- "shareId": "footer",
11945
- "title": "Footer Ten",
11946
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/footer-10.png",
11947
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/footer-10.png",
11948
- "author": "HasThemes",
11949
- "url": "#",
11950
- "demoUrl": "#",
11951
- "category": "footer",
11952
- "tags": ["footer","blocks"],
11953
- "isPro": "1",
11954
- "tmpType": "pro",
11955
- "builder": ["elementor"],
11956
- "demoType": "blocks",
11957
- "freePlugins": [
11958
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11959
- ],
11960
- "proPlugins": [
11961
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11962
- ],
11963
- "requiredtheme": ""
11964
- },
11965
- {
11966
- "id": "blog-layout-1",
11967
- "shareId": "blog",
11968
- "title": "Blog Layout One",
11969
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-layout-1.jpg",
11970
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-layout-1.png",
11971
- "author": "HasThemes",
11972
- "url": "#",
11973
- "demoUrl": "#",
11974
- "category": "blog",
11975
- "tags": ["blog","blocks"],
11976
- "isPro": "1",
11977
- "tmpType": "pro",
11978
- "builder": ["elementor"],
11979
- "demoType": "blocks",
11980
- "freePlugins": [
11981
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
11982
- ],
11983
- "proPlugins": [
11984
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
11985
- ],
11986
- "requiredtheme": ""
11987
- },
11988
- {
11989
- "id": "blog-layout-2",
11990
- "shareId": "blog",
11991
- "title": "Blog Layout Two",
11992
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-layout-2.jpg",
11993
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-layout-2.png",
11994
- "author": "HasThemes",
11995
- "url": "#",
11996
- "demoUrl": "http://demo.wphash.com/2/ht-builder/",
11997
- "category": "blog",
11998
- "tags": ["blog","blocks"],
11999
- "isPro": "1",
12000
- "tmpType": "pro",
12001
- "builder": ["elementor"],
12002
- "demoType": "blocks",
12003
- "freePlugins": [
12004
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
12005
- ],
12006
- "proPlugins": [
12007
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
12008
- ],
12009
- "requiredtheme": ""
12010
- },
12011
- {
12012
- "id": "blog-details-1",
12013
- "shareId": "blog",
12014
- "title": "Blog Details One",
12015
- "thumbnail": "https://api.hasthemes.com/api/htmega/v1/layout-img/thumb/blog-details-1.jpg",
12016
- "fullimage": "https://api.hasthemes.com/api/htmega/v1/layout-img/full/blog-details-1.png",
12017
- "author": "HasThemes",
12018
- "url": "#",
12019
- "demoUrl": "http://demo.wphash.com/2/ht-builder/the-top-20-trends-of-the-world/",
12020
- "category": "blog",
12021
- "tags": ["blog","blog page","blocks","blog details"],
12022
- "isPro": "1",
12023
- "tmpType": "pro",
12024
- "builder": ["elementor"],
12025
- "demoType": "blocks",
12026
- "freePlugins": [
12027
- "ht-mega-for-elementor//htmega_addons_elementor.php//HT Mega"
12028
- ],
12029
- "proPlugins": [
12030
- "htmega-pro//htmega_pro.php//HT Mega Pro//hasthemes.com/plugins/ht-mega-pro/"
12031
- ],
12032
- "requiredtheme": ""
12033
- }
12034
-
12035
- ]
12036
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/htmega-widgets.css CHANGED
@@ -6052,6 +6052,8 @@ a.instagram_follow_btn.possition-center span {
6052
  .htmega-instragram ul.htmega-instagram-list {
6053
  margin: 0 -5px;
6054
  overflow: hidden;
 
 
6055
  }
6056
 
6057
  .htmega-instragram ul.htmega-instagram-list li > a {
@@ -10631,7 +10633,7 @@ button.htmega-notify-button {
10631
  position: relative;
10632
  }
10633
 
10634
- .htmega-thumbgallery-for button {
10635
  position: absolute;
10636
  top: 50%;
10637
  left: 30px;
@@ -10651,14 +10653,14 @@ button.htmega-notify-button {
10651
  line-height: 1;
10652
  }
10653
 
10654
- .htmega-thumbgallery-for button:hover {
10655
  background: #0056ff;
10656
  color: #fff;
10657
  }
10658
  .htmega-thumbgallery-nav{
10659
  text-align: center;
10660
  }
10661
- .htmega-thumbgallery-nav button {
10662
  border-radius: 100%;
10663
  display: inline-block;
10664
  height: 50px;
@@ -10673,9 +10675,26 @@ button.htmega-notify-button {
10673
  .htmega-thumbgallery-for .slick-dots,.htmega-thumbgallery-nav .slick-dots {
10674
  bottom: 10px;
10675
  position: absolute;
 
 
 
 
 
 
 
 
 
 
 
10676
  }
10677
  .htmega-thumbgallery-for .slick-dots li button,.htmega-thumbgallery-nav .slick-dots li button{
10678
  background: #ddd;
 
 
 
 
 
 
10679
  }
10680
 
10681
  .htmega-thumbgallery-for .slick-dots li.slick-active button,.htmega-thumbgallery-nav .slick-dots li.slick-active button{
6052
  .htmega-instragram ul.htmega-instagram-list {
6053
  margin: 0 -5px;
6054
  overflow: hidden;
6055
+ display: flex;
6056
+ flex-flow: row wrap;
6057
  }
6058
 
6059
  .htmega-instragram ul.htmega-instagram-list li > a {
10633
  position: relative;
10634
  }
10635
 
10636
+ .htmega-thumbgallery-for button.slick-arrow {
10637
  position: absolute;
10638
  top: 50%;
10639
  left: 30px;
10653
  line-height: 1;
10654
  }
10655
 
10656
+ .htmega-thumbgallery-for button.slick-arrow:hover {
10657
  background: #0056ff;
10658
  color: #fff;
10659
  }
10660
  .htmega-thumbgallery-nav{
10661
  text-align: center;
10662
  }
10663
+ .htmega-thumbgallery-nav button.slick-arrow {
10664
  border-radius: 100%;
10665
  display: inline-block;
10666
  height: 50px;
10675
  .htmega-thumbgallery-for .slick-dots,.htmega-thumbgallery-nav .slick-dots {
10676
  bottom: 10px;
10677
  position: absolute;
10678
+ list-style: none;
10679
+ margin: 0;
10680
+ padding: 0;
10681
+ width: 100%;
10682
+ text-align: center;
10683
+ }
10684
+ .htmega-thumbgallery-nav .slick-arrow + .slick-dots {
10685
+ bottom: 50px;
10686
+ }
10687
+ .htmega-thumbgallery-for .slick-dots li,.htmega-thumbgallery-nav .slick-dots li{
10688
+ display: inline-block;
10689
  }
10690
  .htmega-thumbgallery-for .slick-dots li button,.htmega-thumbgallery-nav .slick-dots li button{
10691
  background: #ddd;
10692
+ text-indent: -99999px;
10693
+ padding: 0;
10694
+ margin-right: 8px;
10695
+ border-radius: 100%;
10696
+ width: 12px;
10697
+ height: 12px;
10698
  }
10699
 
10700
  .htmega-thumbgallery-for .slick-dots li.slick-active button,.htmega-thumbgallery-nav .slick-dots li.slick-active button{
assets/extensions/ht-builder/js/htbuilder.js CHANGED
@@ -7,8 +7,9 @@
7
  itemSelector: '.htbuilder-post-col',
8
  columnWidth: '.htbuilder-post-col'
9
  });
 
10
  // layout Masonry after each image loads
11
- $grid.imagesLoaded().progress( function() {
12
  $grid.masonry('layout');
13
  });
14
 
7
  itemSelector: '.htbuilder-post-col',
8
  columnWidth: '.htbuilder-post-col'
9
  });
10
+
11
  // layout Masonry after each image loads
12
+ $('.htbuilder-post-area').imagesLoaded().progress( function() {
13
  $grid.masonry('layout');
14
  });
15
 
assets/js/htmega-widgets-active.js CHANGED
@@ -630,24 +630,46 @@
630
 
631
  var swiper_elem = $scope.find('.swiper-container').eq(0);
632
  var swiper_opt = swiper_elem.data('settings');
633
- var swiper = new Swiper( swiper_elem, {
634
- direction: swiper_opt.direction,
635
- slidesPerView: swiper_opt.slideitem,
636
- spaceBetween: 0,
637
- freeMode: true,
638
- mousewheel: {
639
- releaseOnEdges:true,
640
- },
641
- speed: swiper_opt.speed,
642
- pagination: {
643
- el: '.swiper-pagination',
644
- clickable: true,
645
- },
646
- navigation: {
647
- nextEl: '.swiper-button-next',
648
- prevEl: '.swiper-button-prev',
649
- },
650
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
651
  if( swiper_opt.mousewheel == false){
652
  swiper.mousewheel.disable();
653
  }
630
 
631
  var swiper_elem = $scope.find('.swiper-container').eq(0);
632
  var swiper_opt = swiper_elem.data('settings');
633
+
634
+ if( HTMEGAF.elementorpro == true ){
635
+ var swiper = new Swiper( swiper_elem, {
636
+ direction: swiper_opt.direction,
637
+ slidesPerView: swiper_opt.slideitem,
638
+ spaceBetween: 0,
639
+ freeMode: true,
640
+ mousewheel: {
641
+ releaseOnEdges:true,
642
+ },
643
+ speed: swiper_opt.speed,
644
+ pagination: {
645
+ el: '.swiper-pagination',
646
+ clickable: true,
647
+ },
648
+ navigation: {
649
+ nextEl: '.swiper-button-next',
650
+ prevEl: '.swiper-button-prev',
651
+ },
652
+ });
653
+ }else{
654
+ var swiper = new Swiper( swiper_elem, {
655
+ direction: swiper_opt.direction,
656
+ slidesPerView: swiper_opt.slideitem,
657
+ spaceBetween: 0,
658
+ mousewheel: {
659
+ releaseOnEdges:true,
660
+ },
661
+ speed: swiper_opt.speed,
662
+ pagination: {
663
+ el: '.swiper-pagination',
664
+ clickable: true,
665
+ },
666
+ navigation: {
667
+ nextEl: '.swiper-button-next',
668
+ prevEl: '.swiper-button-prev',
669
+ },
670
+ });
671
+ }
672
+
673
  if( swiper_opt.mousewheel == false){
674
  swiper.mousewheel.disable();
675
  }
extensions/class.enqueue_scripts.php CHANGED
@@ -72,6 +72,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
72
  HTMEGA_VERSION,
73
  TRUE
74
  );
 
75
  }
76
 
77
  // WC Sales Notification
72
  HTMEGA_VERSION,
73
  TRUE
74
  );
75
+
76
  }
77
 
78
  // WC Sales Notification
htmega_addons_elementor.php CHANGED
@@ -5,15 +5,17 @@
5
  * Plugin URI: http://demo.wphash.com/htmega/
6
  * Author: HasThemes
7
  * Author URI: https://hasthemes.com/
8
- * Version: 1.5.8
9
  * License: GPL2
10
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
  * Text Domain: htmega-addons
12
  * Domain Path: /languages
 
 
13
  */
14
 
15
  if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
16
- define( 'HTMEGA_VERSION', '1.5.8' );
17
  define( 'HTMEGA_ADDONS_PL_ROOT', __FILE__ );
18
  define( 'HTMEGA_ADDONS_PL_URL', plugins_url( '/', HTMEGA_ADDONS_PL_ROOT ) );
19
  define( 'HTMEGA_ADDONS_PL_PATH', plugin_dir_path( HTMEGA_ADDONS_PL_ROOT ) );
5
  * Plugin URI: http://demo.wphash.com/htmega/
6
  * Author: HasThemes
7
  * Author URI: https://hasthemes.com/
8
+ * Version: 1.5.9
9
  * License: GPL2
10
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
  * Text Domain: htmega-addons
12
  * Domain Path: /languages
13
+ * Elementor tested up to: 3.2.3
14
+ * Elementor Pro tested up to: 3.2.2
15
  */
16
 
17
  if( ! defined( 'ABSPATH' ) ) exit(); // Exit if accessed directly
18
+ define( 'HTMEGA_VERSION', '1.5.9' );
19
  define( 'HTMEGA_ADDONS_PL_ROOT', __FILE__ );
20
  define( 'HTMEGA_ADDONS_PL_URL', plugins_url( '/', HTMEGA_ADDONS_PL_ROOT ) );
21
  define( 'HTMEGA_ADDONS_PL_PATH', plugin_dir_path( HTMEGA_ADDONS_PL_ROOT ) );
includes/class.assests.php CHANGED
@@ -320,7 +320,15 @@ if ( !class_exists( 'HTMega_Elementor_Addons_Assests' ) ) {
320
  $scripts = $this->get_scripts();
321
  $styles = $this->get_styles();
322
 
323
- // wp_deregister_script( 'swiper' );
 
 
 
 
 
 
 
 
324
 
325
  // Register Scripts
326
  foreach ( $scripts as $handle => $script ) {
@@ -334,7 +342,10 @@ if ( !class_exists( 'HTMega_Elementor_Addons_Assests' ) ) {
334
  wp_register_style( $handle, $style['src'], $deps, $style['version'] );
335
  }
336
 
337
- //Localize Scripts
 
 
 
338
  $current_user = wp_get_current_user();
339
  $localize_data = [
340
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
@@ -343,7 +354,7 @@ if ( !class_exists( 'HTMega_Elementor_Addons_Assests' ) ) {
343
  'version' => HTMEGA_VERSION,
344
  'pluginURL' => plugin_dir_url( __FILE__ ),
345
  'alldata' => !empty( HTMega_Addons_Elementor::$template_info['templates'] ) ? HTMega_Addons_Elementor::$template_info['templates'] : array(),
346
- 'prolink' => isset( HTMega_Addons_Elementor::$template_info['pro_link'][0]['url'] ) ? HTMega_Addons_Elementor::$template_info['pro_link'][0]['url'] : '#',
347
 
348
  'prolabel' => esc_html__( 'Pro', 'htmega-addons' ),
349
  'loadingimg' => HTMEGA_ADDONS_PL_URL . 'admin/assets/images/loading.gif',
320
  $scripts = $this->get_scripts();
321
  $styles = $this->get_styles();
322
 
323
+ $localize_data_frontend = [];
324
+
325
+ if( is_plugin_active('elementor-pro/elementor-pro.php') ){
326
+ $localize_data_frontend['elementorpro'] = true;
327
+ }else{
328
+ wp_deregister_script( 'swiper' );
329
+ $localize_data_frontend['elementorpro'] = false;
330
+ }
331
+
332
 
333
  // Register Scripts
334
  foreach ( $scripts as $handle => $script ) {
342
  wp_register_style( $handle, $style['src'], $deps, $style['version'] );
343
  }
344
 
345
+ // Localize Scripts for frontend
346
+ wp_localize_script( 'htmega-widgets-scripts', 'HTMEGAF', $localize_data_frontend );
347
+
348
+ // Localize Scripts for template manager
349
  $current_user = wp_get_current_user();
350
  $localize_data = [
351
  'ajaxurl' => admin_url( 'admin-ajax.php' ),
354
  'version' => HTMEGA_VERSION,
355
  'pluginURL' => plugin_dir_url( __FILE__ ),
356
  'alldata' => !empty( HTMega_Addons_Elementor::$template_info['templates'] ) ? HTMega_Addons_Elementor::$template_info['templates'] : array(),
357
+ 'prolink' => isset( HTMega_Addons_Elementor::$template_info['pro_link'] ) ? HTMega_Addons_Elementor::$template_info['pro_link'] : '#',
358
 
359
  'prolabel' => esc_html__( 'Pro', 'htmega-addons' ),
360
  'loadingimg' => HTMEGA_ADDONS_PL_URL . 'admin/assets/images/loading.gif',
includes/widgets/htmega_instagram.php CHANGED
@@ -712,10 +712,6 @@ class HTMega_Elementor_Widget_Instagram extends Widget_Base {
712
  [
713
  'label' => __( 'Overlay Color', 'htmega-addons' ),
714
  'type' => Controls_Manager::COLOR,
715
- 'scheme' => [
716
- 'type' => Scheme_Color::get_type(),
717
- 'value' => Scheme_Color::COLOR_1,
718
- ],
719
  'default' => 'rgba(0, 0, 0, 0.7)',
720
  'selectors' => [
721
  '{{WRAPPER}} .htmega-instragram ul.htmega-instagram-list li .instagram-clip::before' => 'background-color: {{VALUE}};',
@@ -771,10 +767,6 @@ class HTMega_Elementor_Widget_Instagram extends Widget_Base {
771
  [
772
  'label' => __( 'Color', 'htmega-addons' ),
773
  'type' => Controls_Manager::COLOR,
774
- 'scheme' => [
775
- 'type' => Scheme_Color::get_type(),
776
- 'value' => Scheme_Color::COLOR_1,
777
- ],
778
  'default' => '#ffffff',
779
  'selectors' => [
780
  '{{WRAPPER}} .htmega-instragram ul.htmega-instagram-list .zoom_icon i' => 'color: {{VALUE}};',
@@ -928,10 +920,6 @@ class HTMega_Elementor_Widget_Instagram extends Widget_Base {
928
  [
929
  'label' => __( 'Color', 'htmega-addons' ),
930
  'type' => Controls_Manager::COLOR,
931
- 'scheme' => [
932
- 'type' => Scheme_Color::get_type(),
933
- 'value' => Scheme_Color::COLOR_1,
934
- ],
935
  'default' => '#ffffff',
936
  'selectors' => [
937
  '{{WRAPPER}} .htmega-instragram .slick-arrow' => 'color: {{VALUE}};',
@@ -1078,10 +1066,6 @@ class HTMega_Elementor_Widget_Instagram extends Widget_Base {
1078
  [
1079
  'label' => __( 'Color', 'htmega-addons' ),
1080
  'type' => Controls_Manager::COLOR,
1081
- 'scheme' => [
1082
- 'type' => Scheme_Color::get_type(),
1083
- 'value' => Scheme_Color::COLOR_1,
1084
- ],
1085
  'default' => '#ffffff',
1086
  'selectors' => [
1087
  '{{WRAPPER}} .htmega-instragram .slick-arrow:hover' => 'color: {{VALUE}};',
@@ -1315,14 +1299,15 @@ class HTMega_Elementor_Widget_Instagram extends Widget_Base {
1315
  if ( ! is_wp_error( $instagram_data ) ) {
1316
 
1317
  if ( isset( $instagram_data['error']['message'] ) ) {
1318
- echo '<p>'.esc_html__('Incorrect access token specified.','ht-magazine').'</p>';
1319
  }
1320
 
1321
  $items = array();
1322
  foreach ( $instagram_data['data'] as $data_item ) {
 
1323
  $item['id'] = $data_item['id'];
1324
  $item['media_type'] = $data_item['media_type'];
1325
- $item['src'] = $data_item['media_url'];
1326
  $item['username'] = $data_item['username'];
1327
  $item['link'] = $data_item['permalink'];
1328
  $item['timestamp'] = $data_item['timestamp'];
@@ -1405,7 +1390,6 @@ class HTMega_Elementor_Widget_Instagram extends Widget_Base {
1405
  </a>
1406
  </div>
1407
  <?php endif;?>
1408
-
1409
  </div>
1410
  </div>
1411
  <?php endif;?>
712
  [
713
  'label' => __( 'Overlay Color', 'htmega-addons' ),
714
  'type' => Controls_Manager::COLOR,
 
 
 
 
715
  'default' => 'rgba(0, 0, 0, 0.7)',
716
  'selectors' => [
717
  '{{WRAPPER}} .htmega-instragram ul.htmega-instagram-list li .instagram-clip::before' => 'background-color: {{VALUE}};',
767
  [
768
  'label' => __( 'Color', 'htmega-addons' ),
769
  'type' => Controls_Manager::COLOR,
 
 
 
 
770
  'default' => '#ffffff',
771
  'selectors' => [
772
  '{{WRAPPER}} .htmega-instragram ul.htmega-instagram-list .zoom_icon i' => 'color: {{VALUE}};',
920
  [
921
  'label' => __( 'Color', 'htmega-addons' ),
922
  'type' => Controls_Manager::COLOR,
 
 
 
 
923
  'default' => '#ffffff',
924
  'selectors' => [
925
  '{{WRAPPER}} .htmega-instragram .slick-arrow' => 'color: {{VALUE}};',
1066
  [
1067
  'label' => __( 'Color', 'htmega-addons' ),
1068
  'type' => Controls_Manager::COLOR,
 
 
 
 
1069
  'default' => '#ffffff',
1070
  'selectors' => [
1071
  '{{WRAPPER}} .htmega-instragram .slick-arrow:hover' => 'color: {{VALUE}};',
1299
  if ( ! is_wp_error( $instagram_data ) ) {
1300
 
1301
  if ( isset( $instagram_data['error']['message'] ) ) {
1302
+ echo '<p>'.esc_html__('Incorrect access token specified.','htmega-addons').'</p>';
1303
  }
1304
 
1305
  $items = array();
1306
  foreach ( $instagram_data['data'] as $data_item ) {
1307
+ $image_src = ( $data_item['media_type'] == 'VIDEO' ) ? $data_item['thumbnail_url'] : $data_item['media_url'];
1308
  $item['id'] = $data_item['id'];
1309
  $item['media_type'] = $data_item['media_type'];
1310
+ $item['src'] = $image_src;
1311
  $item['username'] = $data_item['username'];
1312
  $item['link'] = $data_item['permalink'];
1313
  $item['timestamp'] = $data_item['timestamp'];
1390
  </a>
1391
  </div>
1392
  <?php endif;?>
 
1393
  </div>
1394
  </div>
1395
  <?php endif;?>
includes/widgets/htmega_slider_thumb_gallery.php CHANGED
@@ -27,6 +27,7 @@ class HTMega_Elementor_Widget_Slider_Thumb_Gallery extends Widget_Base {
27
 
28
  public function get_style_depends() {
29
  return [
 
30
  'slick',
31
  ];
32
  }
27
 
28
  public function get_style_depends() {
29
  return [
30
+ 'elementor-icons-shared-0-css','elementor-icons-fa-brands','elementor-icons-fa-regular','elementor-icons-fa-solid',
31
  'slick',
32
  ];
33
  }
includes/widgets/htmega_template_selector.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Elementor;
3
+
4
+ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
5
+
6
+ class HTMega_Elementor_Widget_Template_Selector extends Widget_Base {
7
+
8
+ public function get_name() {
9
+ return 'htmega-template-selector';
10
+ }
11
+
12
+ public function get_title() {
13
+ return __( 'Template Selector', 'htmega-addons' );
14
+ }
15
+
16
+ public function get_icon() {
17
+ return 'htmega-icon eicon-select';
18
+ }
19
+
20
+ public function get_categories() {
21
+ return [ 'htmega-addons' ];
22
+ }
23
+
24
+ public function get_script_depends() {
25
+ return [
26
+ 'htmega-widgets-scripts',
27
+ ];
28
+ }
29
+
30
+ protected function _register_controls() {
31
+
32
+ // Content
33
+ $this->start_controls_section(
34
+ 'template_selector_content',
35
+ [
36
+ 'label' => esc_html__( 'Template', 'htmega-addons' ),
37
+ ]
38
+ );
39
+
40
+ $this->add_control(
41
+ 'template_id',
42
+ [
43
+ 'label' => __( 'Select Your template', 'htmega-addons' ),
44
+ 'type' => Controls_Manager::SELECT,
45
+ 'default' => '0',
46
+ 'options' => htmega_elementor_template(),
47
+ ]
48
+ );
49
+
50
+
51
+ $this->end_controls_section();
52
+
53
+ }
54
+
55
+ protected function render( $instance = [] ) {
56
+ $settings = $this->get_settings_for_display();
57
+
58
+ if ( !empty( $settings['template_id'] )) {
59
+ echo Plugin::instance()->frontend->get_builder_content_for_display( $settings['template_id'] );
60
+ }else{
61
+ echo '<div class="htmega_error">'.esc_html__( 'No selected template', 'htmega-addons' ).'<div/>';
62
+ }
63
+
64
+ }
65
+
66
+
67
+
68
+ }
69
+
70
+
includes/widgets_control.php CHANGED
@@ -96,6 +96,7 @@ class HTMega_Widgets_Control{
96
  $videoplayer = htmega_get_option( 'videoplayer', 'htmega_element_tabs', 'on' );
97
  $workingprocess = htmega_get_option( 'workingprocess', 'htmega_element_tabs', 'on' );
98
  $errorcontent = htmega_get_option( 'errorcontent', 'htmega_element_tabs', 'on' );
 
99
 
100
  // Third Party
101
  $weather = htmega_get_option( 'weather', 'htmega_thirdparty_element_tabs', 'on' );
@@ -431,6 +432,11 @@ class HTMega_Widgets_Control{
431
  require_once HTMEGA_ADDONS_PL_PATH.'includes/widgets/htmega_cuctom_event.php';
432
  $widgets_manager->register_widget_type( new \Elementor\HTMega_Elementor_Widget_Custom_Event() );
433
  }
 
 
 
 
 
434
 
435
  // Thirdparty plugins Addons
436
  if ( is_plugin_active('awesome-weather/awesome-weather.php') && file_exists( HTMEGA_ADDONS_PL_PATH.'includes/widgets/htmega_weather.php' ) && $weather === 'on' ) {
96
  $videoplayer = htmega_get_option( 'videoplayer', 'htmega_element_tabs', 'on' );
97
  $workingprocess = htmega_get_option( 'workingprocess', 'htmega_element_tabs', 'on' );
98
  $errorcontent = htmega_get_option( 'errorcontent', 'htmega_element_tabs', 'on' );
99
+ $template_selector = htmega_get_option( 'template_selector', 'htmega_element_tabs', 'on' );
100
 
101
  // Third Party
102
  $weather = htmega_get_option( 'weather', 'htmega_thirdparty_element_tabs', 'on' );
432
  require_once HTMEGA_ADDONS_PL_PATH.'includes/widgets/htmega_cuctom_event.php';
433
  $widgets_manager->register_widget_type( new \Elementor\HTMega_Elementor_Widget_Custom_Event() );
434
  }
435
+
436
+ if ( file_exists( HTMEGA_ADDONS_PL_PATH.'includes/widgets/htmega_template_selector.php' ) && $template_selector === 'on' ) {
437
+ require_once HTMEGA_ADDONS_PL_PATH.'includes/widgets/htmega_template_selector.php';
438
+ $widgets_manager->register_widget_type( new \Elementor\HTMega_Elementor_Widget_Template_Selector() );
439
+ }
440
 
441
  // Thirdparty plugins Addons
442
  if ( is_plugin_active('awesome-weather/awesome-weather.php') && file_exists( HTMEGA_ADDONS_PL_PATH.'includes/widgets/htmega_weather.php' ) && $weather === 'on' ) {
readme.txt CHANGED
@@ -170,6 +170,16 @@ Feel free to [Contact us](https://htplugins.com/contact-us/)
170
  Visit [HasThemes](https://hasthemes.com/) for more details about HTML, Shopify and WordPress products and services.
171
 
172
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
173
  = Version: 1.5.8 - Date: 2021-04-25 =
174
  * Compatible with Elementor latest version
175
 
170
  Visit [HasThemes](https://hasthemes.com/) for more details about HTML, Shopify and WordPress products and services.
171
 
172
  == Changelog ==
173
+
174
+ = Version: 1.5.9 - Date: 2021-05-26 =
175
+ * Solved Header already sent issue.
176
+ * Solved Instagram video showing issue.
177
+ * Solved Instagram column issue.
178
+ * Solved console error issue.
179
+ * Solved template data import issue.
180
+ * Solved Thumbnails slider pagination style issue.
181
+ * Updated template library API
182
+
183
  = Version: 1.5.8 - Date: 2021-04-25 =
184
  * Compatible with Elementor latest version
185