-
Notifications
You must be signed in to change notification settings - Fork 5
/
digi.sql
1725 lines (1672 loc) · 541 KB
/
digi.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Oct 11, 2022 at 06:06 AM
-- Server version: 10.4.21-MariaDB
-- PHP Version: 8.0.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `digi`
--
-- --------------------------------------------------------
--
-- Table structure for table `cart`
--
CREATE TABLE `cart` (
`id` int(11) NOT NULL,
`user_id` varchar(999) NOT NULL,
`product_id` int(11) NOT NULL,
`added_on` datetime NOT NULL DEFAULT current_timestamp(),
`price` int(11) NOT NULL,
`user_type` tinyint(4) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `files`
--
CREATE TABLE `files` (
`id` int(11) NOT NULL,
`name` varchar(999) NOT NULL DEFAULT '',
`version` text NOT NULL DEFAULT '',
`url` varchar(999) NOT NULL,
`parent_id` int(11) NOT NULL,
`publish_date` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `files`
--
INSERT INTO `files` (`id`, `name`, `version`, `url`, `parent_id`, `publish_date`) VALUES
(3, 'Yoast SEO', '16.2', 'https://www.dropbox.com/s/cyu9lb3t7om4s4j/yoast-seo-premium-plugin-with-extensions-Unzip-First-v16.2.zip?dl=1', 34, '2021-12-12 11:13:18'),
(4, '', '', 'https://www.mediafire.com/file/ajl1im13s3iavox/themeforest-16596434-boombox-viral-buzz-wordpress-theme-v2.6.9.zip/file', 58, '2021-12-12 11:13:18'),
(5, '', '', 'https://www.dropbox.com/s/4lg42sh4p4735qq/dokan-pro-v3.2.4.zip?dl=1', 87, '2021-12-12 11:13:18'),
(6, '', '', 'https://www.dropbox.com/s/w9q09zio5fm392y/themeforest-19659555-jannah-wordpress-news-magazine-theme-v5.4.0.zip?dl=1', 133, '2021-12-12 11:13:18'),
(7, '', '', 'https://www.dropbox.com/s/5116m020ix6c5w4/themeforest-5484319-flatsome-multipurpose-responsive-woocommerce-theme-v3.13.2.zip?dl=1', 172, '2021-12-12 11:13:18'),
(8, '', '', 'https://www.dropbox.com/s/wnn8tvde918aurv/themeforest-7646339-rehub-directory-multi-vendor-shop-coupon-affiliate-theme-v14.6.5.zip?dl=1', 240, '2021-12-12 11:13:18'),
(9, '', '', 'https://www.dropbox.com/s/01xnr06ugpmkpai/adforest-classified-wordpress-theme-v4.4.7.zip?dl=1', 249, '2021-12-12 11:13:18'),
(10, '', '', 'https://www.dropbox.com/s/qzzvqey75mvyutn/themeforest-22788499-olympus-responsive-community-social-network-wordpress-theme-v3.20.zip?dl=1', 401, '2021-12-12 11:13:18'),
(11, '', '', 'https://downloads.wordpress.org/plugin/facebook-messenger-customer-chat.2.0.zip', 427, '2021-12-12 11:13:18'),
(12, '', '', 'https://www.dropbox.com/s/cnw5o6yopk18l60/Divi-4.9.0.zip?dl=1', 439, '2021-12-12 11:13:18'),
(13, '', '', 'https://www.mediafire.com/file/svoic1euh9migap/divi-builder-4.8.1.zip/file', 445, '2021-12-12 11:13:18'),
(14, '', '', 'https://www.dropbox.com/s/eo044m48be7hdzr/dooplay.2.5.1.zip?dl=1\";}s:36:\"514a941f-e896-49d4-8699-700c6ab6b5fe\";a:3:{s:2:\"id\";s:36:\"514a941f-e896-49d4-8699-700c6ab6b5fe\";s:4:\"name\";s:11:\"License', 599, '2021-12-12 11:13:18'),
(15, '', '', 'https://www.dropbox.com/s/uonmql0pkr4ze6j/themeforest-22560532-spotlight-featurepacked-news-magazine-wordpress-theme%3Dv1.6.3%20%282%29.zip?dl=1', 620, '2021-12-12 11:13:18'),
(16, '', '', 'https://www.dropbox.com/s/07wnnxr3k2aus4s/elementor-package_v3.4.4.zip?dl=1', 1781, '2021-12-12 11:13:18'),
(17, '', '', 'https://www.dropbox.com/s/7z9g76oj4ukf36b/themeforest-21273233-martfury-woocommerce-marketplace-wordpress-theme-v2.5.8.zip?dl=1', 1853, '2021-12-12 11:13:18'),
(18, '', '', 'https://www.mediafire.com/file/2kid3653hhhiojh/themeforest-12162415-kinetika-fullscreen-photography-theme-v6.5.1.zip/file', 1860, '2021-12-12 11:13:18'),
(19, '', '', 'https://www.dropbox.com/s/8iipb74dx9wgll2/traveler-traveltourbooking-wordpress-theme-v2.9.3.zip?dl=1', 1923, '2021-12-12 11:13:18'),
(20, '', '', 'https://www.dropbox.com/s/2nv6yf9979okq9g/themeforest-16430770-cheerup-blog-magazine-wordpress-blog-theme-v7.5.1.zip?dl=1', 2203, '2021-12-12 11:13:18'),
(21, '', '', 'https://www.dropbox.com/s/9stattu07z37rp7/affiliate-egg%20v10.01.zip?dl=1', 2238, '2021-12-12 11:13:18'),
(22, '', '', 'https://www.mediafire.com/file/a3nrcnqtsc5iafy/woocommerce-memberships1200.zip/file', 2530, '2021-12-12 11:13:18'),
(23, '', '', 'https://www.mediafire.com/file/7e7llkyj7fb7cf8/Themeforest-24815869-leitmotif-movie-and-film-studio-theme.zip/file', 2956, '2021-12-12 11:13:18'),
(24, '', '', 'https://www.dropbox.com/s/vaewpqikgp5i4pw/vehica-automotive-dealership-wordpress-theme-v1.0.50.zip?dl=1', 2960, '2021-12-12 11:13:18'),
(25, '', '', 'https://www.dropbox.com/s/d3h6x41mdg9paqv/slider-revolution-responsive-wordpress-plugin654n.zip?dl=1', 2968, '2021-12-12 11:13:18'),
(26, '', '', 'https://www.dropbox.com/s/pbayi2x7x3flh4v/fs-posterV4.4.0.zip?dl=1', 2977, '2021-12-12 11:13:18'),
(27, '', '', 'https://www.dropbox.com/s/vbkw5qy9nu5nzca/Themeforest-26350912-Aabbe%20Digital%20Marketplace%20theme.zip?dl=1', 2989, '2021-12-12 11:13:18'),
(28, '', '', 'https://www.dropbox.com/s/nrkwkt2qqth0xtr/themeforest-28596379-wheelco-transportation-wordpress-theme.zip?dl=1', 3011, '2021-12-12 11:13:18'),
(29, '', '', 'https://www.dropbox.com/s/jq9baot1ot9wcxj/xerochat-complete-messenger-marketing-software-for-facebook-Extended-612.zip?dl=1', 3081, '2021-12-12 11:13:18'),
(30, '', '', 'https://www.dropbox.com/s/lel0yb4saadnypy/codecanyon-oxoo-android-live-tv-movie-portal-app-with-powerful-admin-panel-v1.3.3.zip?dl=1', 3084, '2021-12-12 11:13:18'),
(31, '', '', 'https://www.dropbox.com/s/2leejgo191aosyz/codecanyon-25446813-flix-app-movies-tv-series-live-tv-channels-tv-cast%20v2.2.zip?dl=1', 3092, '2021-12-12 11:13:18'),
(32, '', '', 'https://www.dropbox.com/s/pc73wjfw94mftq0/Appyn-themespixel_2.0.4.zip?dl=1', 3812, '2021-12-12 11:13:18'),
(33, '', '', 'https://www.dropbox.com/s/hixouqt0ngjqqjj/themeforest-bluerack-hosting-wordpress-theme-wordpress-theme.zip?dl=1', 4854, '2021-12-12 11:13:18'),
(34, '', '', 'https://www.dropbox.com/s/ndi3yg47082f93x/travelo-traveltour-booking-wordpress-theme%20v4.2.2.zip?dl=1', 2259, '2021-12-12 11:13:18'),
(35, '', '', 'https://www.dropbox.com/s/bxr0cizt4t2o08j/wpSafelink_v4.3.5%20%28unzip%20me%20first%29.zip?dl=1', 607, '2021-12-12 11:13:18'),
(36, '', '', 'https://gpldog.com/wp-content/uploads/2021/02/Logo.png', 5302, '2021-12-12 11:13:18'),
(37, '', '', 'https://www.dropbox.com/s/4gwz9il25xpkfwx/themeforest-book-your-travel-online-booking-wordpress-theme8.16.4.zip?dl=1', 1916, '2021-12-12 11:13:18'),
(38, '', '', 'https://www.dropbox.com/s/r5876ydp4utqz44/Tmexco-%20Easy%20Digital%20download.zip?dl=1', 2997, '2021-12-12 11:13:18'),
(39, '', '', 'https://www.dropbox.com/s/cyezkfvogr2lm11/consulting-business-finance-wordpress-theme5.2.5.zip?dl=1', 1845, '2021-12-12 11:13:18'),
(40, '', '', 'https://www.dropbox.com/s/4z320i7fri36y3x/themeforest-education-wordpress-theme-education-wp-4.3.5.zip?dl=1', 233, '2021-12-12 11:13:18'),
(41, '', '', 'https://www.dropbox.com/s/8hng2juz0nj2k4v/speaker-page-to-speech-plugin-for-wordpress-wordpress-plugin310.zip?dl=1', 2980, '2021-12-12 11:13:18'),
(42, '', '', 'https://www.dropbox.com/s/boh6uoecw5xxovc/breek-minimal-masonry-theme-for-wordpress361.zip?dl=1', 2550, '2021-12-12 11:13:18'),
(43, '', '', 'https://www.dropbox.com/s/0hl3m6fq6ok575l/seo-by-rank-math-pro-2.3.0-package.zip?dl=1', 1869, '2021-12-12 11:13:18'),
(44, '', '', 'https://www.dropbox.com/s/iotui6szxvmbddi/digits-wordpress-mobile-number-signup-and-login-wordpress-plugin7601n.zip?dl=1', 2011, '2021-12-12 11:13:18'),
(45, '', '', 'https://www.dropbox.com/s/9jh1nf2sjtm816m/frontend-p1blishing-pro3110.zip?dl=1', 1193, '2021-12-12 11:13:18'),
(46, '', '', 'https://www.dropbox.com/s/yt6vw7l89giefe8/betheme-premium-wordpress-theme-v22.rar?dl=1', 1059, '2021-12-12 11:13:18'),
(47, '', '', 'https://www.dropbox.com/s/7tifwucp0vs8vgn/Leuke_1.0.zip?dl=1', 4674, '2021-12-12 11:13:18'),
(48, '', '', 'https://www.dropbox.com/s/asnexdz1rq5qd7m/woosheets_5.3.zip?dl=1', 4882, '2021-12-12 11:13:18'),
(49, '', '', 'https://www.dropbox.com/s/jmi5a9cm60hwv6r/yith-point-of-sale-for-woocommerce-premium.1.0.14.zip?dl=1', 5379, '2021-12-12 11:13:18'),
(50, '', '', 'https://www.dropbox.com/s/pa04ukgpp42sqmw/newspaper%20by%20TagDiv%20v10.3.9.1.zip?dl=1', 120, '2021-12-12 11:13:18'),
(51, '', '', 'https://www.dropbox.com/s/vv4n9f90n4ht4fx/WP_Rocket_v3.8.7_Final.zip?dl=1', 72, '2021-12-12 11:13:18'),
(52, '', '', 'https://www.dropbox.com/s/6zzk20mucvs6xj3/themeforest-hostico-wordpress-whmcs-hosting-theme-54.0.0.zip?dl=1', 1769, '2021-12-12 11:13:18'),
(53, '', '', 'https://www.dropbox.com/s/uxr5ukmfjqm9983/groci-organic-food-and-grocery-market-wordpress-theme%20v2.1.1.zip?dl=1', 2393, '2021-12-12 11:13:18'),
(54, '', '', 'https://www.dropbox.com/s/r78wtlzawqwdbro/WHMCS%20v8.1.3.zip?dl=1', 2965, '2021-12-12 11:13:18'),
(55, '', '', 'https://www.dropbox.com/s/oga5z81b6x40de0/wp-automatic-v3.52.0.zip?dl=1', 1099, '2021-12-12 11:13:18'),
(56, '', '', 'https://www.dropbox.com/s/nvqzgh6q13bxsru/gp-premium-2.0.0.zip?dl=1', 4866, '2021-12-12 11:13:18'),
(57, '', '', 'https://www.dropbox.com/s/s9rwoztm6e96yjg/elements-woocommerce-pdf-invoices-packing-slips-7NYXWSB-UhXF1TUp-04-28.zip?dl=1', 5520, '2021-12-12 11:13:18'),
(58, '', '', 'https://www.dropbox.com/s/iw3setfuyc1nbfu/ewebot-seo-and-marketing-agency-wordpress-theme-v2.4.9.zip?dl=1', 1755, '2021-12-12 11:13:18'),
(59, '', '', 'https://www.dropbox.com/s/0k9y5ia3ewmehdg/codecanyon-7360954-galaxy-funder-woocommerce-crowdfunding-system11.6.zip?dl=1', 5117, '2021-12-12 11:13:18'),
(60, '', '', 'https://www.dropbox.com/s/nvkljns8nmzt0rd/themeforest-food-bakery-restaurant-bakery-responsive-wordpress-theme-2.1.zip?dl=1', 5370, '2021-12-12 11:13:18'),
(61, '', '', 'https://www.dropbox.com/s/ol281fkbowr57wz/cartflows-pro-unzip-first169.zip?dl=1', 5365, '2021-12-12 11:13:18'),
(62, '', '', 'https://www.dropbox.com/s/74qusd6dq272inn/yith-woocommerce-frequently-bought-together-premium-1.8.6.zip?dl=1', 5295, '2021-12-12 11:13:18'),
(63, '', '', 'https://www.dropbox.com/s/tq59k9ahr9a6nxa/yith-advanced-refund-system-for-woocommerce.premium126.zip?dl=1', 5289, '2021-12-12 11:13:18'),
(64, '', '', 'https://www.dropbox.com/s/anrbdgbrn1kyki2/Astra_Pro_v3_3_2.zip?dl=1', 4864, '2021-12-12 11:13:18'),
(65, '', '', 'https://www.dropbox.com/s/4v0ngbr5r9mdzbt/seo-wp-online-marketing-seo-social-media-agency22.zip?dl=1', 2994, '2021-12-12 11:13:18'),
(66, '', '', 'https://www.dropbox.com/s/9jw9onwwfsmmd3q/woocommerce-multi-currency-v2.1.18.zip?dl=1', 2973, '2021-12-12 11:13:18'),
(67, '', '', 'https://www.dropbox.com/s/f6zx2z97q50rz4d/ultimate-membership-pro-wordpress-plugin95.zip?dl=1', 2971, '2021-12-12 11:13:18'),
(68, '', '', 'https://www.dropbox.com/s/01m47buxgg293fb/yith-woocommerce-membership-premium-146.zip?dl=1', 5241, '2021-12-12 11:13:18'),
(69, '', '', 'https://www.dropbox.com/s/wysmr5yc9ky9okc/yith-automatic-role-changer-for-woocommerce-premium-1.6.6.zip?dl=1', 5237, '2021-12-12 11:13:18'),
(70, '', '', 'https://www.dropbox.com/s/itjnedmbd4kgv34/themeforest-21137053-careerfy-job-board-wordpress-theme-v5.5.0.zip?dl=1', 159, '2021-12-12 11:13:18'),
(71, '', '', 'https://www.dropbox.com/s/0d0huy2xln0fr8o/wc-frontend-manager-delivery%20v1.2.4.zip?dl=1', 5125, '2021-12-12 11:13:18'),
(72, '', '', 'https://www.dropbox.com/s/ise87pk1ugl8nzc/wc-frontend-manager-ultimate.zip?dl=1', 5631, '2021-12-12 11:13:18'),
(73, '', '', 'https://www.dropbox.com/s/m56jrnwi93gw3br/snax184.zip?dl=1', 285, '2021-12-12 11:13:18'),
(74, '', '', 'https://www.dropbox.com/s/ca5xgl3bwfp2enr/themeforest-14493994-bimber-viral-buzz-wordpress-theme.zip?dl=1', 4159, '2021-12-12 11:13:18'),
(75, '', '', 'https://www.dropbox.com/s/15wdh0s5mum35h4/codecanyon-bookly-booking-plugin-responsive-appointment-booking-and-scheduling-19.5.zip?dl=1', 316, '2021-12-12 11:13:18'),
(76, '', '', 'https://www.dropbox.com/s/pef8eyh490sdkvb/WooCommerce%20PDF%20Invoice%20by%20Codecanyon%20v3.2.1.zip?dl=1', 5712, '2021-12-12 11:13:18'),
(77, '', '', 'https://www.dropbox.com/s/5toji0xajrrob8i/themeforest-consultio-consulting-business-wordpress-1.2.5.zip?dl=1', 5422, '2021-12-12 11:13:18'),
(78, '', '', 'https://www.dropbox.com/s/egbu5xklkod7rcw/themeforest-consultix-business-multipurpose-wordpress-theme-3.0.1.zip?dl=1', 5420, '2021-12-12 11:13:18'),
(79, '', '', 'https://www.dropbox.com/s/5i10g3ihg3z3fwj/industrial-manufacturing-wordpress-theme161.zip?dl=1', 5574, '2021-12-12 11:13:18'),
(80, '', '', 'https://www.dropbox.com/s/a60s1p5jo2sff7u/exertio-freelance-marketplace-wordpress-theme-%20v1.0.3.zip?dl=1', 5403, '2021-12-12 11:13:18'),
(81, '', '', 'https://www.dropbox.com/s/ixppnbvcz2090j8/polylang-pro.zip?dl=1', 5376, '2021-12-12 11:13:18'),
(82, '', '', 'https://www.dropbox.com/s/ea3zpz2oqcy2id2/themeforest-maxhost-web-hosting-whmcs-and-corporate-business-wordpress-theme-with-woocommerce-7.4.2.zip?dl=1', 5151, '2021-12-12 11:13:18'),
(83, '', '', 'https://www.dropbox.com/s/lgc8doclgq1w86o/WPML-multilingual-cms4.4.10.zip?dl=1', 5344, '2021-12-12 11:13:18'),
(84, '', '', 'https://www.dropbox.com/s/92wjd88gwys7ssb/oceanwp-2.0.2-package.zip?dl=1', 5030, '2021-12-12 11:13:18'),
(85, '', '', 'https://www.dropbox.com/s/exb0jhd4o2asae3/yith-woocommerce-gift-cards-premium3.3.3.zip?dl=1', 5002, '2021-12-12 11:13:18'),
(86, '', '', 'https://www.dropbox.com/s/2r5rm44nboo53il/woocommerce-checkout-add-ons2.5.3.zip?dl=1', 4999, '2021-12-12 11:13:18'),
(87, '', '', 'https://www.dropbox.com/s/qxd2olv8qumcp5p/Chat%20-%20Support%20Board%20-%20WordPress%20Chat%20Plugin_v3.2.3.zip?dl=1', 4885, '2021-12-12 11:13:18'),
(88, '', '', 'https://www.dropbox.com/s/n2l2afk0qf0z0u9/WP%20AMP%20%E2%80%94%20Accelerated%20Mobile%20Pages%20for%20WordPress%20and%20WooCommerce_9.3.19.zip?dl=1', 4879, '2021-12-12 11:13:18'),
(89, '', '', 'https://www.dropbox.com/s/sau5nl3l2fw7cby/ekommart-all-in-one-ecommerce-wordpress-theme350.zip?dl=1', 4877, '2021-12-12 11:13:18'),
(90, '', '', 'https://www.dropbox.com/s/62sfw1caomf72ve/jobcareer-job-board-responsive-wordpress-theme38.zip?dl=1', 3032, '2021-12-12 11:13:18'),
(91, '', '', 'https://www.dropbox.com/s/uu5jw475988o7ue/basil-recipes-wordpress-theme203.zip?dl=1', 3029, '2021-12-12 11:13:18'),
(92, '', '', 'https://www.dropbox.com/s/44a04jguddfiyoq/mts_magxp.zip?dl=1', 3168, '2021-12-12 11:13:18'),
(93, '', '', 'https://www.dropbox.com/s/9heglftcpjofdl8/Transcargo%20-%20Transportation%20WordPress%20Theme%20for%20Logistics-v2.6.zip?dl=1', 3006, '2021-12-12 11:13:18'),
(94, '', '', 'https://www.dropbox.com/s/lc8bl5qk60dv7of/themeforest-cargo-transport-logistics-babiator-theme.zip?dl=1', 3004, '2021-12-12 11:13:18'),
(95, '', '', 'https://www.dropbox.com/s/4w0ntbaiuwbelvo/themeforest-wikilogy-wiki-blog-wordpress-theme121.zip?dl=1', 3002, '2021-12-12 11:13:18'),
(96, '', '', 'https://www.dropbox.com/s/kbbajn19rh7clo5/typer-amazing-blog-and-multi-author-publishing-theme197.zip?dl=1', 2999, '2021-12-12 11:13:18'),
(97, '', '', 'https://www.dropbox.com/s/vktg3scekqccln5/themeforest-17160546-restored-marketplace-marketplace-wordpress-theme14.zip?dl=1', 2992, '2021-12-12 11:13:18'),
(98, '', '', 'https://www.dropbox.com/s/v4y1wyxgcnch4eq/themeplace-marketplace-wordpress-theme114.zip?dl=1', 2986, '2021-12-12 11:13:18'),
(99, '', '', 'https://www.dropbox.com/s/m1n12fxxoazm5gb/codecanyon-lumise-product-designer-woocommerce-wordpress-1.9.8.zip?dl=1', 2975, '2021-12-12 11:13:18'),
(100, '', '', 'https://www.dropbox.com/s/e8pf9fa1ra3quak/thegem-creative-multipurpose-highperformance-wordpress-theme4.7.0.zip?dl=1', 2951, '2021-12-12 11:13:18'),
(101, '', '', 'https://www.dropbox.com/s/o0ilggbjp6l7spm/ninja-tables-pro4.1.5.zip?dl=1', 2943, '2021-12-12 11:13:18'),
(102, '', '', 'https://www.dropbox.com/s/7rp8t4mcnn7mvpt/mayosis-digital-marketplace-main-v3.1.rar?dl=1', 2926, '2021-12-12 11:13:18'),
(103, '', '', 'https://www.dropbox.com/s/wsywqzz4bbiemcq/themeforest-gillion-multi-concept-blogmagazine-shop-wordpress-amp-theme-4.0.1.zip?dl=1', 2890, '2021-12-12 11:13:18'),
(104, '', '', 'https://www.dropbox.com/s/dwrf1uitgzxrt0f/cinerama-a-theme-for-movie-studios-and-filmmakers191.zip?dl=1', 2875, '2021-12-12 11:13:18'),
(105, '', '', 'https://www.dropbox.com/s/ph6zrbypi540swb/hunted-editorial-magazine-blog-theme801.zip?dl=1', 2548, '2021-12-12 11:13:18'),
(106, '', '', 'https://www.dropbox.com/s/dtpbiepn4rxwojy/zoa-minimalist-elementor-woocommerce-theme252.zip?dl=1', 2546, '2021-12-12 11:13:18'),
(107, '', '', 'https://www.dropbox.com/s/fn4kksssxt2e5nf/themeforest-eikra-education-wordpress-theme-4.2.1.zip?dl=1', 2535, '2021-12-12 11:13:18'),
(108, '', '', 'https://www.dropbox.com/s/0w6veecjzaqsvoe/APRIL%E2%80%93%20Wonderful%20Fashion%20WooCommerce%20WordPress%20Theme%20v4.8.zip?dl=1', 2484, '2021-12-12 11:13:18'),
(109, '', '', 'https://www.dropbox.com/s/xcoza4bssjgv0jv/themeforest-goodlife-responsive-magazine-theme-4.5.0.zip?dl=1', 2552, '2021-12-12 11:13:18'),
(110, '', '', 'https://www.dropbox.com/s/0zea2eq4wqrcz3r/CBKit-%20Course%20%26%20LMS%20WordPress%20Theme-v3.2.3.zip?dl=1', 2266, '2021-12-12 11:13:18'),
(111, '', '', 'https://www.dropbox.com/s/hhpwu4rgf7u4o3k/nokri-job-board-wordpress-theme143.zip?dl=1', 2378, '2021-12-12 11:13:18'),
(112, '', '', 'https://www.dropbox.com/s/8pnqreoxh908f29/MyHome-%20Real%20Estate%20WordPress%20Theme-v3.1.56.zip?dl=1', 2381, '2021-12-12 11:13:18'),
(113, '', '', 'https://www.dropbox.com/s/fxjmk3ief6ii6bq/H-Code-%20Responsive%20%26%20Multipurpose%20WordPress%20Theme-v2.0.7.zip?dl=1', 2383, '2021-12-12 11:13:18'),
(114, '', '', 'https://www.dropbox.com/s/7zcxfz0a7xps5wu/themeforest-woodstock-electronics-responsive-woocommerce-theme-v2.6.zip?dl=1', 2387, '2021-12-12 11:13:18'),
(115, '', '', 'https://www.dropbox.com/s/qtnoe7ntfj3nf19/Adifier%E2%80%93%20Classified%20Ads%20WordPress%20Theme-v3.8.6.zip?dl=1', 2389, '2021-12-12 11:13:18'),
(116, '', '', 'https://www.dropbox.com/s/40sra8h89qkpdmq/themeforest-hostinza-isometric-domain-web-hosting-wordpress-theme-v2.6.zip?dl=1', 2391, '2021-12-12 11:13:18'),
(117, '', '', 'https://www.dropbox.com/s/vd7w2s5id7r0h59/Noor%E2%80%93%20Multipurpose%20%26%20Fully%20Customizable%20Creative%20Theme-v5.6.31.rar?dl=1', 2396, '2021-12-12 11:13:18'),
(118, '', '', 'https://www.dropbox.com/s/ng4d7322a1nwiag/themeforest-sober-woocommerce-wordpress-theme-v3.1.1.zip?dl=1', 2445, '2021-12-12 11:13:18'),
(119, '', '', 'https://www.dropbox.com/s/nj55ine0g1yhh4d/jupiter-multipurpose-responsive-theme680-v1.2.3.zip?dl=1', 2949, '2021-12-12 11:13:18'),
(120, '', '', 'https://www.dropbox.com/s/ctpykmi8bzo8wts/themeforest-xstore-responsive-woocommerce-theme-v7.2.7.rar?dl=1', 2947, '2021-12-12 11:13:18'),
(121, '', '', 'https://www.dropbox.com/s/s6p2uzr0clgvf1s/armania-elementor-woocommerce-theme-v1.1.8.zip?dl=1', 2447, '2021-12-12 11:13:18'),
(122, '', '', 'https://www.dropbox.com/s/somimm23qmj6zro/striz-fashion-ecommerce-wordpress-theme-v1.8.0.zip?dl=1', 2449, '2021-12-12 11:13:18'),
(123, '', '', 'https://www.dropbox.com/s/qxbb1wq0sdjnkje/techmarket-multidemo-electronics-store-woocommerce-theme148.zip?dl=1', 2452, '2021-12-12 11:13:18'),
(124, '', '', 'https://www.dropbox.com/s/ejod6kf5j3ufi3b/themeforest-emallshop-responsive-woocommerce-wordpress-theme-2.2.20.zip?dl=1', 2467, '2021-12-12 11:13:18'),
(125, '', '', 'https://www.dropbox.com/s/1cz4xcnumg9xqb3/themeforest-15791151-merchandiser-ecommerce-wordpress-theme-for-woocommerce1.10.1.zip?dl=1', 2469, '2021-12-12 11:13:18'),
(126, '', '', 'https://www.dropbox.com/s/upwdgpv0rniddbk/themeforest-the-hanger-modern-classic-woocommerce-theme-1.6.9.zip?dl=1', 2471, '2021-12-12 11:13:18'),
(127, '', '', 'https://www.dropbox.com/s/s5mpks4jw79prsw/themeforest-organik-an-appealing-organic-store-farm-bakery-woocomerce-theme-2.9.4.zip?dl=1', 2473, '2021-12-12 11:13:18'),
(128, '', '', 'https://www.dropbox.com/s/hjgo4a2rui987lz/themeforest-stockie-multipurpose-creative-woocommerce-theme-1.2.0.zip?dl=1', 2476, '2021-12-12 11:13:18'),
(129, '', '', 'https://www.dropbox.com/s/3trwpeza3gjqy2u/themeforest-digitalworld-multipurpose-wordpress-theme-1.2.8.zip?dl=1', 2478, '2021-12-12 11:13:18'),
(130, '', '', 'https://www.dropbox.com/s/s1bqb17bi72eryw/B2BKing%20-%20The%20Ultimate%20WooCommerce%20B2B%20%26%20Wholesale%20Plugin-v3.3.5.zip?dl=1', 5791, '2021-12-12 11:13:18'),
(131, '', '', 'https://www.dropbox.com/s/34io3kicxbig3b0/kleo-pro-community-focused-multipurpose-buddypress-theme-v4.9.170.zip?dl=0', 2264, '2021-12-12 11:13:18'),
(132, '', '', 'https://www.dropbox.com/s/pznsgkaw97wygq5/Reality%20%20Estate%20Multipurpose%20WordPress%20Theme-%20v2.5.9.rar?dl=1', 2257, '2021-12-12 11:13:18'),
(133, '', '', 'https://www.dropbox.com/s/7j7o6o71aymjz7w/themeforest-907-responsive-multipurpose-wordpress-theme-v5.1.2.zip?dl=1', 2255, '2021-12-12 11:13:18'),
(134, '', '', 'https://www.dropbox.com/s/uvadu43rwx9uhi1/squaretype-modern-blog-wordpress-theme213.zip?dl=1', 2168, '2021-12-12 11:13:18'),
(135, '', '', 'https://www.dropbox.com/s/wfcvk8duoq8q46b/themeforest-startnext-it-business-startups-wordpress-theme-4.4.0.zip?dl=1', 2251, '2021-12-12 11:13:18'),
(136, '', '', 'https://www.dropbox.com/s/o5676nvgk7fbp4q/ask-me-responsive-questions-answers-wordpress645.zip?dl=1', 2209, '2021-12-12 11:13:18'),
(137, '', '', 'https://www.dropbox.com/s/xh8ozyz97sm2twy/themeforest-networker-tech-news-wordpress-theme-with-dark-mode-v1.0.5.zip?dl=1', 2207, '2021-12-12 11:13:18'),
(138, '', '', 'https://www.dropbox.com/s/ht72ona454s50bs/themeforest-unero-minimalist-ajax-woocommerce-wordpress-theme192.zip?dl=1', 2205, '2021-12-12 11:13:18'),
(139, '', '', 'https://www.dropbox.com/s/y92jvjzdqisto3q/themeforest-listingpro-multipurpose-directory-theme264n.zip?dl=1', 2161, '2021-12-12 11:13:18'),
(140, '', '', 'https://www.dropbox.com/s/185ezuenz9ygkhe/Findgo%E2%80%93%20Directory%20%26%20Listing%20WordPress%20Theme-v1.3.35.zip?dl=1', 2146, '2021-12-12 11:13:18'),
(141, '', '', 'https://www.dropbox.com/s/mlsuhtwwq4rk7uh/themeforest-ciyashop-wordpress-theme-4.1.0.zip?dl=1', 2141, '2021-12-12 11:13:18'),
(142, '', '', 'https://www.dropbox.com/s/cpytclyhl3xki5w/User%20History-%20Easy%20Digital%20Downloads-v1.6.1.zip?dl=1', 2109, '2021-12-12 11:13:18'),
(143, '', '', 'https://www.dropbox.com/s/ozxn6b7qsd3owc7/Checkout%20Fields%20Manager-%20Easy%20Digital%20Downloads-v2.1.8.zip?dl=1', 2107, '2021-12-12 11:13:18'),
(144, '', '', 'https://www.dropbox.com/s/crgizyfp9x606k0/codecanyon-woocommerce-search-box-wordpress-plugin2.2.0.zip?dl=1', 2102, '2021-12-12 11:13:18'),
(145, '', '', 'https://www.dropbox.com/s/0mrthuqyvpyi2o5/woocommerce-smart-coupons4.17.5.zip?dl=1', 2033, '2021-12-12 11:13:18'),
(146, '', '', 'https://www.dropbox.com/s/8hzoou4hbajjwzi/themeforest-18894141-ostrya-computer-repair-service-wordpress-theme-v1.2.7.zip?dl=1', 1920, '2021-12-12 11:13:18'),
(147, '', '', 'https://www.dropbox.com/s/lzzcw7vf6g2chq3/woocommerce-bookings%20v11.5.38.zip?dl=1', 6160, '2021-12-12 11:13:18'),
(148, '', '', 'https://www.dropbox.com/s/vbbfo1h1ip4uvdl/Playposter-by-themeson-v3.3.zip?dl=1', 3807, '2021-12-12 11:13:18'),
(149, '', '', 'https://www.dropbox.com/s/0vcrhqcqxj5o2t1/ThemeForest-15542355-upvote-social-bookmarking-wordpress-theme.zip?dl=1', 6191, '2021-12-12 11:13:18'),
(150, '', '', 'https://www.dropbox.com/s/0efhq5tf8o1as2s/Sarkari%20Result%20Template.xml?dl=1', 6203, '2021-12-12 11:13:18'),
(151, '', '', 'https://www.dropbox.com/s/p9homqztlg7zot7/ranna-food-recipe-wordpress-theme%20v2.1.1.zip?dl=1', 3023, '2021-12-12 11:13:18'),
(152, '', '', 'https://www.dropbox.com/s/t8dzevem2leaav2/themeforest-libero-a-theme-for-lawyers-and-law-firms-2.2.zip?dl=1', 6035, '2021-12-12 11:13:18'),
(153, '', '', 'https://www.dropbox.com/s/3pe5c0nk8goqoug/Happy%20addon%20v2.23.0.rar?dl=1', 6533, '2021-12-12 11:13:18'),
(154, '', '', 'https://www.dropbox.com/s/pc4es5qoksld9tv/themeforest-masterclass-lms-education-wordpress-theme%20V1.3.0.zip?dl=1', 6598, '2021-12-12 11:13:18'),
(155, '', '', 'https://www.dropbox.com/s/a2g32o1gt67ql5c/elements-zox-news-professional-wordpress-news-magazine-PALH2FE-GJJGWQs5-03-20-v3.9.0.zip?dl=1', 109, '2021-12-12 11:13:18'),
(156, '', '', 'https://www.dropbox.com/s/vj6ezrco0w3er85/Reco_v4_6_2_licensed.zip?dl=1', 6689, '2021-12-12 11:13:18'),
(157, '', '', 'https://www.dropbox.com/s/g0y4drdh1weh249/codecanyon-sabai-directory-plugin-for-wordpress-v1.4.10.zip?dl=1', 6586, '2021-12-12 11:13:18'),
(158, '', '', 'https://www.dropbox.com/s/4esl598dckqxtj7/kadence-theme-pro-v0.9.13.zip?dl=1', 6567, '2021-12-12 11:13:18'),
(159, '', '', 'https://www.dropbox.com/s/f6oyfrqu9q7c4dn/kadence-blocks-pro-v1.4.33.zip?dl=1', 6741, '2021-12-12 11:13:18'),
(160, '', '', 'https://www.dropbox.com/s/vc770q6tlhqcs7d/themeforest-betube-video-wordpress-theme-v3.0.4.zip?dl=1', 6786, '2021-12-12 11:13:18'),
(161, '', '', 'https://www.dropbox.com/s/9ov29yensbi3472/OVOO%20-%20Live%20TV%20%26%20Movie%20Portal%20CMS%20with%20Membership%20System.v3.2.8.zip?dl=1', 5298, '2021-12-12 11:13:18'),
(162, '', '', 'https://www.dropbox.com/s/1wzizn2s1ljat2b/essentials-multipurpose-wordpress-theme203.zip?dl=1', 6840, '2021-12-12 11:13:18'),
(163, '', '', 'https://www.mediafire.com/file/hpia7phael5g7y5/greenmart_v3.0.11_UNZIP_FIRST.zip/file', 411, '2021-12-12 11:13:18'),
(164, '', '', 'https://mega.nz/file/RHhz3BCb#eYO_fEUeK5SxF7hmGcPyjHJHmxbpAylYcZyMCGV1dZ0', 5627, '2021-12-12 11:13:18'),
(165, '', '', 'https://www.dropbox.com/s/6r2dbpfd2fyrv6d/woocommerce-notification1422.zip?dl=1', 94, '2021-12-12 11:13:18'),
(166, '', '', 'https://www.dropbox.com/s/9y0anosdjxyfk1a/ecademy-education-lms-wordpress-theme%20v4.9.1.zip?dl=1', 1893, '2021-12-12 11:13:18'),
(167, '', '', 'https://www.dropbox.com/s/o0r4vxdkmyw4fg3/themeforest-tokoo-electronics-store-woocommerce-theme-for-affiliates-dropship-and-multi-vendor...zip?dl=1', 2028, '2021-12-12 11:13:18'),
(168, '', '', 'https://www.dropbox.com/s/ik2gmunrqklc8rl/elements-jack-well-Y7V3CJ8-2021-04-17.zip?dl=1', 6033, '2021-12-12 11:13:18'),
(169, '', '', 'https://www.dropbox.com/s/icdf438dn3m7mk8/avada-best-website-builder-for-wordpress-woocommerce-v7.4.1.rar?dl=1', 167, '2021-12-12 11:13:18'),
(170, '', '', 'https://www.dropbox.com/s/brrid411aij8ltx/themeforest-pennew-multiconcept-newsmagazine-amp-wordpress-theme-6.6.1.zip?dl', 372, '2021-12-12 11:13:18'),
(171, '', '', 'https://www.dropbox.com/s/gj2udrze6h5mzix/js_composer6.7.0n.zip?dl=1', 279, '2021-12-12 11:13:18'),
(172, '', '', 'https://www.dropbox.com/s/58v84s7lqymje7i/electro-electronics-store-woocommerce-theme303.zip?dl=1', 65, '2021-12-12 11:13:18'),
(173, '', '', 'https://www.dropbox.com/s/4gnnuwuwnslnw7l/amymovie-movie-cinema-wordpress-theme352.zip?dl=1', 406, '2021-12-12 11:13:18'),
(174, '', '', 'https://www.dropbox.com/s/6eo748o75hxbe66/main-listeo.1.6.24n.rar?dl=1', 1773, '2021-12-12 11:13:18'),
(175, '', '', 'https://www.dropbox.com/s/pcmum4qemb59ibo/themeforest-vinkmag-multiconcept-news-magazine-wordpress-theme%20v3.2.zip?dl=1', 7663, '2021-12-12 11:13:18'),
(176, '', '', 'https://www.dropbox.com/s/zcjrm44wgdvgfdp/themeforest-bosmarket-flexible-multivendor-woocommerce-wordpress-theme-wordpress-theme.zip?dl=1', 1995, '2021-12-12 11:13:18'),
(177, '', '', 'https://www.dropbox.com/s/ndgne7acztvg19i/urna-aio-responsive-multipurpose-woocommerce-theme234.zip?dl=1', 397, '2021-12-12 11:13:18'),
(178, '', '', 'https://www.dropbox.com/s/w4hqrs4jcypvwu0/cartsy.zip?dl=1', 6925, '2021-12-12 11:13:18'),
(179, '', '', 'https://www.dropbox.com/s/ubz5vb6hamhix8p/Kolyoum-Newspaper%20Magazine%20News%20BuddyPress%20AMP.zip?dl=1', 2155, '2021-12-12 11:13:18'),
(180, '', '', 'https://www.dropbox.com/s/tw8q3aq51ihqs1z/themeforest-click-mag-viral-wordpress-news-magazineblog-theme-3.2.0.zip?dl=1', 721, '2021-12-12 11:13:18'),
(181, '', '', 'https://www.dropbox.com/s/cf8b3sq4hw3h5sv/cargopro-V5.3.0.zip?dl=1', 7963, '2021-12-12 11:13:18'),
(182, '', '', 'https://www.dropbox.com/s/wg35p9jc8r57y5u/Moddroid%20wordpress%20theme%20.zip?dl=1', 8005, '2021-12-12 11:13:18'),
(183, '', '', 'https://www.dropbox.com/s/mfoehynzof79zl9/wpforms-basic-v1.6.8.1.zip?dl=1', 459, '2021-12-12 11:13:18'),
(184, '', '', 'https://www.dropbox.com/s/uv5itzjcpzjxwec/Shella-4.8.0.zip?dl=1', 7988, '2021-12-12 11:13:18'),
(185, '', '', 'https://www.dropbox.com/s/94uehew921t009y/Academy-learning-management-system.zip?dl=1', 8051, '2021-12-12 11:13:18'),
(186, '', '', 'https://www.dropbox.com/s/w17wsi67x0f1yt9/Hookup4uCodecanyon7.zip?dl=1', 3789, '2021-12-12 11:13:18'),
(187, '', '', 'https://www.dropbox.com/s/zeb3ldk3yc7go72/online-exam-management-system-2.4%202.zip?dl=1', 8097, '2021-12-12 11:13:18'),
(188, '', '', 'https://www.dropbox.com/s/zcz9tz9uu33nccr/disto-wordpress-blog-magazine-theme-wordpress-theme18.zip?dl=1', 736, '2021-12-12 11:13:18'),
(189, '', '', 'https://www.dropbox.com/s/p1j2t18c1c3q90t/WhatsIPs_v1.2.rar?dl=1', 8090, '2021-12-12 11:13:18');
-- --------------------------------------------------------
--
-- Table structure for table `orders`
--
CREATE TABLE `orders` (
`ID` bigint(20) UNSIGNED NOT NULL,
`customer_id` varchar(11) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`order_date` datetime NOT NULL DEFAULT current_timestamp(),
`order_comment` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`order_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`payment_id` varchar(999) COLLATE utf8mb4_unicode_520_ci DEFAULT 'Pending',
`order_hash` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
`order_total` int(11) NOT NULL,
`order_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `orders`
--
INSERT INTO `orders` (`ID`, `customer_id`, `order_date`, `order_comment`, `order_status`, `payment_id`, `order_hash`, `order_total`, `order_modified`, `comment_count`) VALUES
(547, '5Sp', '2020-11-13 15:21:48', '', 'completed', '', 'wc_order_WQ0SYcfBwpjjj', 499, '2020-11-13 15:21:48', 6),
(552, '0', '2020-11-14 11:34:49', '', 'wc-completed', '', 'wc_order_eIIhmeqCggG6l', 0, '2020-11-14 11:34:49', 8),
(858, '0', '2020-11-21 08:40:19', '', 'wc-completed', '', 'wc_order_TJXx9QDi5zGwM', 0, '2020-11-21 08:40:19', 4),
(902, '0', '2020-11-21 16:10:27', '', 'wc-completed', '', 'wc_order_Jp2NvPxdUuMwV', 0, '2020-11-21 16:10:27', 6),
(1209, '0', '2020-12-11 20:43:28', '', 'wc-completed', '', 'wc_order_ApjaWYYmmkd7s', 0, '2020-12-11 20:43:28', 4),
(1864, '0', '2020-12-14 12:23:30', '', 'wc-completed', '', 'wc_order_0bSTqi9Wde1t4', 0, '2020-12-14 12:23:30', 2),
(2112, '0', '2020-12-18 16:32:21', '', 'wc-completed', '', 'wc_order_vIyqnphRrViLp', 0, '2020-12-18 16:32:21', 2),
(2113, '0', '2020-12-18 16:35:43', '', 'wc-completed', '', 'wc_order_TANTVwP09Tt9P', 0, '2020-12-18 16:35:43', 2),
(2115, '0', '2020-12-18 17:33:42', '', 'wc-completed', '', 'wc_order_Hsie70P6iBaF7', 0, '2020-12-18 17:33:42', 4),
(2116, '0', '2020-12-18 19:11:47', '', 'wc-completed', '', 'wc_order_RVW7cr8nwnR7X', 0, '2020-12-18 19:11:47', 2),
(2117, '0', '2020-12-18 21:00:24', '', 'wc-completed', '', 'wc_order_MJUG0sryU6V0T', 0, '2020-12-18 21:00:24', 2),
(2118, '0', '2020-12-18 21:04:13', '', 'wc-completed', '', 'wc_order_xBIqGWBlBKItO', 0, '2020-12-18 21:04:13', 2),
(2174, '0', '2020-12-20 16:59:37', '', 'wc-completed', '', 'wc_order_RYaVef4K8QAFh', 0, '2020-12-20 16:59:37', 3),
(2227, '0', '2020-12-23 19:59:34', '', 'wc-completed', '', 'wc_order_VySLS9AIPSa1c', 0, '2020-12-23 19:59:34', 2),
(2281, '0', '2020-12-30 00:39:23', '', 'wc-completed', '', 'wc_order_CbVhUghmBUH5w', 0, '2020-12-30 00:39:23', 2),
(2289, '0', '2020-12-30 11:27:45', '', 'wc-completed', '', 'wc_order_GScKtA15VYeKD', 0, '2020-12-30 11:27:45', 2),
(2332, '0', '2020-12-30 22:36:37', '', 'wc-completed', '', 'wc_order_WkTlTpr27MxKX', 0, '2020-12-30 22:36:37', 2),
(2334, '0', '2020-12-31 15:38:50', '', 'wc-completed', '', 'wc_order_wwo1ju462V0P4', 0, '2020-12-31 15:38:50', 2),
(2348, '0', '2021-01-01 13:54:05', '', 'wc-completed', '', 'wc_order_z5b59VgKGcA8v', 0, '2021-01-01 13:54:05', 2),
(2375, '0', '2021-01-05 11:59:33', '', 'wc-completed', '', 'wc_order_GGn3DV1evKYTV', 0, '2021-01-05 11:59:33', 2),
(2376, '0', '2021-01-05 12:40:14', '', 'wc-completed', '', 'wc_order_bcJP4uALeKOdl', 0, '2021-01-05 12:40:14', 2),
(2413, '0', '2021-01-05 23:42:54', '', 'wc-completed', '', 'wc_order_VLpK7ptrkgHjC', 0, '2021-01-05 23:42:54', 2),
(2428, '0', '2021-01-06 16:13:49', '', 'wc-completed', '', 'wc_order_ovlk0qgtS19lz', 0, '2021-01-06 16:13:49', 4),
(2495, '0', '2021-01-07 22:45:14', '', 'wc-completed', '', 'wc_order_zYJSjdFSnhsHC', 0, '2021-01-07 22:45:14', 2),
(2515, '0', '2021-01-08 12:47:16', '', 'wc-completed', '', 'wc_order_FQTCnQrhMydbb', 0, '2021-01-08 12:47:16', 2),
(2524, '0', '2021-01-08 19:54:58', '', 'wc-completed', '', 'wc_order_6ehCTWclhpHxQ', 0, '2021-01-08 19:54:58', 2),
(2540, '0', '2021-01-11 00:46:09', '', 'wc-completed', '', 'wc_order_rktRp08TOZnk8', 0, '2021-01-11 00:46:09', 5),
(2542, '0', '2021-01-11 22:09:44', '', 'wc-completed', '', 'wc_order_T7Ysgp2gTtZoD', 0, '2021-03-28 16:49:11', 7),
(2544, '0', '2021-01-12 08:19:32', '', 'wc-completed', '', 'wc_order_QaZdbfzBg7Cyr', 0, '2021-03-04 08:28:34', 5),
(2608, '0', '2021-01-14 12:01:46', '', 'wc-completed', '', 'wc_order_Mc4QzhxY9Swo1', 0, '2021-01-14 12:01:46', 5),
(2626, '0', '2021-01-15 16:52:07', '', 'wc-completed', '', 'wc_order_5W9BUQCu5WoqP', 0, '2021-01-15 16:52:07', 2),
(2666, '0', '2021-01-17 15:00:34', '', 'wc-completed', '', 'wc_order_AdbwfZhie6zdD', 0, '2021-04-06 00:03:04', 7),
(2715, '0', '2021-01-19 00:56:20', '', 'wc-completed', '', 'wc_order_5H4G1M8edXOo3', 0, '2021-03-10 17:04:58', 8),
(2935, '0', '2021-01-22 09:59:55', '', 'wc-completed', '', 'wc_order_u0TRLWwTExG1q', 0, '2021-01-22 09:59:55', 2),
(2959, '0', '2021-01-23 15:54:02', '', 'wc-refunded', '', 'wc_order_DWjIRYFbTFwLO', 0, '2021-01-23 15:54:02', 8),
(3044, '0', '2021-01-28 17:49:39', '', 'wc-completed', '', 'wc_order_kuPDLLijgllkc', 0, '2021-04-05 23:55:57', 8),
(3053, '0', '2021-02-03 13:52:53', '', 'wc-completed', '', 'wc_order_aNXOUZXw9mDbj', 0, '2021-02-03 13:52:53', 4),
(3090, '0', '2021-02-07 07:44:13', '', 'wc-completed', '', 'wc_order_3HNkfOzHZPUvb', 0, '2021-02-07 07:44:13', 10),
(3129, '0', '2021-02-08 17:20:39', '', 'wc-refunded', '', 'wc_order_Vac8xAWZzdlAZ', 0, '2021-02-08 17:20:39', 8),
(3157, '0', '2021-02-09 08:04:42', '', 'wc-completed', '', 'wc_order_WgTFRUl99uK9k', 0, '2021-02-09 08:04:42', 3),
(3794, '0', '2021-02-13 21:13:03', '', 'wc-completed', '', 'wc_order_b9qkA7sjMMBs3', 0, '2021-02-13 21:13:03', 2),
(3801, '0', '2021-02-15 09:19:04', '', 'wc-completed', '', 'wc_order_IgAQLib8gZwZp', 0, '2021-02-26 06:02:55', 3),
(3802, '0', '2021-02-15 14:35:21', '', 'wc-completed', '', 'wc_order_GFUgFU02w77qk', 0, '2021-04-08 10:28:02', 10),
(3804, '0', '2021-02-16 18:53:01', '', 'wc-completed', '', 'wc_order_v7vwhRAGzz2KY', 0, '2021-02-16 18:53:01', 4),
(3814, '0', '2021-02-18 21:31:41', '', 'wc-completed', '', 'wc_order_3uKJurEoIgy96', 0, '2021-02-18 21:31:41', 5),
(3835, '0', '2021-02-21 13:23:24', '', 'wc-completed', '', 'wc_order_fLikBUkyDyVtG', 0, '2021-03-08 11:55:58', 12),
(3844, '0', '2021-02-23 15:46:41', '', 'wc-completed', '', 'wc_order_ykcJKCDSDxrN1', 0, '2021-02-23 15:46:41', 4),
(3847, '0', '2021-02-24 15:19:09', '', 'wc-completed', '', 'wc_order_2hRO84F03IUHc', 0, '2021-02-24 15:19:09', 4),
(4490, '0', '2021-02-26 07:06:37', '', 'wc-completed', '', 'wc_order_zDdh3X7MdsUne', 0, '2021-04-08 10:15:41', 4),
(4680, '0', '2021-02-27 03:10:13', '', 'wc-completed', '', 'wc_order_Ulsiy6WzDewz5', 0, '2021-02-27 04:08:32', 4),
(4681, '0', '2021-02-27 05:20:17', '', 'wc-refunded', '', 'wc_order_rjezabHHj5NLt', 0, '2021-03-02 03:28:39', 6),
(4776, '0', '2021-02-27 22:06:16', '', 'wc-refunded', '', 'wc_order_QUMo7C4eNbfdE', 0, '2021-02-28 02:41:06', 4),
(4856, '0', '2021-03-02 15:56:55', '', 'wc-refunded', '', 'wc_order_RpzplT0Kh2yHI', 0, '2021-03-23 17:31:06', 8),
(4857, '0', '2021-03-02 16:52:44', '', 'wc-refunded', '', 'wc_order_9zkIcjsZiUc6k', 0, '2021-03-02 17:00:40', 3),
(4880, '0', '2021-03-04 12:28:05', '', 'wc-completed', '', 'wc_order_KBYOrOpbTirq5', 0, '2021-03-04 15:51:19', 4),
(4884, '0', '2021-03-04 14:04:50', '', 'wc-completed', '', 'wc_order_SEXjuYAD0BAeI', 0, '2021-04-03 13:30:32', 4),
(5129, '0', '2021-03-05 07:48:08', '', 'wc-completed', '', 'wc_order_7BiqJWJoOV7Bg', 0, '2021-03-05 08:22:27', 4),
(5306, '0', '2021-03-07 17:45:52', '', 'wc-completed', '', 'wc_order_MBroKEiKAVDCN', 0, '2021-03-07 18:40:48', 3),
(5307, '0', '2021-03-07 17:48:49', '', 'wc-completed', '', 'wc_order_ObRBENQfmVhyB', 0, '2021-03-07 17:57:33', 3),
(5311, '0', '2021-03-07 18:13:08', '', 'wc-completed', '', 'wc_order_pA7Yl2xsuSkWQ', 0, '2021-03-07 18:29:46', 3),
(5322, '0', '2021-03-08 07:11:18', '', 'wc-completed', '', 'wc_order_inn35lSSX4uAz', 0, '2021-03-08 07:49:43', 4),
(5325, '0', '2021-03-09 00:27:51', '', 'wc-refunded', '', 'wc_order_SaJ8w0LCcBmWN', 0, '2021-03-17 10:08:16', 11),
(5327, '0', '2021-03-09 01:28:07', '', 'wc-completed', '', 'wc_order_MU0pfLhD8dUOj', 0, '2021-03-09 01:31:42', 2),
(5336, '0', '2021-03-10 15:44:51', '', 'wc-completed', '', 'wc_order_Pmbn5USLln2TP', 0, '2021-03-10 16:38:59', 3),
(5350, '0', '2021-03-11 18:24:52', '', 'wc-completed', '', 'wc_order_LyuAciJnoGA8F', 0, '2021-03-11 18:35:03', 4),
(5351, '0', '2021-03-11 20:17:59', '', 'wc-completed', '', 'wc_order_lClJOI1dpavkq', 0, '2021-03-11 21:28:15', 3),
(5354, '0', '2021-03-12 18:05:03', '', 'wc-completed', '', 'wc_order_DfPfIEZAcTWdz', 0, '2021-03-13 02:49:02', 2),
(5355, '0', '2021-03-12 23:52:38', '', 'wc-completed', '', 'wc_order_pnLLeWkD1qcrA', 0, '2021-04-03 10:48:38', 3),
(5361, '0', '2021-03-17 13:41:06', '', 'wc-completed', '', 'wc_order_lZX3yKTLuG4lv', 0, '2021-03-17 14:58:51', 3),
(5368, '0', '2021-03-17 20:03:23', '', 'wc-refunded', '', 'wc_order_eRFg2G9J45XAZ', 0, '2021-03-17 20:30:40', 4),
(5382, '0', '2021-03-19 19:39:01', '', 'wc-refunded', '', 'wc_order_hUmTWjy7bKYCX', 0, '2021-03-20 01:37:03', 5),
(5384, '0', '2021-03-20 09:44:43', '', 'wc-completed', '', 'wc_order_ova5GuTU2MbzJ', 0, '2021-03-20 09:57:32', 5),
(5386, '0', '2021-03-20 10:30:32', '', 'wc-completed', '', 'wc_order_DRRQBbRDvnhMg', 0, '2021-03-20 10:32:57', 4),
(5387, '0', '2021-03-22 10:16:09', '', 'wc-refunded', '', 'wc_order_lU7cPdLI9ytnR', 0, '2021-04-01 08:00:42', 5),
(5389, '0', '2021-03-22 18:33:46', '', 'wc-completed', '', 'wc_order_zkbccbIdjW1sj', 0, '2021-03-22 18:49:05', 3),
(5393, '0', '2021-03-23 00:52:17', '', 'wc-completed', '', 'wc_order_uUXzyWHNPrGN5', 0, '2021-03-23 03:16:41', 3),
(5400, '0', '2021-03-23 06:03:00', '', 'wc-refund-approved', '', 'wc_order_JNStIFPGW4r5U', 0, '2021-03-27 06:01:39', 5),
(5401, '0', '2021-03-23 07:54:42', '', 'wc-completed', '', 'wc_order_gzWSmTxhDacPY', 0, '2021-03-23 08:02:37', 3),
(5410, '0', '2021-03-24 08:34:48', '', 'wc-refunded', '', 'wc_order_pfpyuk2N7woPF', 0, '2021-04-03 13:30:43', 5),
(5411, '0', '2021-03-24 08:48:31', '', 'wc-refunded', '', 'wc_order_loKHDEsoh8FRB', 0, '2021-03-29 10:59:23', 6),
(5412, '0', '2021-03-24 16:14:04', '', 'wc-completed', '', 'wc_order_SR2AZtLlKDJV7', 0, '2021-03-24 16:17:47', 4),
(5417, '0', '2021-03-25 09:52:08', '', 'wc-completed', '', '', 0, '2021-03-25 10:07:41', 6),
(5419, '0', '2021-03-25 17:52:08', '', 'wc-completed', '', 'wc_order_Nu8axPJqS4KOW', 0, '2021-03-25 18:05:47', 3),
(5430, '0', '2021-03-26 20:35:59', '', 'wc-completed', '', 'wc_order_e3LQNurQ0ksOF', 0, '2021-03-26 21:48:52', 4),
(5466, '0', '2021-03-28 18:08:35', '', 'wc-completed', '', 'wc_order_o9TKgqsDhhDNm', 0, '2021-03-28 21:11:24', 4),
(5524, '0', '2021-03-29 12:37:23', '', 'wc-completed', '', 'wc_order_qzqiJ5rewXVZD', 0, '2021-03-29 12:48:38', 4),
(5581, '0', '2021-03-31 08:02:49', '', 'wc-completed', '', 'wc_order_ANjNQENErpSHq', 0, '2021-03-31 09:06:02', 4),
(5588, '0', '2021-03-31 09:31:07', '', 'wc-completed', '', 'wc_order_k8NaWz4Y42SRP', 0, '2021-03-31 09:31:31', 2),
(5591, '0', '2021-03-31 09:51:50', '', 'wc-refunded', '', 'wc_order_TcT2oIybbihOS', 0, '2021-04-03 16:47:27', 6),
(5596, '0', '2021-03-31 19:52:09', '', 'wc-completed', '', 'wc_order_ZvWdL1wAscc30', 0, '2021-04-01 01:25:44', 4),
(5600, '0', '2021-04-01 18:27:39', '', 'wc-completed', '', 'wc_order_aCbo76pJ6wkzl', 0, '2021-04-02 04:19:04', 7),
(5614, '0', '2021-04-02 04:52:13', '', 'wc-completed', '', 'wc_order_6jR9H5oUWCFob', 0, '2021-04-02 05:08:45', 2),
(5625, '0', '2021-04-02 09:15:50', '', 'wc-completed', '', 'wc_order_TiaQfBh68NMet', 0, '2021-04-03 13:32:28', 2),
(5626, '0', '2021-04-02 09:25:33', '', 'wc-completed', '', 'wc_order_AB0RPC0EeIfmO', 0, '2021-04-03 13:32:16', 3),
(5675, '0', '2021-04-02 22:08:38', '', 'wc-completed', '', 'wc_order_GKvfmVJZsYb1I', 0, '2021-04-03 10:13:06', 2),
(5682, '0', '2021-04-03 09:52:54', '', 'wc-completed', '', 'wc_order_W3MfRSAARcfmy', 0, '2021-04-03 09:57:56', 4),
(5709, '0', '2021-04-03 13:24:18', '', 'wc-completed', '', 'wc_order_aJYZhkOKufvEH', 0, '2021-04-03 13:25:17', 1),
(5713, '0', '2021-04-03 15:30:45', '', 'wc-refunded', '', '', 0, '2021-04-08 09:24:51', 10),
(5724, '0', '2021-04-03 16:03:34', '', 'wc-completed', '', 'wc_order_MDEgdyBAUfUOn', 0, '2021-04-03 16:14:07', 2),
(5784, '0', '2021-04-06 10:08:49', '', 'wc-completed', '', 'wc_order_W2we0O05LL4YK', 0, '2021-04-06 10:19:55', 3),
(5790, '0', '2021-04-06 11:29:49', '', 'wc-completed', '', 'wc_order_DkyJC5sFHHJ3m', 0, '2021-04-06 11:39:35', 4),
(6022, '0', '2021-04-08 15:58:13', '', 'wc-completed', '', '', 0, '2021-04-13 20:43:29', 6),
(6024, '0', '2021-04-08 18:39:02', '', 'wc-refunded', '', 'wc_order_LnbAUuqIQ3mR9', 0, '2021-04-08 18:54:24', 5),
(6027, '0', '2021-04-09 17:25:06', '', 'wc-completed', '', 'wc_order_O8goZxacP72cX', 0, '2021-04-09 18:29:37', 4),
(6028, '0', '2021-04-09 18:32:44', '', 'wc-completed', '', 'wc_order_pyT5pSdpG0Dor', 0, '2021-04-09 20:02:07', 3),
(6042, '0', '2021-04-12 20:46:40', '', 'wc-refunded', '', 'wc_order_pF0xd52FQbyes', 0, '2021-04-13 21:24:14', 7),
(6064, '0', '2021-04-13 17:33:24', '', 'wc-refunded', '', 'wc_order_yJYhvH68xBB1E', 0, '2021-04-13 18:20:47', 6),
(6095, '0', '2021-04-15 11:16:56', '', 'wc-completed', '', 'wc_order_w0y8bjphg1iAz', 0, '2021-04-15 13:08:12', 9),
(6151, '0', '2021-04-15 13:09:51', '', 'wc-completed', '', 'wc_order_1DT4Yo2VOd3Ev', 0, '2021-04-15 13:17:56', 4),
(6152, '0', '2021-04-15 14:41:13', '', 'wc-completed', '', 'wc_order_dJqakqBQE3Atg', 0, '2021-04-15 14:41:39', 2),
(6168, '0', '2021-04-16 16:55:52', '', 'wc-completed', '', 'wc_order_cu3eoAd2gO0UG', 0, '2021-04-16 17:14:59', 3),
(6180, '0', '2021-04-17 03:12:39', '', 'wc-completed', '', 'wc_order_Mvvk1Ne5eckME', 0, '2021-04-17 06:22:39', 3),
(6185, '0', '2021-04-17 14:09:31', '', 'wc-completed', '', 'wc_order_1tn0bFJtXbenG', 0, '2021-04-17 14:39:33', 4),
(6193, '0', '2021-04-17 18:15:07', '', 'wc-completed', '', 'wc_order_YW1UZ9cqbFeZd', 0, '2021-04-17 18:21:36', 3),
(6201, '0', '2021-04-17 21:51:08', '', 'wc-completed', '', 'wc_order_Ou7jF10Hv8NFo', 0, '2021-04-17 22:45:15', 2),
(6205, '0', '2021-04-18 12:35:35', '', 'wc-completed', '', 'wc_order_lMKEeyL0Ib6f8', 0, '2021-04-18 12:42:48', 3),
(6207, '0', '2021-04-18 13:15:38', '', 'wc-completed', '', 'wc_order_6d4cxTUuIC96n', 0, '2021-04-18 13:19:52', 4),
(6210, '0', '2021-04-18 16:29:37', '', 'wc-completed', '', 'wc_order_iMoy1ZmWb0HBE', 0, '2021-04-18 16:43:02', 3),
(6212, '0', '2021-04-18 16:42:50', '', 'wc-completed', '', 'wc_order_t9KuBSFVNANsR', 0, '2021-04-18 16:45:08', 3),
(6215, '0', '2021-04-19 00:26:36', '', 'wc-completed', '', 'wc_order_WEI6mDgrFIAiZ', 0, '2021-04-19 05:05:17', 3),
(6219, '0', '2021-04-19 15:20:13', '', 'wc-completed', '', 'wc_order_PJ9BFqKr9ghI7', 0, '2021-04-19 15:24:36', 3),
(6226, '0', '2021-04-19 20:05:05', '', 'wc-completed', '', 'wc_order_s6NnsarCYMjrb', 0, '2021-04-19 20:10:34', 3),
(6279, '0', '2021-04-20 21:06:03', '', 'wc-completed', '', 'wc_order_phLRrUkJdyVAA', 0, '2021-04-20 21:09:39', 3),
(6376, '0', '2021-04-23 23:13:03', '', 'wc-refunded', '', 'wc_order_vZgTzHLyy4Ux6', 0, '2021-04-25 13:47:52', 6),
(6507, '0', '2021-04-25 16:47:20', '', 'wc-completed', '', 'wc_order_GSZkZU4lHoppz', 0, '2021-04-25 17:06:25', 3),
(6511, '0', '2021-04-25 16:55:49', '', 'wc-refunded', '', 'wc_order_nGN2TkqgT0rkf', 0, '2021-04-25 16:58:24', 5),
(6515, '0', '2021-04-25 18:11:14', '', 'wc-completed', '', 'wc_order_Hb59Hr2CiNid6', 0, '2021-04-25 18:12:32', 2),
(6518, '0', '2021-04-25 19:01:26', '', 'wc-completed', '', 'wc_order_buCjFJy1zxBOk', 0, '2021-04-25 19:02:16', 2),
(6537, '0', '2021-04-26 08:41:14', '', 'wc-completed', '', 'wc_order_789lkv2U9xhpt', 0, '2021-04-26 08:52:28', 3),
(6544, '0', '2021-04-26 12:50:31', '', 'wc-completed', '', 'wc_order_Ksq1MfZHHFaSU', 0, '2021-04-26 12:55:21', 4),
(6546, '0', '2021-04-26 19:33:18', '', 'wc-completed', '', 'wc_order_zITUlYP6NaMgd', 0, '2021-04-27 07:20:05', 4),
(6558, '0', '2021-04-27 16:03:46', '', 'wc-completed', '', 'wc_order_TNvOzsF9l1Ecx', 0, '2021-04-27 16:53:36', 3),
(6585, '0', '2021-04-28 20:39:23', '', 'wc-completed', '', 'wc_order_Pj5MrS4Cnssbb', 0, '2021-04-28 20:48:06', 4),
(6606, '0', '2021-04-29 17:57:16', '', 'wc-completed', '', 'wc_order_ixYNyDn5CEKAl', 0, '2021-04-29 18:02:23', 3),
(6609, '0', '2021-04-29 23:20:04', '', 'wc-completed', '', 'wc_order_qDRVaQjglJsgq', 0, '2021-04-29 23:47:12', 3),
(6683, '0', '2021-04-30 20:45:30', '', 'wc-completed', '', 'wc_order_dnnPcklnGqDVR', 0, '2021-04-30 21:00:33', 4),
(6694, '0', '2021-04-30 23:24:01', '', 'wc-completed', '', 'wc_order_psxo2maGPuqQI', 0, '2021-04-30 23:44:12', 3),
(6696, '0', '2021-04-30 23:34:14', '', 'wc-completed', '', 'wc_order_C048wI6kA7arP', 0, '2021-04-30 23:54:02', 4),
(6726, '0', '2021-05-03 19:08:00', '', 'wc-completed', '', 'wc_order_D0vTPIE1GBhvX', 0, '2021-05-04 09:13:37', 4),
(6728, '0', '2021-05-03 20:29:10', '', 'wc-completed', '', 'wc_order_unWfUdyNaVWxT', 0, '2021-05-06 08:11:42', 6),
(6732, '0', '2021-05-04 09:13:20', '', 'wc-completed', '', 'wc_order_uSQ9pZm0KD2hn', 0, '2021-05-04 09:18:31', 4),
(6738, '0', '2021-05-04 15:27:05', '', 'wc-completed', '', 'wc_order_fs9ZPJQD9aO2D', 0, '2021-05-04 15:35:18', 4),
(6740, '0', '2021-05-05 06:10:39', '', 'wc-completed', '', 'wc_order_z0Ej8BWnu577N', 0, '2021-05-05 07:20:04', 3),
(6745, '0', '2021-05-05 08:04:46', '', 'wc-completed', '', '', 0, '2021-05-05 08:07:48', 4),
(6750, '0', '2021-05-05 22:31:19', '', 'wc-completed', '', 'wc_order_MeovRlAkijSww', 0, '2021-05-05 22:41:58', 4),
(6757, '0', '2021-05-06 07:53:53', '', 'wc-completed', '', 'wc_order_XWkqNNBS2b5ex', 0, '2021-05-06 07:57:29', 3),
(6762, '0', '2021-05-06 08:08:48', '', 'wc-completed', '', 'wc_order_Rx0BTnccbrS7b', 0, '2021-05-06 08:11:24', 4),
(6765, '0', '2021-05-06 08:20:13', '', 'wc-completed', '', 'wc_order_k6pHCdF348yUu', 0, '2021-05-06 08:28:23', 3),
(6773, '0', '2021-05-06 20:27:50', '', 'wc-completed', '', 'wc_order_MNi9DK3rvciwh', 0, '2021-05-06 20:40:42', 4),
(6781, '0', '2021-05-07 21:36:51', '', 'wc-completed', '', 'wc_order_5oDDbn7AqXyz8', 0, '2021-05-07 21:50:09', 3),
(6799, '0', '2021-05-08 21:06:58', '', 'wc-completed', '', 'wc_order_tyS7Luvnwj0nA', 0, '2021-05-08 21:27:19', 3),
(6801, '0', '2021-05-09 11:57:21', '', 'wc-refunded', '', 'wc_order_l8ZKaGR3XAKJT', 0, '2021-05-15 06:58:37', 6),
(6804, '0', '2021-05-09 12:46:47', '', 'wc-completed', '', 'wc_order_ht1Y5CR1AjaGC', 0, '2021-05-09 13:52:49', 4),
(6808, '0', '2021-05-10 11:42:54', '', 'wc-completed', '', 'wc_order_4XE4X4b0gQJW6', 0, '2021-05-10 11:52:22', 4),
(6815, '0', '2021-05-10 16:55:29', '', 'wc-completed', '', 'wc_order_Nu84ssOFJjDjO', 0, '2021-05-10 17:46:33', 5),
(6823, '0', '2021-05-10 22:13:13', '', 'wc-refunded', '', 'wc_order_GhDpWhjqO0wmR', 0, '2021-05-11 07:32:38', 6),
(6830, '0', '2021-05-11 06:54:58', '', 'wc-completed', '', 'wc_order_IfAS9Zn33LCXK', 0, '2021-05-13 09:29:09', 4),
(6834, '0', '2021-05-11 22:31:52', '', 'wc-refunded', '', 'wc_order_JAGZRyiF6lCD7', 0, '2021-05-15 07:05:00', 4),
(6843, '0', '2021-05-13 08:47:18', '', 'wc-completed', '', 'wc_order_N597ybKJ6JNZo', 0, '2021-05-13 09:28:47', 3),
(6850, '0', '2021-05-14 12:53:54', '', 'wc-completed', '', 'wc_order_juuC7Gh2lZi75', 0, '2021-05-14 12:58:45', 4),
(6854, '0', '2021-05-14 15:23:10', '', 'wc-completed', '', 'wc_order_55dxFzjHt5v56', 0, '2021-05-14 15:33:59', 4),
(6877, '0', '2021-05-16 08:59:12', '', 'wc-completed', '', 'wc_order_ucaMHtLpyNEZ4', 0, '2021-05-16 09:00:19', 2),
(6907, '0', '2021-05-21 21:20:06', '', 'wc-completed', '', 'wc_order_bC8zA0tOjkder', 0, '2021-05-21 21:24:01', 3),
(6913, '0', '2021-05-22 18:41:43', '', 'wc-completed', '', 'wc_order_SG9pkj6I62vJO', 0, '2021-05-22 18:53:50', 4),
(6933, '0', '2021-05-28 09:52:06', '', 'wc-completed', '', 'wc_order_jljGHKSA1sGez', 0, '2021-05-28 11:00:32', 4),
(6985, '0', '2021-06-02 15:10:23', '', 'wc-completed', '', 'wc_order_8KgJ310avvWnk', 0, '2021-06-21 11:32:42', 3),
(6987, '0', '2021-06-02 15:11:23', '', 'wc-completed', '', 'wc_order_44Htz3weji2HZ', 0, '2021-06-02 15:57:12', 4),
(7070, '0', '2021-06-06 20:33:32', '', 'wc-completed', '', 'wc_order_4cTTH3ljz7EBr', 0, '2021-06-06 20:45:00', 3),
(7076, '0', '2021-06-07 11:21:20', '', 'wc-refunded', '', 'wc_order_h18iPl4twaE67', 0, '2021-06-07 12:44:18', 5),
(7086, '0', '2021-06-07 23:34:04', '', 'wc-refunded', '', 'wc_order_yi3FDbdwvLhiv', 0, '2021-06-07 23:59:32', 4),
(7113, '0', '2021-06-09 01:28:56', '', 'wc-completed', '', 'wc_order_8qfUr3sCMpXR1', 0, '2021-06-09 12:26:26', 2),
(7118, '0', '2021-06-09 12:08:41', '', 'wc-completed', '', 'wc_order_AAaEZHCRZIaTc', 0, '2021-06-09 12:16:53', 4),
(7126, '0', '2021-06-09 13:50:59', '', 'wc-completed', '', 'wc_order_MRUYXygn5rfn5', 0, '2021-06-09 14:09:40', 3),
(7134, '0', '2021-06-11 11:40:33', '', 'wc-completed', '', 'wc_order_8w6uew5vJHXdE', 0, '2021-06-11 12:02:31', 3),
(7137, '0', '2021-06-11 12:13:06', '', 'wc-completed', '', 'wc_order_KUPhODXawYsNi', 0, '2021-06-11 12:17:24', 3),
(7150, '0', '2021-06-14 18:43:51', '', 'wc-completed', '', 'wc_order_P1Fb7JXhcbJFW', 0, '2021-06-14 19:21:31', 4),
(7156, '0', '2021-06-16 16:14:30', '', 'wc-completed', '', '', 0, '2021-06-16 16:16:38', 2),
(7159, '0', '2021-06-17 13:35:10', '', 'wc-completed', '', 'wc_order_RIAMajp7HwWpS', 0, '2021-06-17 13:54:21', 4),
(7175, '0', '2021-06-21 10:59:32', '', 'wc-refunded', '', 'wc_order_RzcTTQtXTNfCz', 0, '2021-06-28 14:09:00', 6),
(7180, '0', '2021-06-22 23:49:10', '', 'wc-refunded', '', 'wc_order_nxgmKSaHQIxUl', 0, '2021-06-23 12:20:13', 5),
(7185, '0', '2021-06-24 14:33:21', '', 'wc-refunded', '', 'wc_order_kr9LHfdUeXhTU', 0, '2021-06-24 17:14:00', 5),
(7199, '0', '2021-06-26 04:49:32', '', 'wc-completed', '', 'wc_order_6c9ZK6wyaRFUH', 0, '2021-06-26 10:53:49', 4),
(7202, '0', '2021-06-26 05:08:16', '', 'wc-completed', '', 'wc_order_HytL2Gfxccjaf', 0, '2021-06-26 05:12:52', 4),
(7229, '0', '2021-06-28 13:45:57', '', 'wc-completed', '', 'wc_order_Kza1Tf6kDjZOS', 0, '2021-06-28 13:48:14', 4),
(7242, '0', '2021-06-28 16:53:23', '', 'wc-completed', '', 'wc_order_S3z9u3dRfbWni', 0, '2021-06-28 17:09:05', 2),
(7249, '0', '2021-06-29 12:21:40', '', 'wc-refunded', '', 'wc_order_2Sjf7eMOjMxZh', 0, '2021-06-29 12:56:43', 4),
(7255, '0', '2021-06-29 18:05:35', '', 'wc-completed', '', 'wc_order_w7QmDaIzomicf', 0, '2021-06-29 19:52:26', 4),
(7263, '0', '2021-07-01 13:34:35', '', 'wc-completed', '', 'wc_order_jQDuG5rbOVYqa', 0, '2021-07-01 13:40:31', 4),
(7267, '0', '2021-07-01 22:41:11', '', 'wc-completed', '', 'wc_order_cBDjeJJw4ZoIO', 0, '2021-07-01 22:49:21', 3),
(7276, '0', '2021-07-03 03:16:43', '', 'wc-completed', '', 'wc_order_1V7k9PukzskAJ', 0, '2021-07-10 11:08:46', 5),
(7287, '0', '2021-07-03 03:53:34', '', 'wc-completed', '', 'wc_order_jmm3O0iq8H8xQ', 0, '2021-07-03 23:15:26', 2),
(7293, '0', '2021-07-03 13:45:42', '', 'wc-completed', '', 'wc_order_TTOTtoif1f4zH', 0, '2021-07-03 17:56:35', 8),
(7311, '0', '2021-07-05 20:32:43', '', 'wc-completed', '', 'wc_order_51TltbzVdIDIB', 0, '2021-07-05 21:53:10', 4),
(7317, '0', '2021-07-05 22:07:00', '', 'wc-completed', '', 'wc_order_sP137mGDsbohs', 0, '2021-07-05 22:12:51', 4),
(7323, '0', '2021-07-05 22:27:50', '', 'wc-completed', '', 'wc_order_xLueoo4jj3piQ', 0, '2021-07-09 14:23:32', 2),
(7331, '0', '2021-07-05 22:36:23', '', 'wc-completed', '', 'wc_order_EuQQvjjbapIDx', 0, '2021-07-09 14:23:55', 2),
(7346, '0', '2021-07-06 21:04:31', '', 'wc-completed', '', 'wc_order_oi00bEmTrVcDv', 0, '2021-07-06 21:21:19', 3),
(7352, '0', '2021-07-07 16:17:12', '', 'wc-completed', '', 'wc_order_jLO4GLmYxEs2B', 0, '2021-07-09 12:09:09', 3),
(7549, '0', '2021-07-11 17:38:20', '', 'wc-refunded', '', 'wc_order_RSk4Xxfsy8xDW', 0, '2021-07-11 17:47:51', 6),
(7553, '0', '2021-07-11 21:43:20', '', 'wc-completed', '', 'wc_order_ruWBwnC7AjdkJ', 0, '2021-07-11 21:52:35', 5),
(7624, '0', '2021-07-13 13:14:22', '', 'wc-completed', '', 'wc_order_2YTPxEmCtXlBa', 0, '2021-07-13 13:17:12', 4),
(7638, '0', '2021-07-15 11:22:32', '', 'wc-completed', '', 'wc_order_QTt7J2NtVAFy9', 0, '2021-07-15 11:27:35', 4),
(7640, '0', '2021-07-15 14:55:20', '', 'wc-completed', '', 'wc_order_rnOiWyeDi0q0O', 0, '2021-07-15 15:01:24', 4),
(7647, '0', '2021-07-17 11:47:16', '', 'wc-completed', '', 'wc_order_UFjGkm0Nupd58', 0, '2021-07-17 12:36:02', 4),
(7685, '0', '2021-07-20 21:14:49', '', 'wc-completed', '', 'wc_order_QtHoUfCJ13ELw', 0, '2021-07-20 21:32:25', 4),
(7688, '0', '2021-07-21 11:44:50', '', 'wc-completed', '', 'wc_order_uAD2zjCAueTVs', 0, '2021-07-21 13:36:12', 4),
(7693, '0', '2021-07-22 02:48:17', '', 'wc-completed', '', 'wc_order_mes1UgTVD4vy3', 0, '2021-07-22 03:41:49', 3),
(7712, '0', '2021-07-24 21:48:23', '', 'wc-refunded', '', 'wc_order_8r48TKtioWZeW', 0, '2021-07-25 12:29:45', 5),
(7761, '0', '2021-07-26 12:22:01', '', 'wc-refunded', '', 'wc_order_FFVQed02xGlAD', 0, '2021-07-26 14:48:59', 6),
(7765, '0', '2021-07-28 14:50:26', '', 'wc-completed', '', 'wc_order_NIcMUT47enFeN', 0, '2021-07-28 15:13:38', 4),
(7789, '0', '2021-08-01 13:05:50', '', 'trash', '', 'wc_order_58FMez89EAfEz', 0, '2021-11-16 09:04:19', 3),
(7790, '0', '2021-08-01 13:18:50', '', 'trash', '', 'wc_order_dtPaRG5cZmYm4', 0, '2021-11-16 09:04:19', 2),
(7796, '0', '2021-08-06 21:42:53', '', 'wc-completed', '', 'wc_order_MqxZAB8cN0Rg9', 0, '2021-08-06 22:22:56', 4),
(7802, '0', '2021-08-08 21:39:47', '', 'wc-completed', '', 'wc_order_7vdWbfhZDK7Dp', 0, '2021-08-08 22:27:54', 4),
(7807, '0', '2021-08-10 21:34:16', '', 'trash', '', 'wc_order_TQBS1bx6pyhcm', 0, '2021-11-16 09:04:19', 2),
(7808, '0', '2021-08-11 08:52:46', '', 'trash', '', 'wc_order_rDnhUO0FMrvnY', 0, '2021-11-16 09:04:19', 2),
(7809, '0', '2021-08-11 08:56:04', '', 'wc-completed', '', 'wc_order_FlW0taSLTc490', 0, '2021-08-11 09:13:10', 4),
(7811, '0', '2021-08-12 19:28:22', '', 'trash', '', 'wc_order_pBSFlD4Ehw0eg', 0, '2021-11-16 09:04:19', 2),
(7812, '0', '2021-08-12 19:34:53', '', 'trash', '', 'wc_order_DA5Gl6RrDaI4Y', 0, '2021-11-16 09:04:19', 2),
(7813, '0', '2021-08-12 21:48:42', '', 'trash', '', 'wc_order_pFdPyodDlUGlV', 0, '2021-11-16 09:04:19', 2),
(7816, '0', '2021-08-12 21:59:08', '', 'trash', '', 'wc_order_INpStMaqFoN1p', 0, '2021-11-16 09:04:19', 2),
(7818, '0', '2021-08-12 22:12:18', '', 'trash', '', 'wc_order_rnX3cOcrtfuV3', 0, '2021-11-16 09:04:19', 2),
(7819, '0', '2021-08-12 22:46:37', '', 'trash', '', 'wc_order_4JfH1BsJjz8g1', 0, '2021-11-16 09:04:19', 2),
(7820, '0', '2021-08-12 22:58:12', '', 'trash', '', 'wc_order_7M86fAPHeKVHH', 0, '2021-11-16 09:04:19', 2),
(7821, '0', '2021-08-13 10:35:10', '', 'trash', '', 'wc_order_KiNqYlKiEv959', 0, '2021-11-16 09:04:19', 2),
(7822, '0', '2021-08-13 16:04:58', '', 'wc-refunded', '', 'wc_order_rhyaKS0Zovsmu', 0, '2021-08-14 22:06:16', 6),
(7823, '0', '2021-08-14 01:18:00', '', 'trash', '', 'wc_order_QQI6d3kMP85ps', 0, '2021-11-16 09:04:19', 2),
(7852, '0', '2021-08-15 10:30:59', '', 'wc-completed', '', '', 0, '2021-08-15 10:33:34', 4),
(7910, '0', '2021-08-16 10:00:47', '', 'trash', '', 'wc_order_uRYq1LozM2UEQ', 0, '2021-11-16 09:04:18', 2),
(7911, '0', '2021-08-16 15:22:25', '', 'wc-completed', '', 'wc_order_EWrVSk7qm1iov', 0, '2021-08-16 16:41:22', 4),
(7961, '0', '2021-08-24 17:54:24', '', 'trash', '', 'wc_order_2P4Fb1v4uhX7s', 0, '2021-11-23 13:42:10', 4),
(7965, '0', '2021-08-25 09:47:40', '', 'wc-completed', '', 'wc_order_TxasQwxTCMoaf', 0, '2021-08-25 10:18:51', 4),
(7966, '0', '2021-08-25 09:52:03', '', 'trash', '', 'wc_order_8EFRoTBDP7HNR', 0, '2021-11-23 13:42:09', 2),
(7967, '0', '2021-08-25 09:56:02', '', 'trash', '', 'wc_order_kbNvz6zzhoRzz', 0, '2021-11-23 13:42:09', 2),
(7968, '0', '2021-08-25 11:45:40', '', 'trash', '', 'wc_order_BCXzrzcsmrfzH', 0, '2021-11-23 13:42:09', 2),
(7969, '0', '2021-08-25 11:57:36', '', 'trash', '', 'wc_order_21iPnAfKa5Qix', 0, '2021-11-23 13:42:08', 2),
(7970, '0', '2021-08-25 12:16:20', '', 'trash', '', 'wc_order_72mYI6B3lwg15', 0, '2021-11-23 13:42:08', 2),
(7971, '0', '2021-08-25 12:20:03', '', 'trash', '', 'wc_order_AEBMSYs8rWduP', 0, '2021-11-23 13:42:07', 2),
(7983, '0', '2021-08-25 17:40:22', '', 'trash', '', 'wc_order_XONepDAhWOrfT', 0, '2021-11-24 13:33:03', 5),
(7984, '0', '2021-08-26 13:53:54', '', 'wc-completed', '', 'wc_order_BF8JPjmKx9Z2B', 0, '2021-08-26 14:34:42', 4),
(7986, '0', '2021-08-26 17:55:18', '', 'wc-completed', '', 'wc_order_EyM4CJ0UlbW93', 0, '2021-08-26 18:07:27', 2),
(7987, '0', '2021-08-26 18:01:39', '', 'trash', '', 'wc_order_Uo5f4XfgAtVxg', 0, '2021-11-25 13:39:07', 2),
(7993, '0', '2021-08-28 12:26:50', '', 'wc-completed', '', 'wc_order_fh30dIC3FfmZ4', 0, '2021-08-28 13:05:08', 4),
(8001, '0', '2021-08-30 14:40:32', '', 'trash', '', 'wc_order_F5aATOTDIG8iy', 0, '2021-11-29 13:29:32', 2),
(8003, '0', '2021-08-30 17:44:55', '', 'wc-completed', '', 'wc_order_2ZfHlqIMaMGRY', 0, '2021-08-30 17:55:26', 4),
(8009, '0', '2021-08-31 18:51:02', '', 'trash', '', 'wc_order_tpjfG4qTeKnl0', 0, '2021-12-01 18:40:21', 2),
(8010, '0', '2021-08-31 18:53:49', '', 'wc-completed', '', 'wc_order_U09IEl1o6XEnu', 0, '2021-09-04 14:26:46', 4),
(8012, '0', '2021-08-31 22:42:13', '', 'wc-completed', '', 'wc_order_1KjNJ7raT7ofy', 0, '2021-09-01 00:50:03', 4),
(8015, '0', '2021-09-04 13:57:55', '', 'wc-completed', '', 'wc_order_UlUOKO0wxTGPb', 0, '2021-09-04 14:10:46', 4),
(8046, '0', '2021-09-06 11:40:24', '', 'trash', '', 'wc_order_WhU9yTCeWhcY5', 0, '2021-12-05 18:38:29', 2),
(8049, '0', '2021-09-06 18:04:37', '', 'wc-completed', '', 'wc_order_pQbQS0N5Thr0B', 0, '2021-09-06 19:03:18', 4),
(8054, '0', '2021-09-07 23:46:52', '', 'trash', '', 'wc_order_L9boX3UNYMFAZ', 0, '2021-12-07 18:42:03', 2),
(8060, '0', '2021-09-09 17:21:45', '', 'wc-completed', '', 'wc_order_eloYYHCa9qxnj', 0, '2021-09-10 13:58:11', 4),
(8083, '0', '2021-09-11 14:14:16', '', 'wc-completed', '', 'wc_order_Q1VWD1qrmg3Z1', 0, '2021-09-11 14:44:08', 4),
(8084, '0', '2021-09-11 18:54:18', '', 'trash', '', 'wc_order_tZa1QShL95ekh', 0, '2021-12-11 18:39:14', 2),
(8096, '0', '2021-09-18 00:24:48', '', 'wc-cancelled', '', 'wc_order_R2T4BXptqK3qA', 0, '2021-09-18 01:50:57', 2),
(8100, '0', '2021-09-18 10:04:01', '', 'wc-completed', '', 'wc_order_FRzg7Owm5TQ8e', 0, '2021-09-18 10:09:58', 4),
(8106, '0', '2021-09-22 19:53:49', '', 'wc-completed', '', 'wc_order_RqH9Iy0UY095a', 0, '2021-09-22 20:08:18', 4),
(8126, '0', '2021-10-03 21:10:17', '', 'wc-completed', '', 'wc_order_nCWPStKhbaCum', 0, '2021-10-04 17:31:41', 4),
(8134, '0', '2021-10-07 21:44:14', '', 'wc-cancelled', '', 'wc_order_madPIy45WOdcL', 0, '2021-10-07 23:14:26', 2),
(8166, '0', '2021-10-16 19:57:56', '', 'wc-completed', '', 'wc_order_Ena6rJXJ8IVwi', 0, '2021-10-16 20:04:26', 4),
(8169, '0', '2021-10-21 01:40:59', '', 'wc-cancelled', '', 'wc_order_fqvv6U8kOYh5Z', 0, '2021-10-21 03:06:24', 2),
(8170, '0', '2021-10-23 21:45:37', '', 'wc-cancelled', '', 'wc_order_zq7MjZKZnyYXD', 0, '2021-10-23 23:09:39', 2),
(8171, '0', '2021-10-23 21:47:05', '', 'wc-cancelled', '', 'wc_order_mN1MJ8OBGXwC3', 0, '2021-10-23 23:09:39', 2),
(8173, '0', '2021-10-28 22:30:10', '', 'wc-completed', '', 'wc_order_RQmh1s9x6lhGu', 0, '2021-10-28 22:46:31', 4),
(8190, '0', '2021-11-12 21:35:33', '', 'wc-cancelled', '', 'wc_order_KEfpCg2iXClXQ', 0, '2021-11-16 09:04:12', 2),
(8208, '0', '2021-11-16 09:07:37', '', 'wc-cancelled', '', 'wc_order_ebdDKU5RNEShl', 0, '2021-11-16 11:08:46', 2),
(8209, '0', '2021-11-16 19:12:57', '', 'wc-completed', '', 'wc_order_TPIaW3tmU54w7', 0, '2021-11-16 20:50:26', 4),
(8247, '0', '2021-11-24 18:19:52', '', 'wc-cancelled', '', 'wc_order_alojoKLCFKYZA', 0, '2021-11-24 19:57:47', 2),
(8249, '0', '2021-11-24 19:04:13', '', 'wc-cancelled', '', 'wc_order_gBgUcSS4rfrzI', 0, '2021-11-24 21:00:17', 2),
(8257, '0', '2021-11-27 10:52:45', '', 'wc-completed', '', 'wc_order_3x7oCnrRuDF6J', 0, '2021-11-27 11:42:41', 4),
(8365, '322', '2021-12-13 22:22:35', NULL, 'pending', 'Pending', 'gd_order_if2U4uFeV9c1p', 698, '0000-00-00 00:00:00', 0),
(8366, '322', '2021-12-13 22:22:38', NULL, 'completed', 'pay_IX22VMfxRgKd5C', 'gd_order_ozKxy0RdcKfqR', 698, '0000-00-00 00:00:00', 0),
(8367, '322', '2021-12-13 22:56:28', NULL, 'completed', 'pay_IX2cJLU1LgW9Sd', 'gd_order_L4SLHFhbRAgCx', 349, '0000-00-00 00:00:00', 0),
(8368, '322', '2021-12-14 08:58:41', NULL, 'pending', 'Pending', 'gd_order_bEN3C3ioX2ZPB', 349, '0000-00-00 00:00:00', 0),
(8369, '322', '2021-12-14 08:58:45', NULL, 'completed', 'pay_IXCsVNPUsyeYxg', 'gd_order_w2WlVhYiREjMs', 349, '0000-00-00 00:00:00', 0);
-- --------------------------------------------------------
--
-- Table structure for table `orders_meta`
--
CREATE TABLE `orders_meta` (
`id` int(11) NOT NULL,
`parent_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`price` int(11) NOT NULL,
`customer_id` int(11) NOT NULL,
`date_created` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `orders_meta`
--
INSERT INTO `orders_meta` (`id`, `parent_id`, `product_id`, `price`, `customer_id`, `date_created`) VALUES
(1, 8299, 34, 0, 0, '2021-12-12 21:24:31'),
(2, 8300, 58, 349, 0, '2021-12-12 21:26:10'),
(3, 8300, 65, 349, 0, '2021-12-12 21:26:10'),
(4, 8301, 58, 349, 0, '2021-12-12 21:26:57'),
(5, 8301, 65, 349, 0, '2021-12-12 21:26:57'),
(6, 8302, 87, 349, 0, '2021-12-12 21:31:53'),
(7, 8303, 87, 349, 0, '2021-12-12 21:31:59'),
(8, 8304, 58, 349, 0, '2021-12-12 21:34:43'),
(9, 8305, 58, 349, 0, '2021-12-12 21:34:47'),
(10, 8306, 87, 349, 0, '2021-12-12 21:38:20'),
(11, 8307, 87, 349, 0, '2021-12-12 21:38:24'),
(12, 8308, 87, 349, 0, '2021-12-12 21:38:25'),
(13, 8309, 72, 329, 0, '2021-12-13 00:22:28'),
(14, 8310, 72, 329, 0, '2021-12-13 00:22:30'),
(15, 8311, 72, 329, 0, '2021-12-13 00:22:30'),
(16, 8312, 72, 329, 0, '2021-12-13 00:22:31'),
(17, 8313, 94, 229, 0, '2021-12-13 09:06:42'),
(18, 8313, 87, 349, 0, '2021-12-13 09:06:42'),
(19, 8313, 58, 349, 0, '2021-12-13 09:06:42'),
(20, 8314, 94, 229, 322, '2021-12-13 09:06:45'),
(21, 8314, 87, 349, 322, '2021-12-13 09:06:45'),
(22, 8314, 58, 349, 322, '2021-12-13 09:06:45'),
(23, 8315, 58, 349, 0, '2021-12-13 09:15:31'),
(24, 8315, 71, 349, 0, '2021-12-13 09:15:31'),
(25, 8316, 58, 349, 0, '2021-12-13 09:15:33'),
(26, 8316, 71, 349, 0, '2021-12-13 09:15:33'),
(27, 8317, 58, 349, 322, '2021-12-13 09:15:34'),
(28, 8317, 71, 349, 0, '2021-12-13 09:15:34'),
(29, 8318, 87, 349, 0, '2021-12-13 09:27:32'),
(30, 8359, 72, 329, 322, '2021-12-13 19:03:33'),
(31, 8360, 72, 329, 322, '2021-12-13 19:04:50'),
(32, 8361, 72, 329, 322, '2021-12-13 19:05:20'),
(33, 8362, 72, 329, 322, '2021-12-13 19:05:23'),
(34, 8363, 58, 349, 322, '2021-12-13 19:37:22'),
(35, 8364, 58, 349, 322, '2021-12-13 19:37:25'),
(36, 8365, 71, 349, 322, '2021-12-13 22:22:35'),
(37, 8365, 87, 349, 322, '2021-12-13 22:22:35'),
(38, 8366, 71, 349, 322, '2021-12-13 22:22:38'),
(39, 8366, 87, 349, 322, '2021-12-13 22:22:38'),
(40, 8367, 99, 349, 322, '2021-12-13 22:56:28'),
(41, 8368, 83, 349, 322, '2021-12-14 08:58:41'),
(42, 8369, 83, 349, 322, '2021-12-14 08:58:45');
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` bigint(20) UNSIGNED NOT NULL,
`product_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
`publish_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`product_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
`product_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`product_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
`product_image` varchar(999) COLLATE utf8mb4_unicode_520_ci NOT NULL,
`product_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
`product_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(34, 1, '2020-11-01 17:36:27', 'Would you like to take the SEO of your site to the next level? Yoast SEO Premium is here to help you out! But there’s a free edition of Yoast SEO, too So what exactly is the difference between Yoast SEO’s free version and Yoast SEO Premium? Let’s find out what you’ll get about the most relevant features when you upgrade to <strong>Yoast SEO Premium!</strong>\r\n<h4><strong>Plugin Features:</strong></h4>\r\n<ul>\r\n <li>Keyword optimization</li>\r\n <li>Preview of your page</li>\r\n <li>Readability check</li>\r\n <li>Full control over your breadcrumbs</li>\r\n <li>No duplicate content</li>\r\n <li>Technical stuff in the background</li>\r\n <li>Always updated for Google’s algorithm</li>\r\n <li>Internal linking suggestions</li>\r\n <li>Content insights</li>\r\n <li>Redirect manager</li>\r\n <li>Focus keyword export</li>\r\n <li>Ad-free</li>\r\n <li>and so much more…</li>\r\n</ul>\r\n \r\n\r\n ', 'Yoast SEO Premium- WordPress SEO Plugin', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-Tiymb5VWqEM/X56eLYZ8jWI/AAAAAAAAApU/s2_COjnreDgiasq_d1ZdZSsvdroXZa_LACLcBGAsYHQ/s700/Yoast-SEO-Premium-Plugins.png', 'publish', 'open', '2021-05-07 11:59:31', 1),
(58, 1, '2020-11-02 07:41:54', '<strong>Purchase Proof:</strong>\n\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-0dnaq5mt1Jk/X93glnzql3I/AAAAAAAAB9g/cem6lz0-Lp0P6lRXQIzEjJRzwZlmM0ciwCLcBGAsYHQ/s1176/1608374001895.jpg\" width=\"576\" height=\"529\" />\n\nWith a leading interface and incredibly customizable layout, full of viral snacks and exclusive features, powered by the most strong viral content creator, Boombox is an all-purpose viral magazine style. Populate news, lists, surveys or quizzes, spread them through social sharing, patterns, comments and up/down voting mechanisms, push the network of bloggers and monetise some form of advertisement. Only go viral right now!\n<h4>Boombox <strong>Theme Features:</strong></h4>\n<ul>\n <li>Fully Responsive Design & Retina Ready</li>\n <li>Full Width or Boxed layouts</li>\n <li>Enhanced WordPress Customiser options</li>\n <li>Advanced sidebars management</li>\n <li>Unlimited 2 layer header layout and behaviour variations</li>\n <li>2 layer footer with 3 widget area</li>\n <li>Shape patterns for header and footer (e.g. rags, clouds, grass, none)</li>\n <li>Hide/Show any element on any page</li>\n <li>8 post listing types with infinite scroll, “load more” or numeric pagination</li>\n <li>2 size of post strip slider & 3 types of featured posts area</li>\n <li>Fully customisable colour scheme, styles & fonts</li>\n <li>Create prototype of BuzzFeed, BoredPanda, 9Gag or any other viral magazine</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'BoomBox— Viral Magazine WordPress Theme', '', 'https://1.bp.blogspot.com/-ISyVBDjNTnc/X59qce3EHlI/AAAAAAAAApw/xBrVDhCmJqsVx7L5MyaRpqykMqv9M4K1wCLcBGAsYHQ/s590/BoomBox.jpg', 'publish', 'open', '2021-04-02 04:39:15', 0),
(65, 1, '2020-11-02 08:08:09', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-0WMHBaJB7uE/YAlRxdE15TI/AAAAAAAACiI/vLKK65CEKPgaZGiPkEZTi03HBEGLlDwSQCLcBGAsYHQ/s1371/1611063197391.jpg\" width=\"553\" height=\"702\" />\r\n\r\nNo user data is stored by the theme and therefore no further steps are required to make the GDPR complaint theme. However, user information is stored and managed by WooCommerce and WordPress. Both of these plugins have released updated versions of their GDPR-claimed plugins. Please update the theme, WooCommerce, and WordPress to complain about your GDPR website.\r\n<h4>Electro <strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>Easy Installation and Setup</li>\r\n <li>Comes with importable dummy data</li>\r\n <li>Built on Bootstrap 4</li>\r\n <li>4 Pre-defined header styles and option to customize headers</li>\r\n <li>9 Pre-defined color scheme and option to generate custom colors</li>\r\n <li>3 Different types of home pages</li>\r\n <li>Responsive Megamenu</li>\r\n <li>9 Pre-built Pages</li>\r\n <li>Supports various post formats and post thumbnails feature.</li>\r\n <li>Includes 17 widgets</li>\r\n <li>WPML Compatible</li>\r\n <li>Youtube like page loader</li>\r\n <li>Cross-browser compatible (Chrome/Firefox/IE)</li>\r\n <li>Built with SASS – All SASS files included</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>', 'Electro- Electronics Store WooCommerce Theme', '', 'https://1.bp.blogspot.com/-2TDP-yKV0WQ/X59yNgAXpwI/AAAAAAAAAqM/buOMx-OEuxQAyXKoiUIYxf7RIzX2XF8igCLcBGAsYHQ/s590/Electro-1.jpg', 'publish', 'open', '2021-07-09 14:19:15', 0),
(71, 1, '2020-11-02 08:25:10', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-fgry45VYmjU/YAlPoQT4n-I/AAAAAAAACh8/FgDhzBPKneozKsACMcLfFQielwBhSF3TgCLcBGAsYHQ/s1562/1611147114419.png\" width=\"551\" height=\"797\" />\n\nKapee WordPress theme is simple clean, highly customizable and screen adaptive. This theme is ideal for all kinds of stores, such as clothes, electronics, furniture, accessories or any sort of WordPress website.\n\nKapee is a WooCommerce theme specialist for WordPress. It comes with several features and variations: Responsive Interface, Mega Menu, Page Creator, Amazing Slider Revolution, RTL, Quick View Product, Ajax Search, Ajax Cart, Ajax Product Filter, Product Purchased Together, Simple One Click To Install… and so much more.\n<h4>Kapee <strong>Theme Features:</strong></h4>\n<ul>\n <li>100% Fully Responsive</li>\n <li>Free Premium Plugins</li>\n <li>Retina ready</li>\n <li>One Click Demo Importer</li>\n <li>AJAX add to cart</li>\n <li>5 different shop item hover effects</li>\n <li>No Coding Knowledge Required</li>\n <li>Advance Blog Options</li>\n <li>Custom Page Templates & Page Options Included</li>\n <li>Many Useful Shortcodes</li>\n <li>Advance Theme Options Panel</li>\n <li>Valid HTML5 and CSS3 Code</li>\n <li>WPML Plugin Compatible</li>\n <li>Contact Form 7 Compatible</li>\n <li>Modern Cross Browser Supports</li>\n <li>RTL Support</li>\n <li>and so much more… Click the Live Demo button to read more details</li>\n</ul>', 'Kapee– Fashion Store WooCommerce Theme', '', 'https://1.bp.blogspot.com/-I9x-MNvwmUU/X590paWN3kI/AAAAAAAAAqo/ocIG8aYFhB4d2chyVD93XXaY3_zetL1JACLcBGAsYHQ/s590/Kapee.jpg', 'publish', 'open', '2021-04-02 04:39:14', 0),
(72, 1, '2020-11-02 08:36:05', 'WP Rocket can be used by everyone who has a WordPress website! No matter the sort, it works for sites large and small. WP Rocket will accelerate the loading time from a simple blog to an online shop! For non-technical WordPress users, WP Rocket is simple enough but extensible enough that experienced developers can customise it to their liking.\r\n<h4><strong>Plugin Features:</strong></h4>\r\n<ul>\r\n <li>Quick Setup</li>\r\n <li>Page Caching</li>\r\n <li>Cache Preloading</li>\r\n <li>Multisite Compatibility</li>\r\n <li>Sitemap Preloading</li>\r\n <li>GZIP Compression</li>\r\n <li>Browser Caching</li>\r\n <li>Database Optimization</li>\r\n <li>CloudFlare Compatibility</li>\r\n <li>Google Fonts Optimization</li>\r\n <li>DNS Prefetching</li>\r\n <li>Remove Query Strings from Static Resources</li>\r\n <li>Minification / Concatenation</li>\r\n <li>Lazyload</li>\r\n <li>Defer JS Loading</li>\r\n <li>Mobile Detection</li>\r\n <li>eCommerce Friendly</li>\r\n <li>Multilingual Compatibility</li>\r\n</ul>', 'WP Rocket– The Best WordPress Caching Plugin', '', 'https://1.bp.blogspot.com/-6R8BvSTVZXc/X593KnaOXBI/AAAAAAAAArE/T6w7vmr1KwoHhAE51qYLmoMi_V0d-jv2gCLcBGAsYHQ/s1404/WP-Rocket.jpg', 'publish', 'open', '2021-04-02 04:42:34', 0),
(83, 1, '2020-11-02 09:55:36', 'Social Auto Poster – A great alternative for posting your content automatically to popular social media sites such as Facebook, Twitter, LinkedIn, Tumblr, BufferApp, YouTube, Google My Company, Reddit, Telegram, Medium, WordPress and Pinterest.\n\nTo keep it alive & meet the full audience, you can customise your social profiles and post new content as well as repost your old content. SAP offers an amazing function to schedule the posting of your content whenever you want.With personal accounts, company pages, groups, etc the plugin also works well.\n<h4><strong>Plugin Features:</strong></h4>\n<ul>\n <li>Supports Custom Post Type</li>\n <li>Configure Unlimited of Each Social Media</li>\n <li>Auto Post New Content</li>\n <li>Auto Post on Facebook</li>\n <li>Auto Post on Linkedin</li>\n <li>Auto Post on Twitter</li>\n <li>Auto Post on Tumbler</li>\n <li>Auto Post on Pinterest</li>\n <li>Hashtags From Tags or Categories</li>\n <li>Track your Clicks</li>\n <li>Scheduled Posting</li>\n <li>URL Shorteners</li>\n <li>Exclude Category</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Social Auto Poster v3.9.1– WordPress Plugin', '', 'https://1.bp.blogspot.com/-195PYkEO_fw/X5-KAOUj_AI/AAAAAAAAArg/VHRy0aiYhtQnxHsp51PZiWB7gF9Ja38QgCLcBGAsYHQ/s590/Social-Auto-Poster.jpg', 'publish', 'open', '2021-04-02 04:42:34', 0),
(87, 1, '2020-11-02 10:04:51', 'Dokan, powered by WooCommerce, is the best front-end WordPress multi-vendor marketplace. It helps you in far less than 30 minutes to build your own marketplace similar to Amazon, Shopify, eBay, Magento like marketplaces.\r\n\r\nDokan is the fastest way to start eCommerce and earn money with products ranging from digital, physical to variable products through commissions.\r\n<h4><strong>Item Features:</strong></h4>\r\n<ul>\r\n <li>Marketplace with Independent Stores</li>\r\n <li>Frontend Dashboard For Vendors</li>\r\n <li>Multiple Product Types</li>\r\n <li>Earn From Each Sale</li>\r\n <li>Use any WooCommerce Compatible Theme</li>\r\n <li>Store Insights with Reports and Statement</li>\r\n <li>Easy Withdraw System</li>\r\n <li>Coupon Management</li>\r\n <li>Vendor Profile Completeness</li>\r\n <li>Review Product Publishing</li>\r\n <li>Vendor Configure their own Store Settings</li>\r\n <li>Control Selling Capability</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>', 'Dokan PRO– Multi Vendor WooCommerce Marketplace Plugin (Business)', '', 'https://1.bp.blogspot.com/-y1BAU2gAvsc/X5-PbyGxBrI/AAAAAAAAAr8/MS83paT0vskLnw2ub5zebsMpnE_08HYcgCLcBGAsYHQ/s1200/Dokan_Pro.png', 'publish', 'open', '2021-11-21 10:58:17', 0),
(94, 1, '2020-11-02 10:36:25', 'WooCommerce Notification shows recent orders in your store. It’s the online equivalent of a busy shop, showing potential customers that other people are purchasing your items.\r\n<h4><strong>Plugin Features:</strong></h4>\r\n<ul>\r\n <li>Easy to use</li>\r\n <li>Select Orders to Display</li>\r\n <li>Display Fake Orders</li>\r\n <li>Shortcodes</li>\r\n <li>Select the pop-up background image</li>\r\n <li>Configure the color of text, product name, and background</li>\r\n <li>Clickable product image</li>\r\n <li>4 pop-up positions</li>\r\n <li>2 product image positions</li>\r\n <li>Set the time to display notifications</li>\r\n <li>Works on mobile</li>\r\n <li>and so much more… Click the Live Demo button to read more details</li>\r\n</ul>', 'WooCommerce Notification | Boost Your Sales – Live Feed Sales – Recent Sales Popup – Upsells', '', 'https://1.bp.blogspot.com/-PYVHGraM_OE/X5-Tg_pfppI/AAAAAAAAAsY/bQ8LLZxdjYkq-_pn-4OmkZv-5MfWNBijACLcBGAsYHQ/s590/WooCommerce-Notification.jpg', 'publish', 'open', '2021-06-09 12:24:42', 0),
(99, 1, '2020-11-02 10:45:56', '<h4><strong>Plugin Features:</strong></h4>\n<ul>\n <li>Hide wp-login.php</li>\n <li>Hide or change wp-admin and all of its files</li>\n <li>Change plugins directory and hash plugins name</li>\n <li>Change upload URL, wp-includes folder, AJAX URL, etc</li>\n <li>Change WordPress queries URL</li>\n <li>Change author permalink</li>\n <li>Hide all other WordPress files</li>\n <li>Remove WordPress meta Info from the header and feeds</li>\n <li>Change default WordPress email sender</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Hide My WP v6.2.0– Amazing Security Plugin for WordPress', '', 'https://1.bp.blogspot.com/-GRTIyJvSxDo/X5-WuRny1yI/AAAAAAAAAs0/T3Q5RBLXwsQC6CYB58QChJkCpHCz5V0dwCLcBGAsYHQ/s590/Hide-My-WP-1.png', 'publish', 'open', '2021-04-02 04:42:34', 0),
(109, 1, '2020-11-02 11:19:12', '<h4><strong>Purchase Proof-</strong></h4>\r\n<h4><img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-LakwBWfybz4/YApPOn7740I/AAAAAAAACmU/P5LTFjm4fCcFyXupisN-JtphOSks7t90QCLcBGAsYHQ/s1214/Zox%2Bnews%2Bproof%2B.png\" width=\"542\" height=\"482\" /></h4>\r\n<h4><strong>Theme Features:</strong></h4>\r\nThe Zox News Themeforest is a modern elegant, stylish and unique theme for WordPress news magazines. It is filled with cool features and its primary focus is to make your website stand out while keeping it incredibly simple to use and maintain. A mobile-first-design, 8 article layouts, 4 layouts of featured posts, parallax leaderboard ad, Theia Post Slider, Theia Sticky Sidebar, Reviewer Plugin, Woocommerce-ready, and so much more are included in Zox News!\r\n<ul>\r\n <li>Compatible with WordPress 4.8+</li>\r\n <li>SEO Optimized</li>\r\n <li>Comes with XML dummy data (posts, tags, categories, menus, dummy images)</li>\r\n <li>Easy implementation with Google Adsense ads</li>\r\n <li>WordPress Featured Image support</li>\r\n <li>Unlimited Colors</li>\r\n <li>Youtube, Vimeo, and Soundcloud integration</li>\r\n <li>Custom Fly-Out Navigation</li>\r\n <li>Video/Audio Posts</li>\r\n <li>Retina Ready</li>\r\n <li>WooCommerce compatible</li>\r\n <li>bbPress compatible</li>\r\n <li>Infinite Scroll</li>\r\n <li>Custom Theme Options panel</li>\r\n <li>Custom CSS</li>\r\n <li>RTL Ready</li>\r\n <li>Featured Headlines</li>\r\n <li>Facebook comments support</li>\r\n <li>Built-In Disqus comments support</li>\r\n <li>Easy logo customization</li>\r\n <li>Translation ready (contains .po/.mo files)</li>\r\n <li>Child Theme included</li>\r\n <li>In-depth documentation</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>\r\n \r\n<figure class=\"wp-block-image\"></figure>', 'Zox News– Professional WordPress News & Magazine Theme', '', 'https://1.bp.blogspot.com/-e8uAUnnQEV8/X5-cWeQ_XnI/AAAAAAAAAtQ/Sb-5v31A4KonCWexpCdxZ3StZW-lXOSBQCLcBGAsYHQ/s590/Zox-News-1.jpg', 'publish', 'open', '2021-05-04 19:27:40', 0),
(120, 1, '2020-11-02 13:27:07', '<img src=\"https://1.bp.blogspot.com/-U6GjA0y7Qh0/X-LjocLVFGI/AAAAAAAACDQ/hea3P-yuJeUmeFV4uTsU2bYsrxjfADcYgCLcBGAsYHQ/s1722/1608704744784.jpg\" />\r\n\r\nNewspaper is a WordPress theme for which you can conveniently compose articles and blog posts. We are providing great support and polite assistance!\r\n\r\nBuild a fantastic website for news with our template for newspapers. For a news, newspaper, magazine, publishing or review site, this bestseller theme is great for blogging and outstanding. It supports YouTube videos. AMP and Ready for Mobile. GDPR compliant, for cryptocurrency, fashion, food, lifestyle, modern, personal, travel, luxury, viral, minimal, minimalist projects, web development and more the theme is fast, basic, and easy to use.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>One click demo install</li>\r\n <li>Live search with Ajax and up down keys</li>\r\n <li>Unlimited Sidebars</li>\r\n <li>Powered by Visual Composer</li>\r\n <li>Woocommerce Support</li>\r\n <li>Sticky navigation menu</li>\r\n <li>bbpress Support</li>\r\n <li>14 footer layouts</li>\r\n <li>Responsive ads support</li>\r\n <li>Built-in review system (stars, percents, points)</li>\r\n <li>Built-in translation support</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>', 'Newspaper- WordPress Theme', '', 'https://1.bp.blogspot.com/-aXDGnKFOCz4/X5-7uNvnbFI/AAAAAAAAAts/hbMa7F6ZiDIVlnMwhAwITgdxipijTTULwCLcBGAsYHQ/s590/Newspaper-1.png', 'publish', 'open', '2021-04-02 04:39:14', 0),
(130, 1, '2020-11-02 14:00:57', '<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>Real Responsive Design</li>\n <li>GDPR Compatibility (Cookie Law popup & Comments options)</li>\n <li>50+ High quality designed demos</li>\n <li>1 Click demo installer</li>\n <li>25+ Premium plugin included</li>\n <li>Advanced SEO Optimized</li>\n <li>Advanced Category and Tag Options</li>\n <li>Live Ajax Search</li>\n <li>90+ Pre-made Homepages</li>\n <li>70+ Page Builder Blocks</li>\n <li>Advanced and Simple use Theme Options Panel</li>\n <li>Hide/Show Most Elements</li>\n <li>Google AMP Supported and validated</li>\n <li>Sticky and Smart Sticky Navigation</li>\n <li>3 Page Layout Template</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Publisher– Ultimate WordPress Magazine Theme', '', 'https://1.bp.blogspot.com/-VNffTmUETic/YAjmPgg4YeI/AAAAAAAAChg/dpyMcHAskBs793tZDK0rf9LemzNOd-IwgCLcBGAsYHQ/s1160/Publisher-6.jpg', 'publish', 'open', '2021-04-02 04:39:14', 0),
(133, 1, '2020-11-02 15:42:09', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-0WMHBaJB7uE/YAlRxdE15TI/AAAAAAAACiI/vLKK65CEKPgaZGiPkEZTi03HBEGLlDwSQCLcBGAsYHQ/s1371/1611063197391.jpg\" width=\"510\" height=\"647\" />\r\n\r\nWith new responsive formats, exciting new features, full 1-click website demonstrations & lifetime free updates, Jannah has content marketing covered.\r\n\r\nIn today’s new age of content marketing, Jannah takes a fresh look at the world of desktop publishing and flips it on its head with a beautiful design, fresh layout options, modern sharing options and the integration of the most common WordPress extensions for maximum versatility.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>One Click Demo Install</li>\r\n <li>AMP integration</li>\r\n <li>Multiple Skins</li>\r\n <li>Over 20+ demos</li>\r\n <li>Sticky Sidebars</li>\r\n <li>Unlimited Sidebar</li>\r\n <li>Unlimited Footer Layouts</li>\r\n <li>Responsive Design</li>\r\n <li>RTL Supported</li>\r\n <li>WPML Multilingual Plugin Compatible</li>\r\n <li>Built-in Translation Panel</li>\r\n <li>Over 800+ Google Fonts</li>\r\n <li>Over 150+ FontFace Fonts</li>\r\n <li>Animated Weather Widgets</li>\r\n <li>GIF Support</li>\r\n <li>Bundled Premium Plugins</li>\r\n <li>BuddyPress Design</li>\r\n <li>Instagram Widget</li>\r\n <li>Unlimited Headers Layouts</li>\r\n <li>Multiple Content Layouts</li>\r\n <li>Amazing Page Builder</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>\r\n \r\n\r\n ', 'Jannah – Newspaper Magazine News BuddyPress AMP', ' \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-pKkKy0XIjHs/YEMtehL_zxI/AAAAAAAAC_s/Cz5rIxUy20k_syJnaEhxWfTo8usYxt1MgCLcBGAsYHQ/s1180/gpldog-Screenshot.png', 'publish', 'open', '2021-04-30 21:31:32', 0),
(140, 1, '2020-11-02 16:12:38', '<h4><img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-59Z4_1UqaQs/YAlV8Zpz8kI/AAAAAAAACjA/FctydJhJkX8kO2BTkxHxMmVkkKvXWNMAgCLcBGAsYHQ/s1618/907%2B-%2BCopy.PNG\" width=\"572\" height=\"857\" /></h4>\n<h4><strong>Theme Features:</strong></h4>\nNow without one line of coding, you can create a professional, fully functional Business WordPress website! The versatile and intuitive theme options and user-friendly interface make it possible, without any coding experience, for anyone to create a beautiful and high-performing website.\n\nMore than 200 custom, time-saving UI modules are included in Pearl, so you can pick and choose the features you need and create a site that is ideally tailored to your niche. With just a few clicks, add and pass modules across your pages, and you can edit, customise and combine them as much as you want!\n<ul>\n <li><strong>100% Working One Click Demo Import</strong></li>\n <li>100% Responsive and retina ready</li>\n <li>Professionally designed niche-demos that can be imported with 1-click</li>\n <li>Easy to use Visual Composer – the best drag-n-drop page builder on the market</li>\n <li>Each micro-niche theme includes specially tailored features</li>\n <li>Pearl Mega Menu</li>\n <li>Slider Revolution and Pearl Slider are included</li>\n <li>Pearl Header Builder</li>\n <li>Theme Options with easy customization</li>\n <li>Compatible with latest version of WordPress</li>\n <li>Built with HTML5 and CSS3</li>\n <li>Well-organized, commented and clean code</li>\n <li>Cross-browser compatibility: FireFox, Safari, Chrome, IE9, IE10, IE11</li>\n <li>SEO and loading speed optimized</li>\n <li>Compatible with many popular plugins</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Pearl– Corporate Business WordPress Theme', '', 'https://1.bp.blogspot.com/-WsbXdc7jakw/X5_iQHEjwuI/AAAAAAAAAvI/UC7-eYA3Yxg2UIVPbjH3yVqjt-KkuMQ0wCLcBGAsYHQ/s590/Pearl.jpg', 'publish', 'open', '2021-04-02 04:39:13', 0),
(159, 1, '2020-11-02 19:59:06', '<strong>Purchase Proof:</strong>\r\n\r\n<img src=\"https://1.bp.blogspot.com/-QsddLtJsYCA/X98aQXk4AYI/AAAAAAAACBA/YT-wUHx9ndEbyCzmGMadKPRHEDy_8M45gCLcBGAsYHQ/s1208/JobMonster.jpg\" />\r\n\r\nCareerfy – Work Board WordPress theme is advanced job board WordPress theme gives you the easiest solution to view jobs on any form of websites WordPress theme board. You may already know, some very big WordPress theme board gives you the option to use your database and expand your website with work offers. A full work board WordPress theme filled with different panels for employers and candidates.\r\n\r\n/If you are looking for a flexible theme for the job board, Careerfy and its pre-built content collection is a good choice. The demo websites of the job board cover a variety of businesses, so whatever kinds of roles you want to promote on your platform, with Careerfy, there is a high probability that you will find a suitable design. Designs targeted at start-up jobs, roles in the auto industry, and support positions are some indicators.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>Responsive & Retina Ready</li>\r\n <li>1 Click Demo Import</li>\r\n <li>Boxed layout option</li>\r\n <li>User Dashboard page template</li>\r\n <li>A large collection of useful inner pages</li>\r\n <li>Powerful sorting options for job listings and resumes</li>\r\n <li>Powerful typography options</li>\r\n <li>WooCommerce compatible</li>\r\n <li>Extensive Admin Interface</li>\r\n <li>No coding knowledge required</li>\r\n <li>Enable users logging in via Facebook and Google accounts</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>\r\n \r\n\r\n ', 'Careerfy– Job Board WordPress Theme', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-eB3-UnG4Q_c/YGfijLJ4b9I/AAAAAAAADGY/CS1xnlUDh3YJ5U83wyMJAXcVGRpF4naewCLcBGAsYHQ/s1180/Careerfy.jpg', 'publish', 'open', '2021-04-03 09:06:24', 0),
(167, 1, '2020-11-02 20:57:01', 'The primary way to construct and edit templates in Avada wordpress theme is Fusion Builder Live, but I would first like to show you how the backend editor works and how the WordPress block editor works with Fusion Builder.\r\n\r\nYou can see the Fusion Builder and Fusion Builder Live buttons in the WordPress editor once the plugin has been enabled.Fusion Builder’s developers aim to boost integration with the WordPress block editor, but enabling Fusion Builder at the moment would make the classic editor the default editing experience.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>One Click Demo Import</li>\r\n <li>Clean, modern, multi-purpose design</li>\r\n <li>100% Responsive Theme</li>\r\n <li>Incredibly advanced network of options for easy customizations without modifying code</li>\r\n <li>Compatible with the latest WordPress version</li>\r\n <li>WordPress Multisite (WPMU) Tested and Approved</li>\r\n <li>Built with HTML5 and CSS3</li>\r\n <li>SEO Optimized</li>\r\n <li>Well organized, commented & clean code</li>\r\n <li>Performance enhancements for fast and reliable websites</li>\r\n <li>Easy to use Fusion Builder, a visual page builder</li>\r\n <li>Retina Ready, Ultra-High Resolution Graphics</li>\r\n <li>Social Icons and Theme Icons are Font Icons, no Images</li>\r\n <li>Dual sidebars throughout the theme</li>\r\n <li>1-6 Column Support</li>\r\n <li>One Page Parallax feature for any page</li>\r\n <li>Javascript files are automatically combined and minified for added performance</li>\r\n <li>Compatible with Many Popular Plugins</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>\r\n \r\n\r\n ', 'Avada- Website Builder For WordPress & WooCommerce', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-eFg6PAhAM5Q/YELbqX8pA0I/AAAAAAAAC_c/YlT-ZtWtCs4vLzO_OnRmMP9VgbsTJAv0wCLcBGAsYHQ/s1180/screenshot.jpg', 'publish', 'open', '2021-07-03 11:54:44', 0),
(172, 1, '2020-11-02 21:28:28', '<strong>Purchase Proof:</strong>\r\n\r\n<img src=\"https://1.bp.blogspot.com/-rOegIzWbUs0/X6ozlBVZGYI/AAAAAAAABFo/K1wuyUZq3FYJ7wxfJVap7sKMPMBn3zMWwCLcBGAsYHQ/s2048/PicsArt_11-10-11.53.10.jpg\" />\r\n\r\nFlatsome theme is the perfect theme for your shop, company website, or any of your customers’ websites as an agency or freelancer. It has all the resources you need to create a super-fast, responsive website with an outstanding user interface. With a revolutionary page maker, countless choices give you the opportunity to design anything without coding.\r\n\r\n<strong>Purchase Proof-</strong>\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>Custom Product Page Builder</li>\r\n <li>Live Page Builder</li>\r\n <li>Unlimited Theme Options</li>\r\n <li>One-Click Demo Content</li>\r\n <li>Large Elements Libary</li>\r\n <li>Unlimited Header Options</li>\r\n <li>Drag & Drop Header Builder</li>\r\n <li>Built-in Slider & Banner System</li>\r\n <li>Smart Image Lazy Loading</li>\r\n <li>Live Search</li>\r\n <li>Unlimited Product Page Layouts</li>\r\n <li>Live Theme Options</li>\r\n <li>Customer Showcases</li>\r\n <li>Translation Ready and 12+ Languages are already translated</li>\r\n <li>Optimized for Speed</li>\r\n <li>SEO Optimized Code</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>', 'Flatsome | Multi-Purpose Responsive WooCommerce Theme', '', 'https://1.bp.blogspot.com/-EVCwV35sjGo/YFxKtOqK86I/AAAAAAAADEQ/53t6PwiQqs0_3AN36joXu42eUJitalsIACLcBGAsYHQ/s885/product-ss.png', 'publish', 'open', '2021-04-30 21:31:27', 0),
(179, 1, '2020-11-03 09:01:20', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-sEw2Fd23zbo/YApH5EfKrqI/AAAAAAAACl4/mVAoFqWW5O490r4wiwYV2IGum9qvqr1JwCLcBGAsYHQ/s1542/1611286395441.png\" width=\"557\" height=\"836\" />\n\nKalium is one of the best WordPress themes, well suited for portfolios and blog sites. Both prospective employers and clients will be astounded as they browse your well-designed, simplified page. If you would like to read more about this topic, you can consult its detailed and highly insightful documents. In addition, there’s a live demo with some screenshots. Your site would be extremely flexible, since you can modify or modify all of the components.\n\nThe inclusion of the useful Revolution Slider makes the best possible way to view artful content. You have the ability to make eye-catching slides, to show to your fans that you are deserving of their attention. You can also incorporate custom animation, effects, and transitions. There are many portfolio variants that allow you to view each content feature in a different format.\n<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>Ultra Responsive on every device</li>\n <li>Retina Ready Design</li>\n <li>One-Click Demo Content Installer</li>\n <li>4 Portfolio Listing Types</li>\n <li>Rich Theme Options</li>\n <li>7 Portfolio Single Item Types</li>\n <li>3 Blog Types</li>\n <li>Multiple Menu Types</li>\n <li>WooCommerce Support</li>\n <li>Coming Soon Mode Page</li>\n <li>Maintenance Mode Page</li>\n <li>Endless Pagination</li>\n <li>Content Builder (Visual Composer – included)</li>\n <li>Revolution Slider (included)</li>\n <li>Layer Slider (included)</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Kalium- Creative Theme for Professionals', '', 'https://1.bp.blogspot.com/-WjK-HHf99wA/X6DPv0VwFgI/AAAAAAAAAxo/crrEsymkL58RHBPD6mK-dK6keHdByFpgACLcBGAsYHQ/s590/Kalium-1.jpg', 'publish', 'open', '2021-04-02 04:39:13', 0),
(184, 1, '2020-11-03 09:16:13', 'Pofo is a gorgeous, imaginative WordPress theme for portfolio and blog websites. It’s a perfect WordPress theme for agencies, creative teams, photographers, designers, and similar companies, with features such as WooCommerce compatibility, responsive design, multiple templates, one-click demo import, and drag & drop page builder functionality with Visual Composer. With a beautiful crisp interface, this quick and SEO optimized WordPress theme will showcase your company at its best!\n<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>25+ home page demos</li>\n <li>Quick Install and Easy Setup</li>\n <li>Page/Post Level Customizations</li>\n <li>Custom Sidebars</li>\n <li>Custom Widgets</li>\n <li>Endless Typography & Color Options</li>\n <li>Clean Developer Friendly Code</li>\n <li>Parallax & Video Backgrounds</li>\n <li>Built-in Megamenu</li>\n <li>150+ Powerful Shortcodes</li>\n <li>Portfolio category filters</li>\n <li>Translation and WPML Ready</li>\n <li>SEO Optimized</li>\n <li>One Page Ready</li>\n <li>Awesome and Helpful Documentation</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Pofo v1.3.1– Creative Portfolio and Blog WordPress Theme', '', 'https://1.bp.blogspot.com/-UNRWPgkZjsk/X6DUIhl-7SI/AAAAAAAAAyE/UfdjL-GMwpM8yYgOoYQHUyX6lnkFjBQBACLcBGAsYHQ/s590/Pofo.jpg', 'publish', 'open', '2021-04-02 04:39:12', 0),
(192, 1, '2020-11-03 09:34:42', 'The Exponent is a visually pleasing business theme for WordPress. It comes with more than 20 demo models that can be used to launch a website according to your specifications.\n\nYou will get the site up and running in no time with its 1-click demo content importer. To set up a completely functioning website, you only need to replace the content with your text and pictures.\n\nThe Exponent theme can be translated into any language, meaning you can easily create a multilingual site. Color control, support for Google Fonts, portfolio sections, image galleries, and carousels are other functions.\n<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>20+ Modern Demos</li>\n <li>Fully responsive</li>\n <li>200+ page layouts</li>\n <li>Beautiful Portfolios</li>\n <li>Intuitive Fully Visual Header, Footer & Page Builder</li>\n <li>Easy Setup Process</li>\n <li>Create professional blogs</li>\n <li>Full Fledged Online Stores</li>\n <li>Hundreds of Google & Adobe Fonts</li>\n <li>Blazing Fast Performance</li>\n <li>Color Management</li>\n <li>Translatable & Multi-Lingual compatible</li>\n <li>Tools for GDPR compliance</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Exponent v1.2.8.7– Modern Multi-Purpose Business WordPress theme', '', 'https://1.bp.blogspot.com/-X0W7_aftBPg/X6DWyNpd2ZI/AAAAAAAAAyg/hee9mKyuU7gtl4jMj-IHxyiNF3AFqaC0QCLcBGAsYHQ/s590/Exponent.png', 'publish', 'open', '2021-04-02 04:39:12', 0),
(198, 1, '2020-11-03 09:42:38', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-sEw2Fd23zbo/YApH5EfKrqI/AAAAAAAACl4/mVAoFqWW5O490r4wiwYV2IGum9qvqr1JwCLcBGAsYHQ/s1542/1611286395441.png\" width=\"608\" height=\"913\" />\n\nFor a wide range of website uses, from enterprise to industrial, personal to commercial, large and small sizes, Oshine is possibly one of the best WordPress themes. This theme is designed for a static website, single page website and static webpage development with unique and powerful capabilities, in a simple, efficient way that is intuitive and easy and needs absolutely no coding skills whatsoever.\n<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>Responsive & Retina Ready</li>\n <li>Infinite Layout Possibilities</li>\n <li>Lazy Loading</li>\n <li>One-Click Demo Import</li>\n <li>50+ Styling Modules</li>\n <li>Unlimited Portfolio & Gallery Styles</li>\n <li>8 Blog Layouts</li>\n <li>One Page / Single Page websites</li>\n <li>600+ Google Fonts</li>\n <li>800+ Font Icons</li>\n <li>Sticky Header</li>\n <li>Unlimited Sidebars</li>\n <li>Comprehensive Documentation</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Oshine– Multipurpose Creative WordPress Theme', '', 'https://1.bp.blogspot.com/--8tzzxTFfIA/X6DY4GhYQzI/AAAAAAAAAys/smXby5Rl7bQsQk1_wDEF4DOqcURDWqxzgCLcBGAsYHQ/s590/Oshine-1.jpg', 'publish', 'open', '2021-04-02 04:39:12', 0),
(200, 1, '2020-11-03 09:47:05', 'Massive Dynamic, recently launched on the ThemeForest marketplace, is a brand new WordPress theme. There is certainly no lack of WordPress themes to choose from these days, but this theme is promoted by its developers as the Future of WordPress in a bid to try and differentiate Huge Dynamic from the competition.\n<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>Responsive and Retina ready</li>\n <li>Live Website Builder</li>\n <li>Unlimited Layouts</li>\n <li>Customizable Header Layout</li>\n <li>Left, right and double sidebar</li>\n <li>15 Header Styles</li>\n <li>70+ unique shortcodes</li>\n <li>WooCommerce Ready</li>\n <li>Notification Center</li>\n <li>More than $93 worth of included plugins such as Visual Composer, Revolution Slider, Master Slider and Go Pricing</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Massive Dynamic v8– WordPress Website Builder', '', 'https://1.bp.blogspot.com/-1DVM9IxxtsQ/X6Dab9cfP8I/AAAAAAAAAzI/Uw9E2hu_C7gkY2nsM5epO_clUNz9B3K9ACLcBGAsYHQ/s590/Massive-Dynamic-1.png', 'publish', 'open', '2021-04-02 04:42:33', 0),
(213, 1, '2020-11-03 11:48:33', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-0WMHBaJB7uE/YAlRxdE15TI/AAAAAAAACiI/vLKK65CEKPgaZGiPkEZTi03HBEGLlDwSQCLcBGAsYHQ/s1371/1611063197391.jpg\" width=\"549\" height=\"697\" />\r\n\r\nPuca is one of WooCommerce’s finest WordPress themes. Do you know that more than 56% of internet users choose a smartphone to surf the web? If you want your store to look amazing and load faster on smart phones, then Puca is an unrivalled option.\r\n\r\nPuca WordPress Theme comes with a smart & versatile mobile menu, 250+ pre-built pages, one-click demonstration setup, and more. This covers 14+ site designs and 10+ single feature info web models.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>300+ Unique & Beautiful Pages Design</li>\r\n <li>WordPress 4.9+ Ready</li>\r\n <li>WooCommerce 3.3 Ready</li>\r\n <li>Revolution Slider 5.4.x Ready</li>\r\n <li>WPBakery Page Builder 5.4.x Ready</li>\r\n <li>One Click Import Demo Data</li>\r\n <li>Modern minimalist design</li>\r\n <li>Optimize design for mobile</li>\r\n <li>RTL Language Support</li>\r\n <li>Social icon links</li>\r\n <li>4 Skin layouts</li>\r\n <li>600+ Google Web Fonts</li>\r\n <li>14+ Blog Layouts</li>\r\n <li>Child Theme included</li>\r\n <li>Demo Data xml file included</li>\r\n <li>Well documented</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>', 'Puca– Optimized Mobile WooCommerce theme', '', 'https://1.bp.blogspot.com/-_Aa0ZOfEpOo/X6D267RiApI/AAAAAAAAAz0/1OJbkb4EZxI3XGZMq4GLH60sr5Qd6XP6gCLcBGAsYHQ/s590/Puca.jpg', 'publish', 'open', '2021-04-02 04:39:12', 0),
(218, 1, '2020-11-03 12:09:27', '<h4><strong>Purchase Proof:</strong></h4>\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-Kde88s59DJk/X94A73Jkl-I/AAAAAAAAB_Q/AezVfp4sn4MKIwmKu1vMXmjbAlzohGsYACLcBGAsYHQ/s1427/1608384226874.jpg\" width=\"585\" height=\"773\" />\n<h4><strong>Theme Features:</strong></h4>\nWilcity should really be able to help you create a platform that is a valuable resource for your intended audience with loads of features to help your customers discover the sort of listings they’re most interested in. With a date filtration system, a live search feature, and categories and tags, you can give your users a range of ways to connect with your directory and communicate with your listings.\n<ul>\n <li>Add Directory Types</li>\n <li>One-Click Demo Install</li>\n <li>Advanced Rating and Reviews</li>\n <li>Perfect Dashboard</li>\n <li>Design Single Listing Page</li>\n <li>Designing Add Listing Fields for each Directory Types</li>\n <li>Google Map</li>\n <li>Paid Listings</li>\n <li>Multiple Payment Gateways</li>\n <li>Page Builders (King Composer)</li>\n <li>Half Map Featured Listings</li>\n <li>Business Hours Featured</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>\n \n\n ', 'Wilcity– Directory Listing WordPress Theme', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-kd_kwUKyHMA/X6D7DdlIBoI/AAAAAAAAA0Q/mH-Bv8Ood1gYD3G9s5iVERxe5UuEn8SxwCLcBGAsYHQ/s590/Wilcity-2.jpg', 'publish', 'open', '2021-04-02 04:39:12', 0),
(223, 1, '2020-11-03 12:17:27', '<h4><img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-0WMHBaJB7uE/YAlRxdE15TI/AAAAAAAACiI/vLKK65CEKPgaZGiPkEZTi03HBEGLlDwSQCLcBGAsYHQ/s1371/1611063197391.jpg\" width=\"571\" height=\"725\" /></h4>\n<h4><strong>Theme Features:</strong></h4>\nMyListing is a WordPress directory and listing theme that targets unique geographical locations.\nWith pre-built demos of popular capital cities from all over the world, MyListing might have been the theme you’re searching for if you want to build a local internet directory or website listings. Each demo has its own distinct designs while presenting a completely modern look and feel.\n\nThemeforest MyListing is a WordPress theme that gives you full liberty to create any form of website directory or listing. Design your front-end pages and watch your work take shape immediately.\n<ul>\n <li>MyListing uses Elementor page builder</li>\n <li>Advanced Listing Type Builder</li>\n <li>Over 50 Elementor widgets ready to use</li>\n <li>Listing Type editor with a beautiful and easy to use interface</li>\n <li>Custom Listing Profiles for each listing type</li>\n <li>Add unlimited listing types</li>\n <li>Custom Fields with powerful field editor for each listing type</li>\n <li>Powerful search facet editor, unique to each listing type</li>\n <li>Customize the listing preview box, uniquely for each listing type</li>\n <li>Customize the Explore page uniquely with custom facets for each listing type</li>\n <li>Bookmark Listings</li>\n <li>Bookings using TimeKit, Contact Form 7</li>\n <li>Listing Reviews</li>\n <li>Listing Ratings</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>\n \n\n ', 'MyListing– Directory & Listing WordPress Theme', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-fvXjaLRzEC8/X6D9bHnesDI/AAAAAAAAA0s/gKlt1G6530IyHrLTyaUw1x4rNw6bg3nkACLcBGAsYHQ/s590/MyListing.jpg', 'publish', 'open', '2021-04-02 04:39:11', 0),
(227, 1, '2020-11-03 13:10:01', '<h4><img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-59Z4_1UqaQs/YAlV8Zpz8kI/AAAAAAAACjA/FctydJhJkX8kO2BTkxHxMmVkkKvXWNMAgCLcBGAsYHQ/s1618/907%2B-%2BCopy.PNG\" width=\"557\" height=\"835\" /></h4>\n<h4><strong>InJob Theme Features:</strong></h4>\nInjob is a WordPress theme committed to the technical and employment market. It is a fast and SEO-friendly development with optimisation from Inwavethemes. Injob is widget-ready and sensitive to both design and code. It comes with customizable building components, video backgrounds, 2 homepages, and Parallax. A layout that adapts to both boxed and large formats as well as mobile screens will allow you to play.\n\n<strong>Theme features</strong>\n<ul>\n <li>Responsive and Retina ready</li>\n <li>Drag Drop layout with Visual Composer</li>\n <li>3+ Homepages demos</li>\n <li>Powerful theme options</li>\n <li>Unlimited Sidebars</li>\n <li>One-click data sample</li>\n <li>Unlimited Color Skins</li>\n <li>20+ Addons ready to use</li>\n <li>WPLM compatible</li>\n <li>RTL Supported</li>\n <li>SEO Friendly</li>\n <li>Boxed and Wide layout</li>\n <li>Header sticky zoom</li>\n <li>Parallax Image, Video Background</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>\n \n\n ', 'InJob | Multi-purpose for recruitment WordPress Theme', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-oMkOu7TejIU/X6EJHT00qOI/AAAAAAAAA1I/2P1fJADlZcoi7Ou-7FwKnzTD8FmhxiyUwCLcBGAsYHQ/s590/InJob-2.png', 'publish', 'open', '2021-04-02 04:39:11', 0),
(233, 1, '2020-11-03 13:19:55', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-0WMHBaJB7uE/YAlRxdE15TI/AAAAAAAACiI/vLKK65CEKPgaZGiPkEZTi03HBEGLlDwSQCLcBGAsYHQ/s1371/1611063197391.jpg\" width=\"585\" height=\"743\" />\r\n\r\nYou need a theme like Eduma for a website to exude professionalism and to have academic features. Eduma is one of Themeforest’s highest selling & one of the strongest WordPress education themes.\r\n\r\nUsing the drag & drop course creator, you can now design courses. With Elementor and WPBakery Page Builder drag & drop page builders, each of the 14+ demos can be easily customised. You get a free premium Paid Subscription plugin that saves you $30.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li><strong>100% Working theme and One Click Demo Import</strong></li>\r\n <li>Brilliant LMS Courses Management</li>\r\n <li>Lesson Management with powerful WordPress Core Editor</li>\r\n <li>PayPal, 2Checkout, Stripe, Offline Payment Methods integrated</li>\r\n <li>WooCommerce support</li>\r\n <li>Unlimited layouts and templates</li>\r\n <li>Paid Membership Pro support</li>\r\n <li>Easily manage the commission rate for each course</li>\r\n <li>BuddyPress support</li>\r\n <li>Co-instructors – multiple instructor support for each course</li>\r\n <li>bbPress support – for private course discussion between instructors</li>\r\n <li>Student Certificate on course completion</li>\r\n <li>Drag & Drop Page Builder</li>\r\n <li>Highly Performance Optimized</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>', 'Eduma- Education WordPress Theme', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-EDBR3jetPHs/YElQ7lQLGcI/AAAAAAAADBs/elnq6ZDECRw-7LG6qXEecT8oZEoEosC4ACLcBGAsYHQ/s885/00_cons.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:39:11', 0),
(240, 1, '2020-11-03 13:25:36', '<strong>Purchase Proof:</strong>\r\n\r\n<img src=\"https://1.bp.blogspot.com/-QsddLtJsYCA/X98aQXk4AYI/AAAAAAAACBA/YT-wUHx9ndEbyCzmGMadKPRHEDy_8M45gCLcBGAsYHQ/s1208/JobMonster.jpg\" />\r\n\r\nIn order to take the number one spot when it comes to money-making WordPress themes, REHub was developed. REHub definitely makes it easy to add ratings, comparisons, and other product display functionality to your WordPress website with a plethora of product display-related features.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>Powerful community functions and extended customizations for Buddypress, Mycred</li>\r\n <li>Deal sites and deal communities</li>\r\n <li>Front-end posting, front-end reviews, including limited submissions or paid submit</li>\r\n <li>Customizable filter panel for all post modules</li>\r\n <li>Social Community with submit option</li>\r\n <li>Coupon functions</li>\r\n <li>5 different design layouts for woocommerce</li>\r\n <li>Multi-vendor extended supported: Wc Vendor and Dokan, WC Marketplace are supported</li>\r\n <li>Price or product comparison theme with dynamic price updates</li>\r\n <li>Vendor stores locator and product/post map locator, vendor and user filters and categories</li>\r\n <li>Product comparisons</li>\r\n <li>Membership subscriptions and extended user role restrictions (works with S2Member plugin)</li>\r\n <li>Price comparison functions</li>\r\n <li>Extended moneymaking functions for earnings on affiliate programs</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>\r\n ', 'REHub– Multi vendor WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-48OQVR-Kyy0/X6ENduwz1OI/AAAAAAAAA1w/iQjUQKDBLFMCvpzR0NsSRVIz3w-Ss7xeACLcBGAsYHQ/s590/REHub-2.png', 'publish', 'open', '2021-04-27 10:30:33', 0),
(247, 1, '2020-11-03 13:41:21', 'If you are searching for the ideal WordPress theme from WooCommerce, Savoy is one of the best and best-selling WordPress themes on the market. The theme design is simple and classy and cleanly and beautifully shows your merchandise. With this theme, with the aid of the visual composer plugin, you can add seven different style headers and templates, making the job easier and faster.\n\n<strong>Theme Features:-</strong>\n<ul>\n <li>Minimalistic modern style</li>\n <li>Responsive Functional Smartphone Layout</li>\n <li>Completely AJAX activated shop (no necessary plugins)</li>\n <li>Rapid-view product</li>\n <li>Product Search allowed by AJAX</li>\n <li>Choice for Full-Width Layout</li>\n <li>Features of Advanced Header</li>\n <li>Product video featured</li>\n <li>Touch Sliders and Galleries Allowed</li>\n <li>Home-page completely customizable</li>\n <li>Mega-menu Multi Column</li>\n <li>“Product image for improved performance “lazy-loading</li>\n <li>Pop-up Modal Login/Register</li>\n <li>Optimized Pace and SEO</li>\n <li>Full-screen gallery with zoom/pan support for product images</li>\n <li>Ready Graphics Retina</li>\n <li>Mouse-over zoom/pan alternative for photos of items</li>\n <li>Coded using the new criteria and best practises</li>\n</ul>', 'Savoy– Minimalist AJAX WooCommerce Theme', '', 'https://1.bp.blogspot.com/-q6QU9dv7ihs/X6EQuuHT4qI/AAAAAAAAA2c/-sSz9Iw5GRMlZRKNFDX4gTIFW8t_0qVOgCLcBGAsYHQ/s590/Savoy.jpg', 'publish', 'open', '2021-04-02 04:39:10', 0),
(249, 1, '2020-11-03 18:37:23', '<strong>Purchase Proof:</strong>\r\n\r\n<img src=\"https://1.bp.blogspot.com/-U6GjA0y7Qh0/X-LjocLVFGI/AAAAAAAACDQ/hea3P-yuJeUmeFV4uTsU2bYsrxjfADcYgCLcBGAsYHQ/s1722/1608704744784.jpg\" />\r\n\r\nFor your WordPress classifieds website, AdForest has over 16 predefined homepage templates for you to choose from.\r\n\r\nNow in version 3.0, the newest update of AdForest offers you a whole new range of options to operate with on the website. You can import your favourite template with just a few clicks once you’ve browsed the numerous site demos. With so many different options available, you should be able to find an acceptable design here, regardless of what sort of listings and classifieds website you are making.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>1 Click Demo Import</li>\r\n <li>Rating & Reviews on ads</li>\r\n <li>Advance Search Added</li>\r\n <li>Google Map Locations</li>\r\n <li>Unlimited Custom Fields</li>\r\n <li>Visual Composer – Page Builder for WordPress</li>\r\n <li>Advanced Google map integration</li>\r\n <li>Radius Search Added</li>\r\n <li>3 type of Ad Search Pages added</li>\r\n <li>New header Styles added</li>\r\n <li>Different Sidebar Widgets</li>\r\n <li>Advertisement Spots</li>\r\n <li>Ajax Drag and Drop Image Uploader</li>\r\n <li>Featured Ads</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>', 'AdForest– Classified Ads WordPress Theme', '', 'https://1.bp.blogspot.com/-PIcI8fZkwrY/X6FWWNVAQ1I/AAAAAAAAA24/8Asssa1cG6Y9Uh2LhmCVEeb6qH1bC93twCLcBGAsYHQ/s590/AdForest-1.png', 'publish', 'open', '2021-07-10 11:13:07', 0),
(261, 1, '2020-11-03 18:56:37', 'For content marketing, ContentBerg is a dynamic and futuristic WordPress theme. If you run a marketing blog or some other technical publication, you’re going to love this WordPress template.\n\nContentBerg WordPress theme has a sleek style that will help the platform pop up with all the news and media. With widgets, the homepage can be arranged quickly. The layout driven by the widget lets you select precisely which content styles you want to view. To list a few choices, you can include posts from your most common categories, the latest posts from all categories, or posts with the most comments.\n<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>Handcrafted for all type of blogs and simple magazine sites</li>\n <li>10 Header Layouts</li>\n <li>Fully Responsive design with High Definition Retina graphics</li>\n <li>Multiple Footer Layouts</li>\n <li>Several Homepage Layouts for your blog</li>\n <li>Advanced Live Customizer Options</li>\n <li>Elegant and unique Featured Sliders</li>\n <li>Unique Logo for mobile devices</li>\n <li>Built-in Custom Widgets for perfect blog</li>\n <li>WordPress SEO by Yoast plugin compatible</li>\n <li>Multiple Post Formats Support</li>\n <li>Smooth Sticky Top Bar & Navigation</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>\n \n\n ', 'Contentberg v1.8.3– Content Marketing & Personal Blog', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-g0sPxInyH-A/X6FbNsEJa0I/AAAAAAAAA3g/Y-7StvNSXE00xpptEFYjR4GuYIk7tR3YACLcBGAsYHQ/s590/Contentberg-1.jpg', 'publish', 'open', '2021-04-02 04:39:10', 0);
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(265, 1, '2020-11-03 19:03:23', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-rKTfylEi4lo/X_k12OnhNRI/AAAAAAAACT8/m9_W7pInFd0oMa23_do_OFD_pp5XnDmSQCLcBGAsYHQ/s1468/1610167535275.jpg\" width=\"575\" height=\"782\" />\n\nMasterstudy is an innovative theme for teaching that is loaded with premium plugins that are well-integrated to save you dollars and create a better environment for both students and teachers.\n\nMasterstudy continues to be as helpful as it is striking, one of the better-looking instructional website themes out there. Online course options are the subject of this theme, whether for individual companies and tutors or as part of a large educational organization such as secondary education or a four-year research institution. Integration with the WooCommerce premium plugin makes it easier to list courses, and classes can be arranged depending on a number of different categories.\n\nThree templates for listing courses allow you to feature your courses as you see fit, including grid, chart, and single course, and a deadline style events calendar brings a sense of urgency to time-sensitive courses and seminars, which will help you attract more signups.\n<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>Responsive Layout on Bootstrap</li>\n <li>Masterstudy LMS Plugin for Online Courses</li>\n <li>One-click demo content import</li>\n <li>Offline Courses system with WooCommerce</li>\n <li>Paid ad Free courses</li>\n <li>Course purchasing with Paypal, Stripe</li>\n <li>Course Rating</li>\n <li>Selling Courses directly via PayPal & Stripe</li>\n <li>Selling Courses via Subscription or Membership using Paid Membership Pro</li>\n <li>Several Header options</li>\n <li>Theme Options with Redux framework</li>\n <li>Unlimited color options</li>\n <li>Revolution Slider included</li>\n <li>Parallax and Video Background</li>\n <li>880+ Google Fonts</li>\n <li>Visual Composer Pagebuilder</li>\n <li>Documentation included</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Masterstudy | Education WordPress Theme', '', 'https://1.bp.blogspot.com/-iIcpl7gCtf4/X6FcVaIJL-I/AAAAAAAAA38/-J75wcwmPe8HABGE3x3f7PgnfosmByh_wCLcBGAsYHQ/s590/Masterstudy-2.jpg', 'publish', 'open', '2021-04-02 04:39:10', 0),
(273, 1, '2020-11-04 06:47:34', 'Schema Pro Plugin makes it quick and easy to add rich snippets to your website. with help of this plugin, You can add your favourite setups of schema to all your pages and articles within a matter of minutes.\n<h4><strong>Item Features:</strong></h4>\n<ul>\n <li>Schema Types: Review, Local Business, Article, Service, Product, Course, Recipe, Person, Job Postings, Software Application, Book, Event, Video Object.</li>\n <li>and so much more… Click Live Demo to read complete plugin features</li>\n</ul>', 'Schema Pro- WordPress Plugin v2.2.1', '', 'https://1.bp.blogspot.com/-Ytcj7gVMYGM/X6IBor0QN6I/AAAAAAAAA4Y/t_vGrDWDSkw1ukZzN0dtor48v_IR27AmwCLcBGAsYHQ/s590/Schema-Pro.png', 'publish', 'open', '2021-04-02 04:42:33', 0),
(279, 1, '2020-11-04 11:50:52', '<img src=\"https://1.bp.blogspot.com/-GAoetKDc-AY/YGqKoooPZAI/AAAAAAAADHM/NoMUl1LL0EgUtW7MeOr4mxDUH-QQzMt_wCLcBGAsYHQ/s2048/IMG_20210404_235810_auto_x2%2B%25281%2529.png\" />\r\n\r\nWelcome to the most successful and extensible WordPress Visual Page Builder plugin! WPBakery is an easy-to-use drag-and-drop page maker that will help you develop every style that you can envision quickly and efficiently.\r\n\r\nWPBakery Page Developer, historically known as Visual Composer, is a prominent premium page builder. Many of this success derives from the fact that the WPBakery Page Builder is bundled with what seems to be 99 percent of the themes in ThemeForest. The reality remains, though, that it is used on a large amount of websites.', 'WPBakery Page Builder- for WordPress (formerly Visual Composer)', '', 'https://1.bp.blogspot.com/--bi3weVBpMM/X6JM-7ewrwI/AAAAAAAAA5I/5u9v9hHIxg4x-wVNtHsCk9VqJG_EbOANwCLcBGAsYHQ/s590/Visual-Composer.png', 'publish', 'open', '2021-07-16 08:11:08', 0),
(285, 1, '2020-11-04 14:44:00', 'Snax lets website visitors (frontends) and editors (backends) create quizzes, polls, charts, memes and other viral content.\r\n<h4><strong>Plugin Features:</strong></h4>\r\n<ul>\r\n <li>Let users create open lists themselves</li>\r\n <li>Dead-simple front-end uploader even your grandma can use</li>\r\n <li>Users can submit new list items (images or embeds from social media sites like YouTube, Instagram or Twitter)</li>\r\n <li>Users can upvote or downvote every submitted content</li>\r\n <li>Integrated pagination</li>\r\n <li>Integrated social sharing buttons</li>\r\n <li>Integration with WP QUADS plugin for custom ad locations</li>\r\n <li>Custom widget for displaying recently updated lists</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>', 'Snax – Viral Front-End Uploader', '', 'https://1.bp.blogspot.com/-e9dtvescGWw/X6JxoY5z3pI/AAAAAAAAA5k/OEh_ejGbTeYB_reaOsVUuS3KjJnOsFVggCLcBGAsYHQ/s590/Snax.png', 'publish', 'open', '2021-04-03 11:19:22', 0),
(291, 1, '2020-11-04 14:49:32', 'WooCommerce Wallet plugin is a WordPress plugin that helps the customers to spend from their wallets with the funds they already have deposited in their account.\n\nBy default, the wallet dashboard only shows to customers who have at least one wallet transition, you can change this from the Settings page and make a dashboard listing of all users.\n\nThe admin can add funds, remove funds, or lock the wallet of the user, and the locked wallet may not be used to check out.\n<h4><strong>Plugin Features:</strong></h4>\n<ul>\n <li>The admin can add fund, withdraw funds or lock the wallet’s balance</li>\n <li>Cashback System</li>\n <li>Add Funds</li>\n <li>Refund Requests</li>\n <li>Transactions History</li>\n <li>Partial Payments</li>\n <li>Credit Products</li>\n <li>Deposits System</li>\n <li>and so much more… Click the Live Demo button to read more details</li>\n</ul>', 'WooCommerce Wallet v2.6.5– WordPress Plugin', '', 'https://1.bp.blogspot.com/-1oMfFRztMb0/X6JybUamUfI/AAAAAAAAA5s/M-xuFdrgnBE5phKT3u9qNXEWbhi1829PQCLcBGAsYHQ/s590/WooCommerce-Wallet.jpg', 'publish', 'open', '2021-04-02 04:42:33', 0),
(295, 1, '2020-11-04 14:54:09', 'All the most addictive features of social media and community forums have been gathered by the Thrive Comments Plugin and added to your WordPress comments, providing an enticing platform for your audience to engage with your blog.\n\nA collection of monitoring resources that help you get to know your audience comes with Thrive Comments. Extensive guest activity monitoring over time – so you can see how you are improving, and stats on the most popular commentators – so you can recognise your real fans. In terms of comment engagement, explore the most popular threads – so you know what subjects really have your readers riled up.\n\nUp-votes and down-votes encourage you to reach into the silent majority, providing a no-fuss way to give your voice to the less engaged guests.\n<h4><strong>Item Features:</strong></h4>\n<ul>\n <li>Assign Users Badges</li>\n <li>Up-Vote & Down-Vote</li>\n <li>Display Featured Comments</li>\n <li>Comment Boosting Design</li>\n <li>Post From Social Accounts</li>\n <li>Social Sharing</li>\n <li>Subscribe to a Post’s Comments</li>\n <li>Auto Generate Visitor Information</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Thrive Comments v1.4.9.2 – WordPress Plugin', '', 'https://1.bp.blogspot.com/-wwO-iSoDY2k/X6Jzizqq3pI/AAAAAAAAA54/0kk6ZShk5YkL8hCISE8gWCz13ihn6_g6QCLcBGAsYHQ/s1348/Thrive-Comments.png', 'publish', 'open', '2021-04-02 04:42:33', 0),
(302, 1, '2020-11-04 15:01:09', 'Discover how bringing to your campaign the “fear of missing out will raise your sales volume like nothing else:\n\nImagine getting a sales funnel for each person prospect that joins it, operating a highly tailored, time-limited bid. That is exactly what Thrive Ultimatum’s evergreen campaign has been doing. Every new target has its own countdown and time limit, and your time-limited campaign is viewed by each prospect as if it were a normal campaign with a set end date.\n\nThe Lockout feature ensures that even if a guest changes devices, using new devices or cleans their cookies, the countdown still stays valid.\n<h4><strong>Item Features:</strong></h4>\n<ul>\n <li>100% Customizable Design</li>\n <li>Easy Fixed Date Campaigns</li>\n <li>Automatically Recurring Campaigns</li>\n <li>The Ultimate Evergreen System</li>\n <li>Expiring Links</li>\n <li>Bulletproof Tracking</li>\n <li>Unlimited Campaigns</li>\n <li>Countdown Widget</li>\n <li>Floating Footer Bar</li>\n <li>Campaign Templates</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>\n<div class=\"stream-item stream-item-below-post-content\"></div>', 'Thrive Ultimatum v2.3.3.3 – WordPress Plugin', '', 'https://1.bp.blogspot.com/-QFtzT-7vuvY/X6J1E7n2u_I/AAAAAAAAA6U/yL3zqxUF0qoOJFV3v_pHthpAmjPwoFclgCLcBGAsYHQ/s1200/Thrive-Ultimatum.png', 'publish', 'open', '2021-04-02 04:42:33', 0),
(306, 1, '2020-11-04 15:05:30', '', 'Thrive Ovation v2.3.8.1 – WordPress Plugin', '', 'https://1.bp.blogspot.com/-njAQjb39e9w/X6J2WkxnkHI/AAAAAAAAA6g/vNpLBDGRc1EC0EM6f55CeCCsIrmfZn4WwCLcBGAsYHQ/s1200/Thrive-Ovation.png', 'publish', 'open', '2021-04-02 04:42:33', 0),
(312, 1, '2020-11-04 15:11:35', '', 'Thrive Apprentice v2.3.3.3 – WordPress Plugin', '', 'https://1.bp.blogspot.com/-TrTdV7Uz4mE/X6J4vcHsPnI/AAAAAAAAA7M/GElCn3GJN1ghRZ-K8ONrjeSplg5a7rnQQCLcBGAsYHQ/s500/Thrive-Apprentice.jpg', 'publish', 'open', '2021-04-02 04:42:32', 0),
(316, 1, '2020-11-04 15:18:25', '', 'Bookly PRO v3.0 – Appointment Booking and Scheduling Software System', '', 'https://1.bp.blogspot.com/-2d5MVLTDyj8/X6J5GKd37wI/AAAAAAAAA7U/7Gu0QDW43885w-UDPglM8BWzktuxiFmEwCLcBGAsYHQ/s590/Bookly-PRO.jpg', 'publish', 'open', '2021-04-03 16:27:33', 0),
(320, 1, '2020-11-04 15:25:50', '', 'SEOPress Pro v3.9.1– WordPress SEO Plugin', '', 'https://1.bp.blogspot.com/-Pt9kSnQ7zYQ/X6J7HaI4_4I/AAAAAAAAA7w/ijV0YySQZ_U4eozL-vL7STQoXyveOkR2QCLcBGAsYHQ/s1200/SEOPress-Pro.png', 'publish', 'open', '2021-04-02 04:42:32', 0),
(341, 1, '2020-11-05 08:15:51', '', 'The Issue v1.5.4.2 – Versatile Magazine WordPress Theme', '', 'https://1.bp.blogspot.com/-ouwXj0Ro0o8/X6NkX6Ul7kI/AAAAAAAAA8M/f2DOEm3og-4bmp6UYmZq3CrbQcxr76_XwCLcBGAsYHQ/s590/The-Issue-1.jpg', 'publish', 'open', '2021-04-02 04:39:10', 0),
(345, 1, '2020-11-05 08:19:45', '<strong>Purchase Proof-</strong>\n\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-Iw2aFetQMkg/X6pqui29X2I/AAAAAAAABGw/BDzIFm5tX-Ee0xPMeOm84kAAvXgNPZGngCLcBGAsYHQ/s1228/soledad%2Band%2Bthe%2Bfox.png\" width=\"572\" height=\"503\" />\n\n ', 'Soledad– Multi-Concept Blog Magazine WordPress Theme', ' \n\n \n\n \n\n \n\n \n\n \n\n \n\n ', 'https://1.bp.blogspot.com/-EcSl1uX26uE/X6Non1hOU8I/AAAAAAAAA8o/oib1cektNoI_suarvdyXzbwKQRefChVEACLcBGAsYHQ/s590/Soledad.jpg', 'publish', 'open', '2021-04-02 04:39:10', 0),
(351, 1, '2020-11-05 08:32:45', '', 'Zeen v3.9.7 | Next Generation Magazine WordPress Theme', '', 'https://1.bp.blogspot.com/-xHECXMqvtfU/X6Nrk32S9OI/AAAAAAAAA9E/63EQsIaTsRgHhKUgO1RHV-VQ5e82HgxrACLcBGAsYHQ/s590/Zeen-1.jpg', 'publish', 'open', '2021-04-02 04:39:09', 0),
(361, 1, '2020-11-05 08:52:06', '<strong>MagPlus</strong> = Blog/Magazine/News/Review and more (40+ demos) + AMP (5x faster loading in mobile) + Elementor + Custom cache system (2.4x faster) + GDPR Compliant + AdSense + WPML (translation ready) + RTL (Arabic, Hebrew, etc.) + 100% Responsive + WooCommerce + Tons of features + Gutenberg Optimized + SEO optimized + 160+ Elements & Modules + Unlimited Layouts + 7 Premium plugins for free + Lifetime free updates.\n\n<strong>Purchase Proof:</strong>\n\n<img src=\"https://1.bp.blogspot.com/-0dnaq5mt1Jk/X93glnzql3I/AAAAAAAAB9g/cem6lz0-Lp0P6lRXQIzEjJRzwZlmM0ciwCLcBGAsYHQ/s1176/1608374001895.jpg\" />', 'MagPlus v6.2 – Blog, Magazine Elementor WordPress Theme', '', 'https://1.bp.blogspot.com/-Tch09u-CAZM/X6Nwj5BhNAI/AAAAAAAAA9o/QeEwRmx8rAsgMxouO-KDVaIjKVpMUJ_ugCLcBGAsYHQ/s590/MagPlus-1.png', 'publish', 'open', '2021-04-02 04:39:09', 0),
(367, 1, '2020-11-05 09:18:40', '', 'Gridlove v1.9.7 – Creative Grid Style News & Magazine WordPress Theme', '', 'https://1.bp.blogspot.com/-yH2x_lGbaGI/X6N1-k2na3I/AAAAAAAAA-E/WePm48ctuWYrZ-I85v00Zb4ggxXhjda2wCLcBGAsYHQ/s590/Gridlove-1.jpg', 'publish', 'open', '2021-04-02 04:39:09', 0),
(372, 1, '2020-11-05 09:25:41', 'PenNews is a strong PenciDesign WordPress theme. This theme lets you build a new site in such a short time by drag-and-drop with fantastic designs. We also give you great support and friendly assistance. You can use this theme for any reason – to build stuff like the way you love.\r\n\r\n<strong>Purchase Proof:</strong>\r\n\r\n<img src=\"https://1.bp.blogspot.com/-K0GhJHgj97g/X93Xk0JyQbI/AAAAAAAAB8c/_6gQtJ4fiK07xQsc1TT5c9z00747-fwFgCLcBGAsYHQ/s1411/1608374001889.png\" />', 'PenNews v6.5.9 - Multi-Purpose AMP WordPress Theme', '', 'https://1.bp.blogspot.com/-QSlOWNpK6_w/X6N3bb7bmDI/AAAAAAAAA-Q/ONTMQ2dCSNoW2qHeo7ncvrEk8P-lo_FUACLcBGAsYHQ/s590/PenNews-1.jpg', 'publish', 'open', '2021-07-03 17:55:30', 0),
(376, 1, '2020-11-05 09:30:48', '', 'Opinion v1.0.3 – Modern News & Magazine Style WordPress Theme', '', 'https://1.bp.blogspot.com/-AM5bvWjXVtY/X6N50CFrKOI/AAAAAAAAA-8/faUeFIV0Pas3_QR1fBleDmduntFd6Ch4gCLcBGAsYHQ/s590/Opinion.png', 'publish', 'open', '2021-04-02 04:39:08', 0),
(392, 1, '2020-11-06 11:12:25', '<p style=\"box-sizing: border-box; margin: 0px 0px 20px; padding: 0px; color: #545454; font-family: \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 16px;\">Workreap is a Freelance Marketplace WordPress theme with some exciting features and excellent code quality. It has been designed and developed after thorough research to cater the requirements of people interested in building freelance marketplace or other similar projects. The design is contemporary but at the same time it focuses on the usability, visual hierarchy and aesthetics to ensure easy navigation for the end users.</p>\n<p style=\"box-sizing: border-box; margin: 0px 0px 20px; padding: 0px; color: #545454; font-family: \'Helvetica Neue\', Helvetica, Arial, sans-serif; font-size: 16px;\">This system would allow the freelancers and employers to register and create their profiles in few simple steps. Once the task is posted on the marketplace, the freelancers would have the option to submit their proposals for employer to review. Once a proposal is accepted, employer would be required to make the payment which would be received by the admin but it will also be shown in the wallet system of that freelancer after deduction of admin’s commission under the pending payments section. Once the project is completed and approved by the employer, that amount will move from pending balance section to available balance in freelancer’s wallet. The commission system would enable the admin to monetize this system.</p>', 'Workreap v1.7.8- Freelance marketing and directory theme', '<h4><strong>Theme Features:</strong></h4>\n<ul>\n <li>100% Fully Responsive</li>\n <li>WooCommerce Payments Gateways</li>\n <li>Powerful search for Jobs, Freelancers and Employers</li>\n <li>One Click Demo Import</li>\n <li>Unlimited Colors</li>\n <li>Powerful Email template settings</li>\n <li>Favorite Jobs, Freelancers and Employers listings</li>\n <li>Powerful Admin Panel</li>\n <li>Powerful Theme Options</li>\n <li>One Click User Import using excel sheet</li>\n <li>Featured Jobs, Freelancers</li>\n <li>Moderation System for Reviews</li>\n <li>Powerful freelancers, employers and jobs detail pages</li>\n <li>Drag & Drop Page Builder</li>\n <li>Unlimited Packages Management with WooCommerce Payments</li>\n <li>Reviews Management</li>\n <li>Translation Ready</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'https://1.bp.blogspot.com/-56Vt3gn9WXA/X6ThONn3FcI/AAAAAAAAA_c/QtFt6mu3ahkqyeAtCHrEkMQQeXZg_XQUgCLcBGAsYHQ/s590/Workreap-1.jpg', 'publish', 'open', '2021-04-02 04:39:08', 0),
(397, 1, '2020-11-06 11:23:17', '<strong>Purchase Proof:</strong>\r\n\r\n<img src=\"https://1.bp.blogspot.com/-U6GjA0y7Qh0/X-LjocLVFGI/AAAAAAAACDQ/hea3P-yuJeUmeFV4uTsU2bYsrxjfADcYgCLcBGAsYHQ/s1722/1608704744784.jpg\" />\r\n\r\nUrna is a versatile and customizable WooCommerce Multi-Store WordPress Theme that instals and modifies any item in a matter of minutes through Powerful Theme Options. Urna is the best of our premium style, so you\'re sure to be pleased with it.', 'Urna v2.2.2– All-in-one WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-9nWWij09BoM/X6TlND2FzcI/AAAAAAAAA_4/V1oepUqz6WMFaVbOD-An2OdSkUiCY-KTACLcBGAsYHQ/s590/Urna.jpg', 'publish', 'open', '2021-07-23 12:19:57', 0),
(401, 1, '2020-11-06 11:28:22', '<strong>Purchase Proof:</strong>\r\n\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-QsddLtJsYCA/X98aQXk4AYI/AAAAAAAACBA/YT-wUHx9ndEbyCzmGMadKPRHEDy_8M45gCLcBGAsYHQ/s1208/JobMonster.jpg\" width=\"585\" height=\"654\" />\r\n\r\n ', 'Olympus– Powerful BuddyPress Theme for Social Networking', ' \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-RQtkX-79hkM/X6TmKqRNLbI/AAAAAAAABAA/96J8DyywtwYgpKnIoZef6MDd_z3eXljwACLcBGAsYHQ/s590/Olympus-1.jpg', 'publish', 'open', '2021-04-19 14:44:51', 2),
(406, 1, '2020-11-06 11:34:15', '', 'AmyMovie – Movie and Cinema WordPress Theme', '', 'https://1.bp.blogspot.com/-2Vk7PeN4QaE/X6Tn1u7ZTNI/AAAAAAAABAM/T6hvOR9ykesrxRJ8zjOzRcaOGepl9_pWwCLcBGAsYHQ/s590/AmyMovie.jpg', 'publish', 'open', '2021-07-09 14:21:54', 0),
(411, 1, '2020-11-06 11:39:29', 'GreenMart is an Organic & Food WooCommerce WordPress Theme that is versatile and customizable through Powerful Theme Options to set and modify any elements in minutes, you can also very quickly and easily customize Google fonts without coding.\r\n\r\nGreenMart, originally designed for the Food & Organic Online Store, can be used for different purposes. GreenMart is completely compliant with all the SEO standards that allow your company to search for a high rating on Google Search. Each GreenMart page is completely sensitive, so regardless of various screen devices such as desktop, tablet, and smartphone, it can be accessed easily. All that makes it an interesting shopping experience for your customers.\r\n\r\n<strong>Purchase Proof:</strong>\r\n\r\n<img src=\"https://1.bp.blogspot.com/-Kde88s59DJk/X94A73Jkl-I/AAAAAAAAB_Q/AezVfp4sn4MKIwmKu1vMXmjbAlzohGsYACLcBGAsYHQ/s1427/1608384226874.jpg\" />\r\n\r\n \r\n\r\n ', 'GreenMart – Organic & Food WooCommerce WordPress Theme', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-_whYQMhbFOY/X6TogDA-bXI/AAAAAAAABAk/2XeQTAYV8pIDkNr3Ks3mKabGuezcVnAMACLcBGAsYHQ/s590/GreenMart.jpg', 'publish', 'open', '2021-05-22 18:53:21', 0),
(416, 1, '2020-11-06 11:43:23', '', 'Cena Store v2.10.1 – Multipurpose WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-IXpLCqB-Y0A/X6TqhDH9qKI/AAAAAAAABBA/ZPiN5OnEQaItgDhqt0LpKMkJH2I0Uo3kQCLcBGAsYHQ/s590/Cena-Store.jpg', 'publish', 'open', '2021-04-02 04:39:07', 0),
(427, 1, '2020-11-06 20:21:40', '', 'The Official Facebook Chat Plugin', '', 'https://ps.w.org/facebook-messenger-customer-chat/assets/screenshot-1.png?rev=2398892', 'publish', 'open', '2021-04-02 04:42:32', 0),
(434, 1, '2020-11-08 07:00:42', ' \n\n ', 'Bridge– Creative Multipurpose WordPress Theme', ' \n\n ', 'https://1.bp.blogspot.com/-W7I5hIREi00/X6dLEKOe-KI/AAAAAAAABCA/76HLuOwlJKs4Pp193LNMb6MoTCZvxKS4QCLcBGAsYHQ/s590/Bridge.png', 'publish', 'open', '2021-04-02 04:39:07', 0),
(439, 1, '2020-11-08 07:59:45', 'Divi is our flagship theme and visual page builder. It\'s the most widely-used premium WordPress theme in the world according to stats from BuiltWith.com. Divi is more than just a theme, it\'s a website building framework that makes it possible to design beautiful websites without ever touching a single line of code and without installing and configuring dozens of disjointed plugins. We think this is the future of WYSIWYG and it\'s unlike any WordPress theme you have ever used before.', 'Divi Theme- WordPress Theme By Elegant Themes', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-okMn7saxZ1A/X6dcpXg5vvI/AAAAAAAABCc/Gm6tG4ekoj8ZvI0fRPJGH8IG_rLLVFUnACLcBGAsYHQ/s768/Divi-Review-Theme-Page-768x437.jpg', 'publish', 'open', '2021-04-02 04:39:07', 0),
(445, 1, '2020-11-08 08:27:26', 'You\'ve never built a WordPress website like this before. Divi is more than just a WordPress theme, it\'s a completely new website building platform that replaces the standard WordPress post editor with a vastly superior visual editor. It can be enjoyed by design professionals and newcomers alike, giving you the power to create spectacular designs with surprising ease and efficiency.\r\n\r\n ', 'Divi Builder- Drag & Drop Page builder By Elegant Themes', ' \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-8j1_bAGbzh4/YET5qTuljgI/AAAAAAAADAU/gHwr3D-uKjw5x_zSncdEERw9sPjSrRF8gCLcBGAsYHQ/s885/YITH-WooCommerce-Automatic-Role-Changer.png', 'publish', 'open', '2021-04-02 04:42:32', 0),
(452, 1, '2020-11-08 08:41:48', '', 'Bloom- Elegant Themes Email Opt-Ins', '', 'https://1.bp.blogspot.com/-OFiqHrvMU6M/X6dhyBsQcNI/AAAAAAAABDU/ilTHgmYS6fkJIw8hHF-UthWfHpZqizujgCLcBGAsYHQ/s780/Elegant-Themes-Bloom-Plugin.jpg', 'publish', 'open', '2021-04-02 04:42:32', 0),
(459, 1, '2020-11-08 08:57:08', '', 'WPForms– Drag & Drop WordPress Form Builder', '', 'https://1.bp.blogspot.com/-dFx59dNSbSU/X6dmWP-Q3cI/AAAAAAAABDw/a0dxlcNd7SAxN-pFyXWKB8UIX4KiP94eQCLcBGAsYHQ/s590/WPForms.png', 'publish', 'open', '2021-09-04 14:25:20', 0),
(473, 1, '2020-11-10 14:48:27', 'Porto WordPress is the ultimate business & woocommerce WordPress theme that is perfect for any business and woocommerce platform. Porto has a lot of elements and versatile features that can customise anything you want. Compared to the general e-commerce features of other multi-purpose themes, Porto offers the ultimate woocommerce features with unique skins & layouts and features. Porto guarantees super fast performance that is important for your company & woocommerce stores.\n\n<strong>Purchase Proof:</strong>\n\n<img src=\"https://1.bp.blogspot.com/-BRSEscWghrs/X6pZFSSSx3I/AAAAAAAABGM/C5jz1h5m_yQPIKCbmvDe8PD23mglJ-3JwCLcBGAsYHQ/s2048/PicsArt_11-10-02.35.05.jpg\" />\n\n ', 'Porto | Multipurpose & WooCommerce Theme', ' \n\n ', 'https://1.bp.blogspot.com/-jV7zFzIgfdw/X6pZFh-aLLI/AAAAAAAABGY/e1KkwfvCDtchHHEYX8jBd9vn5_JMT4ERgCPcBGAYYCw/s590/Porto.png', 'publish', 'open', '2021-04-02 04:39:06', 0),
(478, 1, '2020-11-10 16:07:14', '<strong>Purchase Proof:</strong>\n\n<img src=\"https://1.bp.blogspot.com/-Iw2aFetQMkg/X6pqui29X2I/AAAAAAAABGw/BDzIFm5tX-Ee0xPMeOm84kAAvXgNPZGngCLcBGAsYHQ/s1228/soledad%2Band%2Bthe%2Bfox.png\" />', 'TheFox | Responsive Multi-Purpose WordPress Theme', '', 'https://1.bp.blogspot.com/-2yCkP5O81DY/X6preNwEE8I/AAAAAAAABG4/JpMDG9B4rzwldWemKos_8uQlchBeRkxGgCLcBGAsYHQ/s590/TheFox.jpg', 'publish', 'open', '2021-04-02 04:39:06', 0),
(521, 1, '2020-11-12 08:28:54', '<strong><img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-59Z4_1UqaQs/YAlV8Zpz8kI/AAAAAAAACjA/FctydJhJkX8kO2BTkxHxMmVkkKvXWNMAgCLcBGAsYHQ/s1618/907%2B-%2BCopy.PNG\" width=\"526\" height=\"788\" /></strong>\n\nBASEL is a professional minimalist AJAX responsive theme designed to construct a modern, strong e-commerce website. You are able to create a heavy store that looks perfect on any screen resolution using the popular Drag & Drop page builder, several theme settings and options, premium sliders and WooCommerce.', 'Basel– Responsive eCommerce Theme', '', 'https://1.bp.blogspot.com/-0b9zvYE_aTs/X6ykXZq3BiI/AAAAAAAABIM/GRWErmZg8sYWpKTRQ90VivinfxsFFVTjwCLcBGAsYHQ/s590/Basel.jpg', 'publish', 'open', '2021-04-02 04:39:06', 0),
(567, 1, '2020-11-18 07:49:05', '', 'Amely v2.6.5 – eCommerce WordPress Theme for WooCommerce', '', 'https://1.bp.blogspot.com/-mtoauQ4QBrw/X7SD3VRWZXI/AAAAAAAABIo/lqew7RbnQc4dsGadcqMi6woIxsZb7utlQCLcBGAsYHQ/s590/Amely-1.jpg', 'publish', 'open', '2021-04-02 04:39:06', 0),
(578, 1, '2020-11-18 08:16:41', 'Now your construction site can run as fast as an eagle with smooth performance and optimized search engine optimization. All built-in premium plugins, WPBakery Page Builder, Revolution Slider, Essential Grids are updated to improve their performance. In addition, the issue of demo import, WordPress 5.0, and Gutenberg compatibility have been resolved. Users can be assured now that the new Structure update has provided all the best things your site will need.\n\nWordPress Construction Theme | Structure is a WordPress responsive construction theme for building service companies such as construction, engineering, architecture website. Based on the needs of the construction site, the Structure provides a professional and clear design for your web site.', 'Structure– Construction Industrial Factory WordPress Theme', '', 'https://1.bp.blogspot.com/-AVgKCRJvWDk/X7SL0BnD3II/AAAAAAAABJE/sHh3VEZyRWEhw5Pih-E0NQl1_5UmhmGWQCLcBGAsYHQ/s590/Structure-1.jpg', 'publish', 'open', '2021-04-02 04:39:06', 0),
(580, 1, '2020-11-18 08:49:03', '', 'Chromium v1.3.16 – Auto Parts Shop WordPress WooCommerce Theme', '', 'https://1.bp.blogspot.com/-kU_fo4Nt-I8/X7SS-5gCTAI/AAAAAAAABJg/gZKxZjE2lB0DkpASU7fiFjBAwDFYgqeEACLcBGAsYHQ/s590/Chromium.jpg', 'publish', 'open', '2021-04-02 04:39:05', 0),
(599, 1, '2020-11-18 11:56:51', 'Dooplay is undoubtedly the best and most powerful framework, with access to a large volume of content with a single click, completely optimized.\r\n\r\nDooPlay was designed to make the work of creating content easier by using powerful tools that include data, texts, and images from very credible sources. It also provides you with all of the options to customise your website without touching lines of code.\r\n\r\nDooplay 2.5.2 has a persistent cache system that helps you to limit database queries, it is the fastest and most reliable version we have achieved, and it also has fresh and enhanced options that will give you complete control over your website.\r\n\r\nDbmovies, our import tool, has also undergone significant improvements, allowing for easier access to a vast amount of material in multiple languages.', 'DooPlay theme (With IMDB API) - WordPress theme for movies and TVShows', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-wKA_5mEGUpY/X7TBPzUDHDI/AAAAAAAABJ8/luYbD1P5DqIoi1HxbLpzZU3OY9svZ36gACLcBGAsYHQ/s763/dooplay-peru-preview.png', 'publish', 'open', '2021-04-25 11:58:20', 0),
(607, 1, '2020-11-18 12:31:24', 'Solution for all of you who have a downloadable blog but want to use Adsense on one that breaks the Adsense policy. The WP Safelink WordPress Plugins are the answer to the issue you\'re having right now.\r\n\r\nWP Safelink is a WordPress plugin that will help you earn hundreds or even thousands of dollars from your blog or website.\r\n\r\nBecause of the AdSense installation, there might be many people who are unaware of how to make money from a download blog.\r\n\r\nHow is it possible to install Adsense on a download blog??\r\n\r\nOf course, you can, as long as you know-how, and this approach has been commonly used by other bloggers, so do you want to disregard the Adsense results and miss out on this method? You risk getting a banned Adsense account if you get Adsense money from pirated download blogs.\r\n\r\n \r\n\r\n ', 'WP Safelink– Link to Adsense Converter (With key)', ' \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-NDlo5IwohgA/X7THuC9YQrI/AAAAAAAABKY/rYULcEMtxj8EmBO_st9r_3bS4_OL6yGUACLcBGAsYHQ/s1024/1_9Bvwmv79Yljwy--_WtrBUA.jpeg', 'publish', 'open', '2021-05-24 10:28:18', 0),
(620, 1, '2020-11-18 14:57:15', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-fgry45VYmjU/YAlPoQT4n-I/AAAAAAAACh8/FgDhzBPKneozKsACMcLfFQielwBhSF3TgCLcBGAsYHQ/s1562/1611147114419.png\" width=\"509\" height=\"737\" />', 'Spotlight - Feature-Packed News & Magazine WordPress Theme', '', 'https://1.bp.blogspot.com/-44R9kwwwDmI/X7Tm_JmZpoI/AAAAAAAABK4/hhOBguVrgB0cZ43Zyjp_OawHV2cBWK9fgCLcBGAsYHQ/s590/Spotlight-1.jpg', 'publish', 'open', '2021-04-02 04:39:05', 0),
(669, 1, '2020-11-19 08:55:48', 'Apress Theme is the culmination of over 20 months of tireless work by our team of designers and developers. It is packed with state-of-the-art technology and designed with the user in mind to ensure endless freedom to build and customize your site as a pro and without any coding.\n\n<strong>Purchase Proof:</strong>\n\n<img src=\"https://1.bp.blogspot.com/-K0GhJHgj97g/X93Xk0JyQbI/AAAAAAAAB8c/_6gQtJ4fiK07xQsc1TT5c9z00747-fwFgCLcBGAsYHQ/s1411/1608374001889.png\" />\n\n ', 'Apress- Responsive Multi-Purpose Theme', ' \n\n ', 'https://1.bp.blogspot.com/-u5srf3rfLmk/X7Xlga_AMRI/AAAAAAAABLU/h54lWwz6b_AQtEHx-Pc5KaTndo-RSmIpACLcBGAsYHQ/%255Bthemeforest.net%255D%255B181%255Dpreview-590x300.__large_preview.png', 'publish', 'open', '2021-04-02 04:39:05', 0),
(684, 1, '2020-11-19 09:18:57', 'WoodMart is a premium theme designed for building WooCommerce online stores that offer a super-fast interface for the ultimate user experience.\n\n\'WoodMart\' is a premium WordPress theme built from the ground up to create supreme WooCommerce online stores of any sort. Based on user experience, WoodMart uses powerful AJAX technology to offer users a quick and seamless online shopping interface without the need to constantly refresh their pages.\n\nCreate some kind of online store that you can imagine and start earning that passive revenue stream that you\'ve been dreaming about with \'WoodMart\' for WordPress, and never look back.\n\n<strong>Purchase Proof:</strong>\n\n<img src=\"https://1.bp.blogspot.com/-K0GhJHgj97g/X93Xk0JyQbI/AAAAAAAAB8c/_6gQtJ4fiK07xQsc1TT5c9z00747-fwFgCLcBGAsYHQ/s1411/1608374001889.png\" />', 'WoodMart– Responsive WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-5itrxc4fX2o/X7XsTd3mX1I/AAAAAAAABLw/hMytOrNPWU0crARwoEuPHuceV2RSkhr_QCLcBGAsYHQ/01_theme-preview.jpg', 'publish', 'open', '2021-04-02 04:39:04', 0),
(689, 1, '2020-11-19 09:58:33', '', 'Saasland WordPress Theme', '', 'https://1.bp.blogspot.com/-aw64ZPkhv_c/X7X1ZPrNLeI/AAAAAAAABMM/c8z_hgLWSnYlbn3nQ-HEXJujF4KiwbgzgCLcBGAsYHQ/s590/01_Preview.jpg', 'publish', 'open', '2021-04-02 04:39:04', 0),
(695, 1, '2020-11-19 10:11:30', 'Motors for WordPress lets you create a feature-packed website for any car and boat company, with 17+ stunning premade demos ready to fuel your success.\r\nThe primary goal of making WordPress Motors was to fulfill the needs of the automotive industry. WordPress engines do this in a special way: Demo Car Dealership, Demo Directory & Listings, Demo Car Repair/Mechanics Service, Car Rental, Demo Boat Dealership, Car Magazine & Motorcycle Dealership Demo.\r\n<h3 id=\"item-description__key-features\">Key Features:</h3>\r\n<ul>\r\n <li>Full Localization on Arabic, French, German, Italian, Portuguese, Spanish, Dutch, Turkish</li>\r\n <li>5 Pre-defined color skins, and unlimited colors with color picker</li>\r\n <li>Advanced Inventory Manager</li>\r\n <li>Pay Per Listing system</li>\r\n <li>Rent a Car – Discount system.</li>\r\n <li>Rent a Car – Custom Prices for specific periods.</li>\r\n <li>Rent a Car – Per Hour Pricing.</li>\r\n <li>Rent a Car – Custom Date Format for the Calendar.</li>\r\n <li>Email Templates Manager.</li>\r\n <li>Automanager XML Inventory import</li>\r\n <li>GDPR plugin included</li>\r\n <li>5 Inventory Listing Templates</li>\r\n <li>Customizable vertical & horizontal banners</li>\r\n <li>CSV/XML import of inventory</li>\r\n <li>Sell a Car feature</li>\r\n <li>38 Custom Stylemix Shortcodes</li>\r\n <li>Finance & Loan Calculator</li>\r\n <li>Revolution Slider included</li>\r\n <li>Responsive Layout on Bootstrap</li>\r\n <li>Vehicle Comparison Feature</li>\r\n <li>800+ Google Fonts</li>\r\n <li>Visual Composer Pagebuilder</li>\r\n <li>24/7 Professional Support</li>\r\n <li>Documentation with Video tutorials included</li>\r\n <li>WooCommerce Shop</li>\r\n <li>Full & Boxed Layout</li>\r\n <li>WPML localization support</li>\r\n <li>One-click demo content import</li>\r\n <li>Audio & Video embed</li>\r\n <li>PSD files are included</li>\r\n <li>Cross-Browser Compatibility: FireFox, Safari, Chrome, IE10+</li>\r\n</ul>', 'Motors– Car Dealer and Rental, Classified WordPress theme', '', 'https://1.bp.blogspot.com/-8542JtaiG38/X7X3xDGigdI/AAAAAAAABMo/eCENL5E5PBUs7TPifLpc9ItZ7RMfLiJPgCLcBGAsYHQ/00_motors_normal_v49.jpg', 'publish', 'open', '2021-04-02 04:39:04', 0),
(715, 1, '2020-11-19 15:42:57', 'Sahifa News Theme is a clean, modern, user-friendly, fast-loading, customizable, flexible, functional, and fully responsive WordPress News, Magazine, Newspaper, and blog Theme.\n\nSahifa is one of the most versatile website themes in the world. This amazing product offers many incredible features, each added in order to enhance your web page. It manages to balance power and beauty, resulting in a high-quality browsing experience for all users.\n\nMany sites have to choose between complexity and accessibility, given that their layout cannot adapt to the diminutive screens of hand-held devices. Thankfully, this theme has solved all compatibility and resizing issues. Customers who prefer smartphones or tablets can now access your posts with ease. Also, Sahifa can work with any operating system or browser. Clients are given complete freedom, and they can even turn off the responsive elements of their page.', 'Sahifa v5.7.5– Responsive WordPress News / Magazine / Blog Theme', '', 'https://1.bp.blogspot.com/-OHTQzrPmmz4/X7ZFC6YoNDI/AAAAAAAABQs/mszMeMtUM_EaaqyOK0kDVsWphBeYojzRACLcBGAsYHQ/s590/Sahifa.png', 'publish', 'open', '2021-04-02 04:39:04', 0),
(721, 1, '2020-11-19 16:03:20', '', 'Click Mag WordPress Theme', '', 'https://1.bp.blogspot.com/-1_kHb_YppBg/X7ZKaaX0lRI/AAAAAAAABRI/3uuJcpUSB9Q_aLFB_MRfukYt_lKdZjdywCLcBGAsYHQ/s590/01_preview1.jpg', 'publish', 'open', '2021-08-11 09:13:00', 0),
(727, 1, '2020-11-19 16:26:29', '', 'Independent WordPress Theme', '', 'https://1.bp.blogspot.com/-2ojY97Sp4ho/X7ZO9rGB5PI/AAAAAAAABRk/qwS7qzacfYY4-BKFL7iQqzL_LEKbQG1GQCLcBGAsYHQ/s590/Independent.jpg', 'publish', 'open', '2021-04-02 04:39:03', 0),
(736, 1, '2020-11-19 16:48:33', '', 'Disto WordPress Theme', '', 'https://1.bp.blogspot.com/-NP5KsDGzVNk/X7ZUvk0acrI/AAAAAAAABSA/oiEiOnije-st5bUAWKtd6PI17RikP-AVACLcBGAsYHQ/s590/Disto.png', 'publish', 'open', '2021-09-22 20:04:33', 0),
(871, 1, '2020-11-21 12:20:13', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-0WMHBaJB7uE/YAlRxdE15TI/AAAAAAAACiI/vLKK65CEKPgaZGiPkEZTi03HBEGLlDwSQCLcBGAsYHQ/s1371/1611063197391.jpg\" width=\"602\" height=\"764\" />\n\nMarketo is a clean WordPress multi-vendor e-commerce multipurpose theme with a vertical menu, perfect for your e-commerce business. This WordPress theme includes 11+ Homepage Design with full and easily customizable and well-organized Ediatiabe.\n\nMarketo is also compatible with Dokan Multivendor Solution. Create your own Amazon, Shopify, eBay, Magento in just 30 minutes, like the marketplace. Start your own multi-vendor marketplace and earn by commissioning items ranging from digital, physical to variable.', 'Marketo – Multivendor Woocommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-nvbWGdctzwU/X7i4EqhU0AI/AAAAAAAABW8/wxs6i6Q2yxAgmH5W2FAIMb49LmRN02utQCLcBGAsYHQ/s590/Marketo.jpg', 'publish', 'open', '2021-04-02 04:39:03', 0),
(879, 1, '2020-11-21 12:57:25', '', 'Olam– Easy Digital Downloads Marketplace WordPress Theme', '', 'https://1.bp.blogspot.com/-bFI0yLpgS2M/X7jB8TfW-bI/AAAAAAAABXY/wgA8obP2GnIOprkgmpgoRYJV-7KC035pACLcBGAsYHQ/s590/01_preview.jpg', 'publish', 'open', '2021-04-02 04:39:03', 0),
(1014, 1, '2020-11-22 16:31:25', '', 'WPLMS WordPress Theme v4.095.2', '', 'https://1.bp.blogspot.com/-8EcYi4YnVFk/X7pI4lxwQDI/AAAAAAAABYY/HPHotu4gSNw-a-_oXeciRQJz_aDy2qV-wCLcBGAsYHQ/s590/WPLMS.png', 'publish', 'open', '2021-04-02 04:39:02', 0),
(1018, 1, '2020-11-22 17:02:24', '', 'BuddyBoss - WordPress Theme', '', 'https://1.bp.blogspot.com/-yDZi0bMpsR0/X7pOZhSM5ZI/AAAAAAAABY0/cwwqqG9A0pUpZrbAA-iuaUvPXrZzvdiFACLcBGAsYHQ/s1180/Capture.PNG', 'publish', 'open', '2021-04-02 04:39:02', 0),
(1053, 1, '2020-11-23 14:37:00', '', 'Impreza – Multi-Purpose WordPress Theme v7.11', '', 'https://1.bp.blogspot.com/-02JD0uTqr2A/X7t8W726iYI/AAAAAAAABcQ/e2oYKfLChBQVMexuwyC3lAu2GPym9r8UACLcBGAsYHQ/s590/Impreza.png', 'publish', 'open', '2021-04-02 04:39:02', 0),
(1059, 1, '2020-11-23 15:47:39', '', 'BeTheme – Responsive Multi-Purpose WordPress Theme', '', 'https://1.bp.blogspot.com/-RI1GnBzxMBU/X7uNyDJcoYI/AAAAAAAABcs/NshTOSq50dMfgfbKMUzshm7WCuOCAcZZwCLcBGAsYHQ/s590/BeTheme.png', 'publish', 'open', '2021-04-02 04:39:02', 0),
(1066, 1, '2020-11-23 16:08:22', 'Seosight WordPress Theme is a fresh concept for SEO, Marketing Company, Digital Agency and e-Commerce.\r\nExceptional and eye-catching style would be a strong point on the website. There\'s nothing like this SEO style. Seosight is a fascinating website for users because they have never seen anything like it. Make a website remarkable for tourists and make a lot more profit than you do.\r\n\r\nSEOsight is designed to meet all the needs of SEO companies, experts & freelancers, Online Marketing, Digital Marketing Agencies, Web Studios, Digital Agencies, Advertising Agencies, SMM experts, Lead Generation specialists, designers, Landing Pages, corporate website creation, web development, etc. This SEO theme could lead any business to success!', 'Seosight – Digital Marketing Agency WordPress Theme', '', 'https://1.bp.blogspot.com/-zXlJDp51Vvk/YEhNRAV_OGI/AAAAAAAADBU/-5en6LpKJ4geD-MK8zOuzECKHPRd6FxLQCLcBGAsYHQ/s885/01_banner.png', 'publish', 'open', '2021-04-28 12:45:47', 0),
(1074, 1, '2020-11-23 16:42:57', 'Jobmonster, as an authority in the Career Board and Listing Industry, has never disappointed clients. The WordPress Job Board Theme was born to be a bridge that links employers and candidates. Jobmonster brings new features to the table, such as Modern Job Advanced Search, Front-End Description & Job Submission, Quick Installation and Customization, Admin Review Version, Job Posting Price Schedule, Email Notification, and more.\n\n<strong>Purchase Proof:</strong>\n\n<img src=\"https://1.bp.blogspot.com/-QsddLtJsYCA/X98aQXk4AYI/AAAAAAAACBA/YT-wUHx9ndEbyCzmGMadKPRHEDy_8M45gCLcBGAsYHQ/s1208/JobMonster.jpg\" />', 'Jobmonster v4.6.6.3– Job Board WordPress Theme', '', 'https://1.bp.blogspot.com/-Z2J-76DdOfc/X7uY577sIDI/AAAAAAAABdk/fa7ixyRRWJkPw-oqY7pEXDJIxgSplewOACLcBGAsYHQ/s590/01-preview.jpg', 'publish', 'open', '2021-04-02 04:39:01', 0),
(1083, 1, '2020-11-23 17:23:21', '', 'WordPress Auto Spinner v3.7.5', '', 'https://1.bp.blogspot.com/-ke-zAfpf6qo/X7ujKlG5bYI/AAAAAAAABeA/e-G4RWKU5tktRW8LyAOsRRi3FYJ8X4fnQCLcBGAsYHQ/s590/Wordpress-Auto-Spinner.jpg', 'publish', 'open', '2021-04-02 04:42:31', 0),
(1091, 1, '2020-11-24 08:17:14', '<strong>Purchase Prrof:</strong>\n\n<img src=\"https://1.bp.blogspot.com/-QsddLtJsYCA/X98aQXk4AYI/AAAAAAAACBA/YT-wUHx9ndEbyCzmGMadKPRHEDy_8M45gCLcBGAsYHQ/s1208/JobMonster.jpg\" />\n\nJNews is a theme designed to provide an all-in-one solution for any publishing need. With JNews, you will explore countless possibilities for making the best fully functioning website. We have 50+ demos that are ideal for your News Site, Magazine Site, Blog Site, Editorial Site and every form of publishing site. Also provided with an automatic import function to replicate one of the demos you want with just one press.\n\n \n\n ', 'JNews | WordPress Newspaper Magazine Blog AMP Theme', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-_xkqAqbwq5Q/X7x028UjVRI/AAAAAAAABec/hLCP_Rm7Z3EAdmR4zaCb3C-L0MwckOytwCLcBGAsYHQ/s590/JNews-2.png', 'publish', 'open', '2021-04-02 04:39:01', 0),
(1099, 1, '2020-11-24 13:25:13', '<strong>Wordpress Automatic Plugin</strong> posts from almost any website to WordPress automatically.\r\n\r\nIt can import from popular sites like Youtube and Twitter utilizing their APIs or from almost any website of your choice using its scraping modules\r\n\r\n<strong>Auto post content from Feeds.</strong> plugin can check your specified feeds regularly & post every new feed item as a new post.\r\n\r\n<strong>Fetch full content from summary feeds.</strong> Wordpress automatic can convert truncated feeds to full content posts with a big success ratio .\r\n\r\n<strong>Extract specific parts of original feeds posts.</strong> Wordpress automatic can extract two specified parts of the original post by CSS id/class, XPath or REGEX and concat them to post to your wordpress.\r\n\r\n<strong>Search and replace.</strong> The plugin can search extracted content for any text/area and replace with specified text.\r\n\r\n<strong>Original time posts.</strong> Wordpress automatic can set the post created at wordpress to the same time the post was created at the feed.\r\n\r\n<strong>Extract Categories.</strong> The plugin can set the created post categories to the same categories for the original posts.\r\n\r\n<strong>Extract original tags.</strong> Wordpress automatic can extract tags from the original post using CSS id/class and set as tags at the created post.\r\n\r\n<strong>Extract original author.</strong> Wordpress automatic can extract author name from the original post and assign as at the created post as the author if exists or will create it, if not exists.\r\n\r\n<strong>Skip posts with no content.</strong> The plugin can verify the extracted content and skip posts if it has not content.\r\n\r\n<strong>Skip non-English posts.</strong> Wordpress automatic has the option to set the post status as pending,if it suspects that it is not written in English.\r\n\r\n<strong>Skip posts without images .</strong> The plugin have the option to check the extracted content and skip if it does not contain images.\r\n\r\n<strong>Post oldest items first.</strong> Wordpress automatic has the option to post older items first, By default it posts newest items first.\r\n\r\n<strong>Decode html entities.</strong> Wordpress automatic has the option to decode html entities of the extracted content/title.\r\n\r\n<strong>Convert encoding before posting.</strong> The plugin has the option to convert extracted content encoding from any specific encoding to utf-8 to be compatible with wordpress.\r\n\r\n<strong>Duplicate title skip.</strong> The plugin can verify that there is no previous posted post with the same title.\r\n\r\n<strong>Featured image from Facebook og:image tag.</strong> The plugin can extract the image used for facebook as a thumbnail to set as a featured image .', 'WordPress Automatic Plugin', '', 'https://1.bp.blogspot.com/-g29f8pESilM/X7zEcmtuBrI/AAAAAAAABe8/wIenojV9c1E9dQQB9qBTrZOXo4VWQqM2ACLcBGAsYHQ/s590/WordPress-Automatic-Plugin.png', 'publish', 'open', '2021-05-10 16:35:24', 0),
(1106, 1, '2020-11-24 14:28:17', 'AdLinkFly complies with the GDPR. Start your own monetized connection shortening service, similar to adf.ly(adfly), ouo.io, linkshrink.net, or shorte.st clone scripts, and make money! Allow members to earn money by shortening ties and keeping a portion of the gains. Publishers who create short links and advertisers who create campaigns, referrals, withdrawals, API, and translation ready are all included in AdLinkFly.\r\n\r\nPublishers who create short links and advertisers who create campaigns, referrals, withdrawals, API, and translation ready are all included in AdLinkFly. PayPal, Stripe, Payza, Skrill, Bitcoin (Coinbase – CoinPayments), WebMoney, Perfect Money, PAYEER, Money Wallet & Bank Transfer integration, and much more.\r\n\r\n ', 'AdLinkFly – Monetized URL Shortener by MightyScripts', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-y6IA8sGU8K4/X7zNOpZCffI/AAAAAAAABfc/DcLnbAdKABY2Mf83dldtanl4UxiM3BevACLcBGAsYHQ/s1180/01.png', 'publish', 'open', '2021-03-09 02:38:32', 0),
(1127, 1, '2020-11-27 23:43:55', '', 'WordPress website customization service', '', '', 'publish', 'open', '2021-06-03 09:56:59', 0),
(1147, 1, '2019-11-28 09:49:05', '', 'Professional Ecommerce Website', '', '', 'publish', 'open', '2021-06-03 09:59:05', 0),
(1193, 1, '2020-12-09 08:41:53', '', 'Frontend Publishing Pro - WordPress Post Submission Plugin', '', 'https://1.bp.blogspot.com/-8eaUBfh8DfY/X9A-4jqgkmI/AAAAAAAABg8/gROQsRqZlvwmPf13n3i_AQQEg0fWvaSBwCLcBGAsYHQ/s809/687474703a2f2f777066726f6e74656e647075626c697368696e672e636f6d2f77702d636f6e74656e742f75706c6f6164732f726573706f6e736976652d73686f77636173652e7', 'publish', 'open', '2021-04-02 04:42:31', 0),
(1201, 1, '2020-12-10 16:59:49', 'Edubin is one of the best WordPress LMS Education Theme for Sell Online Courses, University, College, School, Training Center, E-Learning, Tutorial Courses, Education Center & Other Institutes. Edubin is a full education solution with all its functionality and functionalities. It\'s built with the drag-and-drop elementor page builder. By using this style, it is possible to create a website for any kind of educational institution.\n\n \n\n ', 'Edubin– Education WordPress Theme', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-wpkDqY6ZIuw/X9IGf1GmXiI/AAAAAAAABhc/jliD5tP1_ZMuKk2VjqM2r1AM-piUdbDmgCLcBGAsYHQ/s0/Edubin.jpg', 'publish', 'open', '2021-04-02 04:39:00', 0),
(1650, 1, '2020-12-13 10:04:08', 'Listingo – Service Providers – Business Directory WordPress Theme is the ultimate directory theme for service providers with clean, contemporary design and stunning features. The best part of this theme is its outstanding, semantic, and tested code with a powerful search feature and a decent loading time. It\'s a user-based directory theme with fantastic functionality and design. It is well known and above all, it is backed up by outstanding customer service.\n<h2 id=\"item-description__main-features\">Main Features</h2>\n<ul>\n <li>Powerful provider account</li>\n <li>Articles management for providers</li>\n <li>Jobs Managements</li>\n <li>OTP System to prevent fake bookings</li>\n <li>Online Appointments</li>\n <li>WooCommerce Payments gateways</li>\n <li>Google Map Clustering and Spiderfy</li>\n <li>bbPress forum supported</li>\n <li>Reviews system multi ratings</li>\n <li>Search by Radius</li>\n <li>Search by distance</li>\n <li>CSV user’s import</li>\n <li>One Click Demo Import</li>\n <li>Email template settings</li>\n <li>Mega Menu Supported</li>\n <li>Team Management</li>\n <li>Multiple Business’s Hours</li>\n <li>Login and Registration pages</li>\n <li>Search Users in Miles or Kilo Miles</li>\n <li>Powerful search filters</li>\n</ul>', 'Listingo v3.2.2– Business Listing and Directory WordPress Theme', '', 'https://1.bp.blogspot.com/-FkbrCXf-Qcw/X9WZVpL3GjI/AAAAAAAABic/DQXOqguCyA4ksAS4TO7Sadg0N4X3DfndwCLcBGAsYHQ/s590/Listingo.jpg', 'publish', 'open', '2021-04-02 04:39:00', 0);
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(1747, 1, '2020-12-13 12:32:07', '<p style=\"text-align: center;\">RealHomes is a handcrafted WordPress theme for real estate companies, frequently updated and well maintained. It offers purpose-oriented design with loads of useful features that can support a real estate company.</p>\r\nRealHomes theme gracefully introduces property knowledge to its guests and encourages real estate business owners by making property management simpler.\r\n\r\n<strong>Theme Features:</strong>\r\n<ul>\r\n <li id=\"item-description__advanced-yet-customizable-real-estate-search\">Advanced, Yet Customizable Real Estate Search</li>\r\n <li id=\"item-description__up-to-4-locations-dropdowns-are-supported\">UP TO 4 LOCATIONS DROPDOWNS ARE SUPPORTED</li>\r\n <li id=\"item-description__real-estate-search-form-over-image\">Real Estate Search Form Over Image</li>\r\n <li id=\"item-description__google-maps-integration\">Google Maps Integration</li>\r\n <li id=\"item-description__openstreetmap-integration\">OpenStreetMap Integration</li>\r\n <li id=\"item-description__real-estate-properties-comparison-feature\">Real Estate Properties Comparison Feature</li>\r\n <li id=\"item-description__list-layout-grid-layout-and-half-map-layout\">List Layout, Grid Layout and Half Map Layout</li>\r\n <li id=\"item-description__gallery-templates\">Gallery Templates</li>\r\n <li id=\"item-description__comprehensive-and-easy-to-use-settings\">Comprehensive and Easy to Use Settings</li>\r\n <li id=\"item-description__easy-to-use-meta-boxes\">Easy to Use Meta Boxes</li>\r\n <li id=\"item-description__additional-details\">Additional Details</li>\r\n <li id=\"item-description__floor-plans\">Floor Plans</li>\r\n <li id=\"item-description__property-attachments\">Property Attachments</li>\r\n <li id=\"item-description__similar-properties\">Similar Properties</li>\r\n <li id=\"item-description__child-or-sub-properties\">Child or Sub Properties</li>\r\n <li id=\"item-description__google-recaptcha\">Google reCAPTCHA</li>\r\n <li id=\"item-description__visitors-registration-and-login-support\">Visitors Registration and Login Support</li>\r\n <li id=\"item-description__visitors-registration-and-login-using-social-networks\">Visitors Registration and Login Using Social Networks</li>\r\n <li id=\"item-description__front-end-property-submit-with-paid-auto-publishing\">Front End Property Submit ( with Paid Auto Publishing )</li>\r\n <li id=\"item-description__properties-front-end-management\">Properties Front End Management</li>\r\n <li id=\"item-description__favorite-properties\">Favorite Properties</li>\r\n <li id=\"item-description__front-end-profile-edit\">Front End Profile Edit</li>\r\n <li id=\"item-description__filterable-faqs-support\">Filterable FAQs Support</li>\r\n <li id=\"item-description__translation-ready-rtl-supported-and-wpml-compatible\">Translation Ready, RTL Supported and WPML Compatible</li>\r\n <li id=\"item-description__ihomefinder-optima-express-idx-compatible\">iHomefinder Optima Express IDX Compatible</li>\r\n <li id=\"item-description__revolution-slider-included\">Revolution Slider Included</li>\r\n <li id=\"item-description__child-theme-included\">Child Theme Included</li>\r\n <li id=\"item-description__one-click-demo-import\">One Click Demo Import</li>\r\n <li id=\"item-description__well-documented\">Well Documented</li>\r\n</ul>', 'RealHomes– Estate Sale and Rental WordPress Theme', '', 'https://1.bp.blogspot.com/-GmwVqigjSv4/X9W8sTJOZmI/AAAAAAAABi4/qvyOMKphgFcrrb8iNugvcT7uDRd-TxxMwCLcBGAsYHQ/s590/01_preview.png', 'publish', 'open', '2021-09-13 01:46:28', 0),
(1755, 1, '2020-12-13 13:04:01', 'Why Ewebot, huh? It has a superb and clean architecture dedicated to marketing services such as SEO, website review, optimization, link building, etc. Custom pages have a lot of content blocks that allow you to build unique pages. Powerful #1 Elementor Drag and Drop Page Builder will help you create and make adjustments and see them live on the website right away. And the most important thing is the one-click demo import tool\r\n<h2 id=\"item-description__ewebot-seo-marketing-agency-wordpress-theme\">Ewebot – SEO Marketing Agency WordPress Theme</h2>\r\n<ul>\r\n <li>Compatible With The Latest Version of WordPress</li>\r\n <li>Cross-browser and Cross-Platform</li>\r\n <li>Outstanding Original Design</li>\r\n <li>Various Home Page Layouts</li>\r\n <li>Optimized For Best Performance. Check GTmetrix.</li>\r\n <li>Powered by Elementor Page Builder (Free Version)</li>\r\n <li>Powerful GT3 Theme Options Panel</li>\r\n <li>SEO Friendly</li>\r\n <li>Manage Brand Colors Easily</li>\r\n <li>Google Web Fonts and Google Map Integration</li>\r\n <li>Ultra Responsive(works great at any screen/device)</li>\r\n <li>Human Friendly Demo Data Import</li>\r\n <li>Detailed Documentation</li>\r\n <li>Friendly and Effective Support Team</li>\r\n <li>Free Updates and Improvements</li>\r\n <li>Custom Coming 404 Page</li>\r\n <li>Various Unique Blog Layouts</li>\r\n <li>Creative Portfolio Gallery Layouts</li>\r\n <li>Contact Form 7 Compatible</li>\r\n <li>And lots of other benefits</li>\r\n <li>Illustrations from https://www.freepik.com/ Credit link back is required.</li>\r\n <li>We do not recommend Godaddy hosting for the theme based on Elementor</li>\r\n</ul>\r\nhttps://gpldog.com/file/armania-multipurpose-elementor-woocommerce-theme-rtl-supported/\r\n\r\nhttps://gpldog.com/file/seosight-wordpress-theme/', 'Ewebot– SEO Marketing & Digital Agency', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-uBC8kTa-I88/YGUgUOUbw-I/AAAAAAAADF0/HGDZULsNMLYCuS_tquvq1qXvrhaWivhYACLcBGAsYHQ/s1180/Preview_inline.jpg', 'publish', 'open', '2021-08-21 06:32:37', 0),
(1757, 1, '2020-12-13 13:20:50', '\"TownHub – Directory & WordPress Theme Listing\" is ideal if you want a clean and modern style. This theme will help you develop, manage and monetize your local or global directory site.\n<h3 id=\"item-description__features-list\">Features List</h3>\n<ul>\n <li>Works on WordPress latest version</li>\n <li><strong>Elementor Visualize Drop & Drag Page Builder</strong></li>\n <li><strong>Advanced Elements</strong> for Elementor</li>\n <li>Admin Dasboard</li>\n <li><strong>Currency switcher</strong></li>\n <li>5 different style home page: Parallax image, Map, Slider, Slideshow, and Video (vimeo, html5 or youtube )</li>\n <li>6 different Listings pages and 4 pre-built single layouts</li>\n <li><strong>Listing single layout builder</strong></li>\n <li><strong>Absolutely free OpenStreetMap</strong></li>\n <li>Full screen backgrounds</li>\n <li>Powerfull unique parallax effects</li>\n <li>Header options for post, page, category and tag</li>\n <li>Self Hosted, Youtube, Vimeo Video background – Image Background will be used for mobile instead</li>\n <li>Fully responsive</li>\n <li>Support Contact Form 7</li>\n <li>Powerful theme option with Redux</li>\n <li><strong>One Click Import Demo Data</strong></li>\n <li>600+ Google Web Fonts</li>\n <li>Retina Icons (Font Awesome)</li>\n <li>Bootstrap Framework</li>\n <li><strong>Easily Customizable</strong></li>\n <li>Translation Ready with .pot file included</li>\n <li>Page + Post settings with metabox</li>\n <li>Right, Left sidebar or Full width Blog</li>\n <li>Post format</li>\n <li><strong>Child Theme included</strong></li>\n <li>Demo Data xml file included</li>\n <li>Unlimited Color</li>\n <li>Well documented</li>\n <li>Touch and swipe</li>\n <li><strong>Mailchimp subscribe</strong></li>\n <li><strong>Tweeter feeds</strong></li>\n <li><strong>Instagram feeds</strong></li>\n <li>And much more…</li>\n</ul>\n \n\n ', 'TownHub – Directory & Listing WordPress Theme', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-wm3MjezyrT0/X9XHinatCFI/AAAAAAAABkA/Th21mTXda9IIfpHIicXIZR1Hj_JqD7Q0QCLcBGAsYHQ/s590/01_preview.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:59', 0),
(1761, 1, '2020-12-15 11:33:44', 'Welcome to Houzez 2.3.0 The world-famous WordPress theme for real estate agents and companies. Houzez is a highly versatile starting point for talented designers to build top-notch designs. It has features that your client – a real estate agent or a business – may not even have thought of.\n\nHouzez allows you to administer a real estate marketplace, coordinate agents and accept property submissions\n<ul>\n <li>Property Management</li>\n <li>CRM</li>\n <li>Insight Property Data</li>\n <li>Frontend Submissions</li>\n <li>Featured Properties</li>\n <li>Favorite Properties</li>\n <li>Saved Searches</li>\n <li>User Profiles</li>\n <li>Email Alerts</li>\n <li>Invoices</li>\n <li>Membership System</li>\n <li>Agents Management</li>\n</ul>', 'Houzez v2.3.0– Real Estate WordPress Theme', '', 'https://1.bp.blogspot.com/-QQtPh9gAeoM/X9hQLd3m2nI/AAAAAAAABwY/kPpNnbBM0ywv69bgsqqlIfISHa6PlwI4wCLcBGAsYHQ/s590/Houzez.png', 'publish', 'open', '2021-04-02 04:38:53', 0),
(1764, 1, '2020-12-13 13:50:03', 'ClassiAds is the #1 Premium Classified WordPress Ads theme on Themeforest. We know it\'s the perfect option for your company. Super versatile, rich with features availability, drag and drop framework with page builder and top payment gateways 100% responsive design (try resizing your browser). Designed with both HTML5 and CSS3. A lot of thought and consideration has been given to ClassiAds, making it a pleasure to use them.\n<h3 id=\"item-description__features\">Features</h3>\n<ul>\n <li>Clean, Modern Design can be used for any type of website</li>\n <li>Fully Responsive</li>\n <li>Custom fields</li>\n <li>Built with HTML5 and CSS3</li>\n <li>Unlimited Colors</li>\n <li>Visual composer integration</li>\n <li>Separate Mobile Menu</li>\n <li> Archive Pages</li>\n <li>Set Default listing view on archive pages</li>\n <li>add/remove map on archive pages</li>\n <li>About widget</li>\n <li>Custom Menu widget</li>\n <li>Offers widget</li>\n <li>Category widget</li>\n <li>Locations widget</li>\n <li>Search widget</li>\n <li>Subscription widget</li>\n <li>Social widget</li>\n <li>Map widget</li>\n <li>Relevancy Search Compatible</li>\n <li>Ajax Search Listing Filter</li>\n <li>Search By Category</li>\n <li>Search By Location or Address field</li>\n <li>Search By GeoLocation</li>\n <li>Search By Radius</li>\n <li>Search By Price</li>\n <li>Price Search field min – max option</li>\n <li>Price Search Field Exact Value Option</li>\n <li>Price Search Field Range Slider Option</li>\n <li>Search By Any Custom Content Field</li>\n <li>Directory Based Search Form Option</li>\n <li>Pricing Plan Based Search Form Option</li>\n <li>Location Based Search Form Option</li>\n <li>Category Based Search Form Option</li>\n <li>KeyWord Suggestion with KeyWord Field</li>\n <li>Default KeyWord Option</li>\n <li>Default Address Option</li>\n <li>Default Radius Option</li>\n <li>Search Form Location Field Nested Level Up To 3</li>\n <li>Search Form Category Field Nested Level Up To 3</li>\n <li>Connect Search Form With Any Other Shortcode e.g Map, Listings</li>\n <li>Customize Styling For Each Search Form</li>\n <li>Select Custom Fields For Each Search Form</li>\n <li>Advanced Search Section</li>\n <li>Select Custom Fields To Show in Advanced Search Section</li>\n <li>Manage Typography For Search Form</li>\n <li>Listing Pending for review option on submission</li>\n <li>Listing Pending for review option on edit</li>\n <li>Claim Listing</li>\n <li>Claim Approval Option</li>\n <li>Status Option After Claim Approval</li>\n <li>Bidding system</li>\n <li>Online/Offline Status</li>\n <li>csv Import/Export</li>\n <li>SVG category Icons</li>\n <li>Image category Icons</li>\n <li>Font category Icons</li>\n <li>Badges included</li>\n <li>author verification system</li>\n <li>front-end ads posting</li>\n <li>back-end ads posting</li>\n <li>User menu in the header</li>\n <li>Invoices system</li>\n <li>Email notification</li>\n <li>Pay per post system</li>\n <li>Billing history</li>\n <li>Custom Banner</li>\n <li>+20 Pre-Made Layouts</li>\n <li>RTL Supported</li>\n <li>MailChimp Integrated</li>\n <li>Google maps styles option</li>\n <li>ReduxFramework</li>\n <li>Bootstrap 3</li>\n <li>Child Theme Supported</li>\n <li>bbPress (Forum)</li>\n <li>Sliders are touch swipe compatible</li>\n <li>Working Contact form</li>\n <li>Cross Browser support</li>\n <li>Twitter integrated</li>\n <li>Strong focus on typography, usability and overall user-experience</li>\n <li>650+ Google font</li>\n <li>Restrict user to access back-end</li>\n <li>Require term and condition option</li>\n <li>custom login page for dashboard</li>\n <li>custom login page for listing submission</li>\n <li>Turn on off listing tags</li>\n <li>Hide admin bar for user</li>\n <li>Mange user provide from front-end</li>\n <li>4 pricing plan styles</li>\n <li>Extremely Customizable Pricing plans</li>\n <li>Hide/Show Any option on Pricing Plan</li>\n <li>Mange Styling and Typography For Pricing Plans</li>\n <li>Raise UP/ Bump Up Listing Option</li>\n <li>Upgrade Listing Option</li>\n <li>Option to change listing level on expiry</li>\n <li>Option to draft listing on expiry</li>\n <li>Sticky listing based on pricing plan</li>\n <li>Featured Listing based on pricing plan</li>\n <li>Show on Map Based on Pricing Plan</li>\n <li>Option to Sell Single Listing Or Packages</li>\n <li>Create Unlimited Pricing Plans</li>\n <li>Allow number of images in each Pricing plan</li>\n <li>Allow Number of Videos in Each Pricing Plan</li>\n <li>Allow Number of Locations in each Pricing Plan</li>\n <li>Allow Number Of Categories in Each Pricing Plan</li>\n <li>Woocomerce Payment Gateway Integration For Listings</li>\n <li>Woocomerce Subscription Addon Integration</li>\n <li>Woocomerce Shop Integration</li>\n <li>Custom Content Fields</li>\n <li>SelectBox Content Field Type</li>\n <li>CheckBox Content Field Type</li>\n <li>Radio Content Field Type</li>\n <li>TextArea Content Field Type</li>\n <li>Text String Content Field Type</li>\n <li>Website Content Field Type</li>\n <li>Digital Value Content Field Type</li>\n <li>Email Content Field Type</li>\n <li>Date-Time Content Field Type</li>\n <li>Opening-closing Hours Content Field Type</li>\n <li>File Upload Content Field Type</li>\n <li>Price Content Field Type</li>\n <li>Option to hide/ Show only Field Label/ Show only Icon / Show both on Grid View</li>\n <li>Option to Show Field In Map info window</li>\n <li>Option to show Content Field for selected categories</li>\n <li>Create Unlimited Content Fields Group</li>\n <li>Option to hide group for anonymous Users</li>\n <li>2 Group Styles</li>\n <li>Order group by drag and drop</li>\n <li>Order Content Fields By drag and drop</li>\n <li>+16 Grid View Styles</li>\n <li>+3 List View Styles</li>\n <li>Select Separate Listing Style for each Listing Shortcode</li>\n <li>Show Multiple Listing Shortcodes At Same Page</li>\n <li>Select Listing Default Style Grid View or List View</li>\n <li>3 Listing Sorting Styles</li>\n <li>2 Column Responsive Grid Option</li>\n <li>Option to Show All Listings on One Page</li>\n <li>Option to Show Only Sticky And Featured Listings</li>\n <li>Option to Load Listing After Page Load</li>\n <li>Option to Set Number Of Listing Per Page</li>\n <li>Option to Load More Listings On Scroll</li>\n <li>Option to Order By Date, Title or any content field</li>\n <li>Option to Set Ordering Direction Ascending or Descending</li>\n <li>Option to Hide/Show Number of Listings</li>\n <li>Up to +6 Listing Columns For Grid View</li>\n <li>Custom Thumbnail Sizing Option</li>\n <li>Option to Turn On Carousel For Any Lasting Section</li>\n <li>and much more.</li>\n</ul>', 'Classiads v5.8.7– Classified Ads WordPress Theme', '', 'https://1.bp.blogspot.com/-Y04lhUQCHWM/X9XOHbzwlDI/AAAAAAAABkc/RA29wQON9s49Ar1OS1lgtgWthTZDeqg7wCLcBGAsYHQ/s590/Classiads-2.jpg', 'publish', 'open', '2021-04-02 04:38:59', 0),
(1769, 1, '2020-12-13 14:16:44', '<ul>\r\n <li>Hostiko Premium Hosting & WHMCS Wordpress Theme is developed exclusively for web hosting companies. It is based on the WordPress WPBakery Page Builder (formerly Visual Composer) and the Revolution Slider.</li>\r\n</ul>\r\nHostiko is designed with state-of-the-art web technologies (Bootstrap platform, WHMCS bridge, icon font, etc to ensure the theme works with all browsers and devices.\r\n<h3 id=\"item-description__features\">Features</h3>\r\n<ul>\r\n <li>52+ Variation of Main Page</li>\r\n <li>Include Order Form</li>\r\n <li>Include WHMCS Bridge</li>\r\n <li>Nice and attractive design</li>\r\n <li>SEO Friendly Code</li>\r\n <li>Clean Coded Design</li>\r\n <li>User-Friendly interface</li>\r\n <li>Flat Design</li>\r\n <li>Fully Customizable</li>\r\n <li>Google Fonts</li>\r\n <li>Contact Form</li>\r\n <li>FontAwesome Icons</li>\r\n <li>Retina Ready</li>\r\n <li>Responsive Layout</li>\r\n <li>Free Lifetime Updates</li>\r\n <li>Well Documented</li>\r\n <li>Bootstrap 3.x</li>\r\n <li>Clean and Simple Style</li>\r\n</ul>\r\n \r\n\r\n ', 'Hostiko v54.0.0- WordPress WHMCS Hosting Theme', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-LiCjjzj-xlA/YELahy_dg0I/AAAAAAAAC_U/pOhGKDwL-8skRURS43gTHUrnSs_SHvmPgCLcBGAsYHQ/s1180/screenshot.jpg', 'publish', 'open', '2021-04-06 11:41:37', 0),
(1773, 1, '2020-12-13 14:28:21', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-sEw2Fd23zbo/YApH5EfKrqI/AAAAAAAACl4/mVAoFqWW5O490r4wiwYV2IGum9qvqr1JwCLcBGAsYHQ/s1542/1611286395441.png\" width=\"544\" height=\"817\" />\r\n\r\nListeo is an all-in-one WordPress directory theme with a front end user dashboard.\r\nBuilt-in booking system, private messaging and many other wonderful features!\r\nNo payouts and no coding skills needed.\r\n\r\nCreate a professional directory & classified website like TripAdvisor, Yelp, Airbnb, Booking.com, Tripping, FlipKey, HomeAway or similar in minutes!\r\n<h3 id=\"item-description__other-unique-features\">Unique Features</h3>\r\n<ul>\r\n <li>Guests and Owner User Roles</li>\r\n <li>Google reCAPTCHA</li>\r\n <li>AJAX Powered Search Results</li>\r\n <li>Smart Listing Reviews</li>\r\n <li>Private Messages</li>\r\n <li>Claim Listing Feature</li>\r\n <li>Revolution Slider</li>\r\n <li>WP Bakery Page Builder</li>\r\n <li>Contact Form 7 Integration</li>\r\n <li>Over 2000+ Icons Available</li>\r\n <li>Multiple Listing List Styles</li>\r\n</ul>\r\n ', 'Listeo– Directory & Listings With Booking – WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-tFsnH4a95HA/X9XYKp7ffWI/AAAAAAAABlU/z6tXla6XjEQK_d7RVTmSw4GJRQyM1O8EgCLcBGAsYHQ/s1179/01_listeo.png', 'publish', 'open', '2021-07-13 11:45:52', 0),
(1778, 1, '2020-12-13 15:43:15', '<h2>Extended Feature List</h2>\n<ul>\n <li><strong>Front-end & Back-end Page Builder</strong></li>\n <li><strong>Many Available Demos</strong></li>\n <li><strong>World-Class, Award-Winning Design</strong></li>\n <li><strong>Lifetime Updates, Proven Track Record</strong></li>\n <li><strong>Cascading Images</strong></li>\n <li><strong>Page Transitions</strong></li>\n <li><strong>4 Icon Packs</strong></li>\n <li><strong>Multi Layer Mouse Based Parallax</strong></li>\n <li><strong>Masonry Image Galleries</strong></li>\n <li><strong>Megamenu Built In</strong></li>\n <li><strong>Fullscreen Rows</strong></li>\n <li><strong>Off Canvas Menu</strong></li>\n <li><strong>High Performance Animations</strong></li>\n <li><strong>Exclusive Sliders</strong></li>\n <li><strong>Advanced Typography</strong></li>\n <li><strong>Multiple Blog Styles</strong></li>\n</ul>', 'Salient v12.1.4- Responsive Multi-Purpose Theme', '', 'https://1.bp.blogspot.com/-Trj6qjmT7pE/X9XpIjIHKrI/AAAAAAAABlw/brwEiAOJhY4IxzDbUK2KzpcDT0NTq-KiACLcBGAsYHQ/s590/Salient-1.png', 'publish', 'open', '2021-04-02 04:38:58', 0),
(1781, 1, '2020-12-13 16:01:40', '<h2><strong>Features</strong></h2>\r\n<ul>\r\n <li><strong>Drag & Drop Editor</strong></li>\r\n <li><strong>300+ Designer Made Templates</strong></li>\r\n <li><strong>90+ Widgets</strong></li>\r\n <li><strong>Responsive Editing</strong></li>\r\n <li><strong>Popup Builder</strong></li>\r\n <li><strong>Theme Builder</strong></li>\r\n <li><strong>WooCommerce Builder</strong></li>\r\n <li><strong>Navigator</strong></li>\r\n <li><strong>Hotkeys</strong></li>\r\n <li><strong>Auto Save</strong></li>\r\n <li><strong>In-line Editing</strong></li>\r\n <li><strong>CSS Filters</strong></li>\r\n <li><strong>One-Page Websites</strong></li>\r\n <li><strong>Landing Pages</strong></li>\r\n <li><strong>TypeKit Integration</strong></li>\r\n <li><strong>Drop Cap</strong></li>\r\n <li><strong>Woo Products Widget</strong></li>\r\n <li><strong>Woo Add To Cart Widget</strong></li>\r\n <li><strong>MailChimp</strong></li>\r\n <li><strong>ActiveCampaign</strong></li>\r\n <li><strong>Adobe TypeKit</strong></li>\r\n <li><strong>Discord</strong></li>\r\n <li><strong>ReCaptcha V3</strong></li>\r\n <li><strong>Facebook SDK.</strong></li>\r\n</ul>', 'Elementor Pro - WordPress Premium Page Builder Plugin', '', 'https://1.bp.blogspot.com/-gscJgZjteuo/YFQ8gfPuHsI/AAAAAAAADDk/7CSVfO47AWYPmNUhILGvT21TpfxPIHYuQCLcBGAsYHQ/s885/01_banner.png', 'publish', 'open', '2021-10-06 16:38:44', 0),
(1788, 1, '2020-12-13 19:10:09', 'With WPBakery Page Builder (formerly Visual Composer) and Ultimate Addons, The7 WordPress Theme features complete and seamless integration. Most of our customers believe that The7 is the best theme to use for these plugins, up to date!\n\nIts 1000+ Theme Options allow almost any imaginable design to be designed. And you can create a boutique-grade website design in mere minutes with the Design Wizard feature.\n\nIn the visual WP Theme Customizer-like and old-school backend editing modes, both Wizard and advanced Theme Options will work.', 'The7 v9.5.0— Multi-Purpose Website Building Toolkit for WordPress', '', 'https://1.bp.blogspot.com/-LtUuU6V_kog/X9YY0trOvQI/AAAAAAAABmo/u-e_XTQYNKoEuh-ljT7qTgkggOxcVWapgCLcBGAsYHQ/s590/The7-1.png', 'publish', 'open', '2021-04-02 04:38:58', 0),
(1828, 1, '2020-12-13 22:08:14', 'Jupiter X is your all-in-one platform for building perfect pixel websites, quick and simple. It comes with Elementor page builder, the world\'s leading WordPress site builder. You can configure Jupiter X globally using a WordPress customiser. The brand-new shop customiser lets you customise every part of your online shop, including checkout and cart tab. In addition, you can easily create your own headers and footers with visual editors.', 'Jupiter X v1.21.0– Elementor Multi-Purpose Theme', '', 'https://1.bp.blogspot.com/-hraNp2XYwZk/X9ZDCenExAI/AAAAAAAABnE/-O157pLDJE0-wATGUGN6TjpHPmZcFhwIgCLcBGAsYHQ/s590/Jupiterx.jpg', 'publish', 'open', '2021-04-02 04:38:58', 0),
(1836, 1, '2020-12-13 22:17:19', 'Enfold is a clean, super-flexible and completely responsive WordPress Theme (try redesigning your browser) suitable to company websites, shop websites, and users who want to showcase their work on a pleasant portfolio platform. The theme is designed on top of the fabulous Avia Framework and provides support for the WPML MULTI LANGUAGE plugin, just in case you need it.\n\nIt comes with a plethora of choices so that you can change layout, styling, colours and fonts directly from inside the backend. Create your own clean skin or use one of 18 predefined skins right out of your WordPress Admin Panel. Font, background and colour choices, as well as the dynamic template builder, can allow you to develop the website you need in no time. In addition to global options, you can set unique style options for each entry as shown in the demo theme.', 'Enfold v4.7.6.4– Responsive Multi-Purpose Theme', '', 'https://1.bp.blogspot.com/-cyakP3A2sm4/X9ZFtKnWrlI/AAAAAAAABng/7rFkIrdimcQ_9u0T6UCBxlKguujCGHa1QCLcBGAsYHQ/s590/Enfold.png', 'publish', 'open', '2021-04-02 04:38:58', 0),
(1839, 1, '2020-12-13 23:17:59', 'Phlox is the best multipurpose Elementor theme you\'ve ever seen. It has more than 80 demos of Complete Elementor that can simply be imported and edited on Elementor.\n\nGet your site the way you want it much more customizable with Elementor Page Builder than any customizable WordPress theme available on the market, there are 160 elements available for Elementor and there are choices for anything, you have full control of any pixels on your website. Phlox has over 90 template elements', 'Phlox Pro v5.5.2– Elementor MultiPurpose WordPress Theme', '', 'https://1.bp.blogspot.com/-OTMDK2-5haY/X9ZN8J1invI/AAAAAAAABn8/zGAadf--7BIUiRKfvxnpfR5KAzGUovhQwCLcBGAsYHQ/s590/Phlox-Pro-1.jpg', 'publish', 'open', '2021-04-02 04:38:57', 0),
(1842, 1, '2020-12-13 23:40:37', 'Ohio – is a carefully designed multi-purpose, minimalist, beautiful, flexible portfolio and innovative showcase theme with a keen user interface that you need to create a modern and usable website and start selling your products and services. It comes with the most common WordPress page builder WPBakery Page Builder (formerly Visual Composer) plugin and ACF Pro theme settings. Develop slick, modern, and quick WooCommerce, store, portfolio, blog website, fast and uncoded.\n<h2 id=\"item-description__-some-core-features\"><strong>Some Core Features:</strong></h2>\n<ul>\n <li>Demo templates.</li>\n <li>Two popular builders.</li>\n <li>Reliable & regular updates.</li>\n <li>Figma source files.</li>\n <li>One-click import.</li>\n <li>Custom shortcode collection.</li>\n <li>Highly customizable.</li>\n <li>Child-theme ready.</li>\n <li>Responsive layouts.</li>\n <li>Smooth CSS3 animations.</li>\n <li>Built-in icons.SEO ready.</li>\n <li>HTML5 & CSS3 compatible.</li>\n</ul>', 'Ohio v2.3.0– Creative Portfolio & Agency WordPress Theme', '', 'https://1.bp.blogspot.com/-8TS_x3AiNDo/X9ZY1VC24bI/AAAAAAAABoY/v5NP0PtopuQq1_oEx-8dCXt4pVLIcPHrwCLcBGAsYHQ/s590/Ohio.jpg', 'publish', 'open', '2021-04-02 04:38:57', 0),
(1845, 1, '2020-12-14 00:02:08', 'With the help of the Consulting WP theme, you can easily build a modern website for any service that provides business with real content. Easily edit existing content and create a web layout with a drag & drop page creator (Elementor or WP Bakery).\r\n<h3 id=\"item-description__key-features\">Key Features:</h3>\r\n<ul>\r\n <li>40+ Custom Demos</li>\r\n <li>Cost Calculator</li>\r\n <li>GDPR plugin included</li>\r\n <li>Real-time Market Stocks module</li>\r\n <li>Real-time Forex Market module</li>\r\n <li>Template Library</li>\r\n <li>10 Language files included: English, German, French, Italian, Portuguese, Spanish, Russian, Persian/Arabic, Dutch, Turkish</li>\r\n <li>3 Service Page templates</li>\r\n <li>2 Portfolio Showcase Page templates</li>\r\n <li>2 Case Study templates</li>\r\n <li>2 Blog & News layout templates</li>\r\n <li>2 Team Page templates</li>\r\n <li>AMP ready</li>\r\n <li>Events and Appointment Module</li>\r\n <li>Built with SASS</li>\r\n <li>Mega Menu</li>\r\n <li>Cross-Browser Compatibility: Firefox, Safari, Chrome, IE10+</li>\r\n <li>Theme Options with Real-time WP Customizer</li>\r\n <li>Multi-location on Google Maps</li>\r\n <li>Revolution Slider included</li>\r\n <li>Responsive Layout on Bootstrap</li>\r\n <li>Parallax and Video Background</li>\r\n <li>800+ Google Fonts</li>\r\n <li>Elementor Page builder</li>\r\n <li>Visual Composer (WP Bakery) Page builder</li>\r\n <li>Regular Updates</li>\r\n <li>WooCommerce Shop</li>\r\n <li>Custom SVG icons</li>\r\n <li>FontAwesome icons</li>\r\n <li>WPML localization support</li>\r\n <li>One-click demo content import</li>\r\n <li>more...</li>\r\n</ul>', 'Consulting– Business, Finance WordPress Theme', '', 'https://1.bp.blogspot.com/-vcblGdQ4Kgo/YEjsZSCe9PI/AAAAAAAADBc/0LBurKAq21gpU0KarpcdK3YJDDOjECRrACLcBGAsYHQ/s885/00_cons.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:57', 0),
(1848, 1, '2020-12-14 08:47:04', 'Discy is an awesome, professional, and versatile WordPress theme for social questions and answers specifically designed for online communities, websites for niche questions and answers, marketing websites, websites for developers, or any kind of social communities.\n\nBuild a full-featured online question & response group such as StackOverflow, Quora, or Discy Now! Yahoo Answers!\n<ul>\n <li><strong>Custom Widgets</strong> with customization options ( 27 Widgets )\n<ul>\n <li>Discy – About</li>\n <li>Discy – Adv 120×240</li>\n <li>Discy – Adv 120×600</li>\n <li>Discy – Adv 125×125</li>\n <li>Discy – Adv 234×60</li>\n <li>Discy – Adv 250×250</li>\n <li>Discy – Social counter</li>\n <li>Discy – Facebook</li>\n <li>Discy – Social media</li>\n <li>Discy – Subscribe</li>\n <li>Discy – Twitter</li>\n <li>Discy – Video</li>\n <li>WPQA – Activities log</li>\n <li>WPQA – Buttons</li>\n <li>WPQA – Comments</li>\n <li>WPQA – Groups</li>\n <li>WPQA – Login</li>\n <li>WPQA – Notifications</li>\n <li>WPQA – Posts</li>\n <li>WPQA – Profile Strength</li>\n <li>WPQA – Questions Categories</li>\n <li>WPQA – Related Questions</li>\n <li>WPQA – Group Rules</li>\n <li>WPQA – Signup</li>\n <li>WPQA – Stats</li>\n <li>WPQA – Tabs</li>\n <li>WPQA – Users</li>\n</ul>\n</li>\n <li>and more?</li>\n</ul>', 'Discy - Social Questions and Answers WordPress Theme', '', 'https://1.bp.blogspot.com/-LbAQGikP_wA/X9bZhKzMKGI/AAAAAAAABpQ/xiOlqcTuQI0JwDhkVP-dkI0KxF913iKHACLcBGAsYHQ/s590/Discy-2.png', 'publish', 'open', '2021-04-02 04:38:57', 0),
(1853, 1, '2020-12-14 08:53:02', '<h2><strong>Purchase Proof:</strong></h2>\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-Kde88s59DJk/X94A73Jkl-I/AAAAAAAAB_Q/AezVfp4sn4MKIwmKu1vMXmjbAlzohGsYACLcBGAsYHQ/s1427/1608384226874.jpg\" width=\"583\" height=\"770\" />\n<h2 id=\"item-description__powerful-ecommerce-functionality\">Powerful eCommerce Functionality</h2>\nThe theme was built for WooCommerce, the most popular eCommerce solution for WordPress, which helps you sell anything online, shippable goods, virtual or digital files.\n<ul>\n <li>Sell Simple or Variable Products</li>\n <li>Sell Digital / Downloadable Products</li>\n <li>Sell External / Affiliate Products</li>\n <li>Built-in Order Tracking System</li>\n <li>Intricate Tax & Shipping Options</li>\n <li>Customers can Rate / Review Products</li>\n <li>Unlimted Categories & Sub-Categories</li>\n <li>Filter Products (eg by size, color, brands, categories, etc.)</li>\n <li>Powerful Store Management</li>\n <li>Built-in Coupon System</li>\n <li>Gain Insights from the Store Reports</li>\n <li>Easy Shipping Calculator</li>\n <li>Optional Wishlist & Compare</li>\n <li>Multi Vendor Marketplace</li>\n <li>Product Deals</li>\n <li>Advanced Live Search</li>\n <li>Search Products by SKU</li>\n <li>Gallery lightbox for product images</li>\n <li>Product Image Zoom</li>\n <li>Color, Label and Image Swatches</li>\n <li>Featured product video</li>\n <li>Product 360 Degree</li>\n <li>Product Quick View</li>\n <li>Instagram Product Photos</li>\n <li>Recently Viewed Products</li>\n <li>Frequently Bought Together</li>\n <li>Advanced Typography</li>\n</ul>\n \n\n \n\n \n\n ', 'Martfury– WooCommerce Marketplace WordPress Theme', ' \n\n \n\n \n\n \n\n ', 'https://1.bp.blogspot.com/-Mv15qCYSEH8/X9baxdo9xkI/AAAAAAAABpc/VHyxukavBigjmyhZXYjXKcoRnF5C-nckwCLcBGAsYHQ/s590/Martfury.png', 'publish', 'open', '2021-04-02 04:38:56', 0),
(1858, 1, '2020-12-14 11:01:44', 'Are you in the mood to create an online website? Don\'t worry even though you\'re not. Moody has been here to assist you, be it corporations, banking, or creative services, agencies & studios, or architects & interior designers, with whatever sort you would like. The idea for Moody\'s creation is to cram a large number of premade templates into one single theme. Thanks to its versatility and usability, we think Moody is always a perfect choice for you.', 'Moody v2.3.1– Corporate Business Agency WordPress Theme', '', 'https://1.bp.blogspot.com/-ChRVakN8pvU/X9b4ONgbZVI/AAAAAAAABqI/0gnRXplrrzwAIggwN8fsO3GRu2ApoIoswCLcBGAsYHQ/s590/Moody-1.png', 'publish', 'open', '2021-04-02 04:38:56', 0),
(1860, 1, '2020-12-14 11:05:26', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-59Z4_1UqaQs/YAlV8Zpz8kI/AAAAAAAACjA/FctydJhJkX8kO2BTkxHxMmVkkKvXWNMAgCLcBGAsYHQ/s1618/907%2B-%2BCopy.PNG\" width=\"577\" height=\"865\" />\n\nKinetika is a powerful full-screen photography theme sponsored by Woocommerce and includes event posts, photo proofing galleries and a range of portfolio showcase features. The theme is WPML multilingual ready and includes.po.mo language files for quick localization in any language. The theme of the retina is ready, completely responsive and simple to customise.', 'Kinetika– Fullscreen Photography Theme', '', 'https://1.bp.blogspot.com/-UW-NyCCJEVg/X9b5fIx_yKI/AAAAAAAABqU/surmohZoU5EgevKZPkthq-0AgAXPCssYgCLcBGAsYHQ/s590/Kinetika.jpg', 'publish', 'open', '2021-04-02 04:38:56', 0),
(1869, 1, '2020-12-14 17:39:20', '<h4>SEO is the most reliable source of traffic on any website. We have built Rank Math, a WordPress SEO plugin, to help any website owner get access to the SEO resources they need to boost their SEO and draw more traffic to their website.</h4>\r\n<h4>Rank math SEO plugin</h4>\r\n✔ Bloggers\r\n✔ eCommerce Store Owners\r\n✔ Niche Sites\r\n✔ Businesses\r\n✔ Local Businesses\r\n✔ Startups\r\n✔ The Real Estate\r\n✔ Artists & Photographers\r\n✔ The Solution Offerer\r\n✔ Directories\r\n✔ Or any WordPress Website\r\n\r\n \r\n\r\n \r\n\r\n ', 'Rank Math SEO PRO – WordPress SEO Plugin', ' \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-14Zw1Lx-KCk/X9gP_OGuHQI/AAAAAAAABrc/5g_BG6-Y8K8cREjadMJrllQBNHKXV4hawCLcBGAsYHQ/s590/Rank-Math-Pro.png', 'publish', 'open', '2021-04-30 14:59:54', 0),
(1875, 1, '2020-12-15 06:45:18', 'Newsomatic Automated News Post Generator Plugin for WordPress is an importer of news related material using NewsomaticAPI. It\'s perfect for auto blogging and automated content post publication. It uses the services of NewsomaticAPI to transform your website into an automated blogging machine or even a money-making machine!\nYou can automatically create posts using this plugin based on a set of predefined rules.\nWorks in every niche – transform your hobbies and interests into self-updating news pages!', 'Newsomatic v3.0.0.1– Automatic News Post Generator Plugin for WordPress', '', 'https://1.bp.blogspot.com/-LSADOOoX7b4/X9gNuV-qBII/AAAAAAAABrA/z_2JQu2PC0AcaE521LQBaHZZ_ZWxY4yuwCLcBGAsYHQ/s590/Newsomatic.png', 'publish', 'open', '2021-04-02 04:42:31', 0),
(1880, 1, '2020-12-15 07:23:30', 'VidoRev (Video Revolution) is a dynamic WordPress theme best suited for video, movie, news, magazine or blog. With powerful features for Video, this will offer a whole new experience.\n<h2 id=\"item-description__main-features\"><strong>Main Features</strong></h2>\n<table style=\"height: 933px;\" width=\"663\">\n<tbody>\n<tr>\n<td>\n<ul>\n <li>One Click Demo Import</li>\n <li><strong>API</strong>\n<ul>\n <li>Youtube Data API V3</li>\n <li>Youtube Player API</li>\n <li>Vimeo Data API V3</li>\n <li>Vimeo Player API</li>\n <li>Twitch Data API V5</li>\n <li>Twitch Embedded Video Player API</li>\n <li>Dailymotion Data API</li>\n <li>Dailymotion Player API</li>\n <li>Facebook Graph API V2</li>\n <li>Facebook Embedded Video Player API</li>\n <li>Google Drive API V2</li>\n <li>VidoRev Library Control Google Drive Video</li>\n</ul>\n</li>\n <li>WooCommerce Video Shop</li>\n <li>Instagram Feed</li>\n <li>Translation Ready</li>\n <li>Auto Detect Video Network</li>\n <li>Self-hosted Video Support</li>\n <li>User Submit Video</li>\n <li>Channel</li>\n <li>Subscriptions</li>\n <li>Facebook Comments</li>\n <li>Youtube Live Broadcast</li>\n <li>Video Series</li>\n <li>BuddyPress</li>\n <li>Disqus Comments</li>\n <li><strong>Fetching Video From YouTube Automatically:</strong>\n<ol>\n <li>Video Thumbnail</li>\n <li>Video Title</li>\n <li>Video Description</li>\n <li>Video Tags</li>\n <li>Video Duration</li>\n <li>Video View Count</li>\n <li>Video Like Count</li>\n <li>Video Dislike Count</li>\n</ol>\n</li>\n <li><strong>Fetching Video From Vimeo Automatically ( private video supported ):</strong></li>\n <li>User Submit Post</li>\n <li>User Submit Playlist</li>\n <li>User Submit Channel</li>\n <li>User Ads Settings</li>\n <li>BuddyPress & myCred</li>\n <li>Preview Mode</li>\n <li></li>\n</ul>\n</td>\n</tr>\n</tbody>\n</table>', 'VidoRev v2.9.9.9.8.0– Video WordPress Theme', '', 'https://1.bp.blogspot.com/-CBYHW5sq0tQ/X9gWxuTDkFI/AAAAAAAABr4/eT2AirmCw-MPtxl6MA_5car_E4xX1akwQCLcBGAsYHQ/s590/VidoRev.png', 'publish', 'open', '2021-04-02 04:38:56', 0),
(1883, 1, '2020-12-15 07:37:33', 'Supro is a clean & minimal AJAX WooCommerce WordPress theme for online shopping. With minimal design and product emphasis, Supro will make your online store look more eye-catching and appealing to viewers. Help increase the high conversation rate to purchase a product so easily with your customers. This theme is suited for a wide variety of e-commerce websites, such as fashion stores, furniture stores, decoration stores, etc.\n\nIn addition, this awesome theme is integrated with WooCommerce, several plugins with tonnes of features, mini cart, custom widgets, limitless colour schemes, smooth transition effects slider, multi-column style menu and advanced widgets... you are free to control this theme in order to make your store more comfortable and adorable to your customers.', 'Supro v1.5.9– Minimalist AJAX WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-uoCn4mgM5lc/X9gacs6o_RI/AAAAAAAABsU/du8dvxaacNgHk_zThOU9j82gmyLUBKILwCLcBGAsYHQ/s590/Supro-1.jpg', 'publish', 'open', '2021-04-02 04:38:56', 0),
(1886, 1, '2020-12-15 07:42:27', 'This stunning WordPress theme is ideally suited for Hotels, Apartments, Holiday Rentals, Beach Houses, Chalets, Cabins and Cottages.\n\nThis theme has it all. It contains everything you\'d expect from a premium WordPress theme and will help you create a great hotel or Bed and Breakfast website.\n\nThis WordPress theme will help you simplify and automate the booking process, impress your guests with a beautiful interface, and convert customers with availability calendars, formwork and page purchases.', 'Bellevue v3.2.13 | Hotel + Bed and Breakfast Booking Calendar Theme', '', 'https://1.bp.blogspot.com/-LsKOGG6BSsw/X9gb2Z2k6eI/AAAAAAAABsg/I_gW7ADuGawMWFY959tSkbnlrAQ9WNQqQCLcBGAsYHQ/s590/Bellevue-2.jpg', 'publish', 'open', '2021-04-02 04:38:55', 0),
(1890, 1, '2020-12-15 07:49:54', 'Claue is a feature packed Premium WooCommerce theme for WP with a sleek look, minimal feel, bundled with powerful plugins to create flexible online stores.', 'Claue v2.0.8– Clean, Minimal WooCommerce Theme', '', 'https://1.bp.blogspot.com/-0Tv6gx_ZlNM/X9gdWVIYKcI/AAAAAAAABs8/I4daOZs8E6s79DAl-g0Ol1rRsEnigOJlQCLcBGAsYHQ/s590/Claue.jpg', 'publish', 'open', '2021-04-02 04:38:55', 0),
(1893, 1, '2020-12-15 07:55:11', 'The eCademy is a modern WordPress theme deliberately developed and created for online training and education! Suitable for Educational Institutes, Online Course Providers, Online Training, Learning Management, Vendor Certification Training, eSchool, LMS, Language School, Distance Learning Providers, Modern Schooling, Yoga Courses, Wellness Coaching, Kindergarten, etc. Theme created by Elementor, ACF Pro, Redux, LearnPress, Tutor LMS, LearnDash, WooCommerce, Bootstrap 4.x, and CSS.\r\n<h2 id=\"item-description__ecademy-features\">eCademy Features:</h2>\r\n<ul>\r\n <li><strong>For Education, Online Courses, Coaching & Training Providers</strong></li>\r\n <li><strong>9+ Demo Variations</strong> and More Adding Soon</li>\r\n <li><strong>Learnpress, Tutor LMS & LearnDash LMS Compatible</strong></li>\r\n <li><strong>Certificate for Courses</strong></li>\r\n <li><strong>Certificate Printing</strong> Feature</li>\r\n <li><strong>WP Events Manager</strong></li>\r\n <li><strong>Course Membership option for LearnPress</strong></li>\r\n <li><strong>Grading System</strong> Feature</li>\r\n <li><strong>Content Drip</strong> Feature</li>\r\n <li><strong>Elementor</strong> Page Builder</li>\r\n <li><strong>Advanced Custom Field Pro</strong></li>\r\n <li>50+ Elementor Brilliant Custom Widgets</li>\r\n <li><strong>One Click Demo Data Import</strong></li>\r\n <li><strong>WooCommerce Payment Option for Courses</strong></li>\r\n <li><strong>WooCommerce Shopping</strong> Feature</li>\r\n <li>Translation Ready</li>\r\n <li><strong>RTL Included for Arabic and Hebrew Language</strong></li>\r\n <li>Compitable with <strong>WPML</strong></li>\r\n <li><strong>Private Messaging</strong></li>\r\n <li><strong>Zoom Plugin</strong> Support for <strong>Live Classes</strong></li>\r\n <li><strong>Google Classroom</strong></li>\r\n <li><strong>Live Streaming</strong></li>\r\n <li><strong>LearnPress – Offline Payment</strong> Plugin Support</li>\r\n <li>Compitable with <strong>Yoast SEO</strong> Plugin</li>\r\n <li><strong>GDPR</strong> Compliant</li>\r\n <li>Compitable with <strong>bbPress</strong> Plugin</li>\r\n <li><strong>MailChimp</strong> Ajax Subscription</li>\r\n <li><strong>Header & Footer Builder</strong></li>\r\n <li><strong>Banner Options to Page, Signle Blog, Event & Single Product</strong></li>\r\n <li><strong>Footer Hide/Show Option</strong></li>\r\n <li><strong>Different Blog Layouts Options</strong></li>\r\n <li><strong>Page Padding Option</strong></li>\r\n <li><strong>Page Banner Background Image/Color Option</strong></li>\r\n <li><strong>Page Banner Content Alignment Option</strong></li>\r\n <li><strong>Page Banner Header Layout Option</strong></li>\r\n <li><strong>Page Banner Menu item, Sticky Menu Item, & Menu Item Active Color Option</strong></li>\r\n <li><strong>Preloader with Three Style Text/Spain/Image</strong></li>\r\n <li><strong>Custom Fonts Option</strong></li>\r\n <li><strong>Redux Framework</strong> Theme Option</li>\r\n</ul>', 'eCademy – Elementor LMS & Online Courses Theme', '', 'https://1.bp.blogspot.com/-J8fBF-dNYt8/X9gfFlMt_WI/AAAAAAAABtY/KfssHDy7dGstFS7twkIdM0nTJgDWPrYxQCLcBGAsYHQ/s590/eCademy-1.jpg', 'publish', 'open', '2021-06-18 13:01:37', 0),
(1896, 1, '2020-12-15 08:03:16', 'ZoxPress is the culmination of 8+ years of WordPress theme creation and client feedback. With a host of new features coupled with a host of requested features over the years, ZoxPress gives you every tool and design you want to publish the most professional news site possible. With 100 different homepage variations, all-new Night Mode, Parallax Inline Article Ads, Auto Loaded Posts, One-Click Demo Download, and a host of other features, ZoxPress could just be the latest news theme you\'ve ever had.\n<h3 id=\"item-description__complete-list-of-features\">Complete List of Features</h3>\n<ul>\n <li>Compatible with WordPress 5.5+</li>\n <li>SEO Optimized</li>\n <li>RTL Ready</li>\n <li>Google AMP ready</li>\n <li>HTML5 & CSS3</li>\n <li>Auto Load Posts</li>\n <li>Translation ready (contains .po/.mo files)</li>\n <li>Child Theme included</li>\n <li>One-Click Demo Import with XML dummy data (posts, tags, categories, menus, dummy images)</li>\n <li>Easy implementation with Google Adsense ads</li>\n <li>WordPress Featured Image support</li>\n <li>WordPress Custom Background support</li>\n <li>WordPress Custom Menu support</li>\n <li>Unlimited Colors</li>\n <li>Youtube, Vimeo, and Soundcloud integration</li>\n <li>Schema.org Rich Snippets</li>\n <li>Custom Fly-Out Navigation</li>\n <li>WooCommerce compatible</li>\n <li>bbPress compatible</li>\n <li>Infinite Scroll</li>\n <li>Custom Theme Options panel</li>\n <li>Custom CSS section in Theme Options so users will not lose custom changes to CSS when you update to a new version</li>\n <li>Full-Width Posts</li>\n <li>Megamenus</li>\n <li>Facebook comments support</li>\n <li>Built-In Disqus comments support</li>\n <li>Free lifetime updates</li>\n <li>Easy logo customization</li>\n <li>900+ Google Fonts</li>\n <li>Threaded comments</li>\n <li>Ability to turn Featured Image on posts on/off</li>\n <li>Ability to turn social buttons on posts on/off</li>\n <li>Custom copyright/footer text</li>\n <li>Custom favicon</li>\n <li>In-depth documentation</li>\n <li>And much more!</li>\n</ul>', 'ZoxPress v2.0.0– All-In-One WordPress News Theme', '', 'https://1.bp.blogspot.com/-pZDRLxCumHI/X9ggdqimKlI/AAAAAAAABt8/MhfQlfE1YsQ1F9_uMIg13QrE7RjVcn6gQCLcBGAsYHQ/s590/ZoxPress-1.jpg', 'publish', 'open', '2021-04-02 04:38:55', 0),
(1899, 1, '2020-12-15 08:21:07', '<span id=\"inputElements~63d74a5633d864d1\" class=\"MuiTypography-root\">Aardvark is a complete community focussed WordPress theme.</span><span id=\"inputElements~68b090b6dd804306\" class=\"MuiTypography-root\"> Buy with confidence from an elite author specialising in BuddyPress themes.</span>', 'Aardvark v4.28– Community, Membership, BuddyPress Theme', '', 'https://1.bp.blogspot.com/-IbP7M0BjPg8/X9gkNNOkHTI/AAAAAAAABuo/JQqZLKOI2ow8ZvrLFRa6brek3-QpSNtrQCLcBGAsYHQ/s590/Aardvark-3.jpg', 'publish', 'open', '2021-04-02 04:38:54', 0),
(1901, 1, '2020-12-15 08:24:57', '<span id=\"inputElements~86021c2ac63cd09d\" class=\"MuiTypography-root\">The most powerful WordPress theme for video-based websites.</span><span id=\"inputElements~0357035c3398f61b\" class=\"MuiTypography-root\"> Built upon our True Mag theme, biggest video theme on market, VideoPro has more unique features which help you to build any kind of video websites.</span><span id=\"inputElements~871a323b8f943a54\" class=\"MuiTypography-root\"> Whether it is about game, movie, news, entertainment, science… VideoPro can do it!</span>', 'VideoPro– Video WordPress Theme', '', 'https://1.bp.blogspot.com/-CQf1LdB-Et0/X9glmRHBmAI/AAAAAAAABu0/_Bj94-DdnwknbWo58TwwBhJyW-s7Jjt4gCLcBGAsYHQ/s590/VideoPro-1.jpg', 'publish', 'open', '2021-04-02 04:38:54', 0),
(1904, 1, '2020-12-15 08:32:03', 'We are very pleased to present Modus, a WooCommerce furniture Theme to you! Comes with 12 stunning pre-defined homepages, Modus suits a variety of websites such as furniture store, furniture marketplace, wood shop, TS Glass shop, fabric shop, interior shop, architecture shop, equipment shop, and much more for e-commerce.', 'Modus v1.6.2– Modern Furniture WooCommerce Theme', '', 'https://1.bp.blogspot.com/-cxZ2BxIWTag/X9gnVzvsI2I/AAAAAAAABvQ/09HSxxzgniMrJEZNKi1qmx9FLzck6IT9QCLcBGAsYHQ/s590/Modus-1.jpg', 'publish', 'open', '2021-04-02 04:38:54', 0),
(1906, 1, '2020-12-15 09:05:21', 'Turitor is an excellent solution for developing educational websites, online courses, LMS, educational content marketers and more. The theme also provides built-in layout for the university, kindergarten, so that you can use it to easily launch a university or school website.\n\nTuritor also featured the LearnPress, LearnDash and Tutor LMS plug-in, which enhances the theme of a full learning management system (LMS). So you can create curricula, quizzes, lesson schedules, and more. The theme is also compatible with WooCommerce.\n\n ', 'Turitor v1.3.0– LMS & Education WordPress Theme', '', 'https://1.bp.blogspot.com/-rBfh5xzl1QU/X9gvGtMfR7I/AAAAAAAABv8/wXGpnz6o0WANra0Nkrk12fqmFaJc4g2VwCLcBGAsYHQ/s590/Turitor.png', 'publish', 'open', '2021-04-02 04:38:54', 0),
(1916, 1, '2020-12-15 11:44:44', 'Book Your Travel – a dynamic WordPress theme with an online booking and scheduling system for hotels, tours, cruises, car rental, and travel agencies.\r\n\r\nThis fully customizable WordPress theme has been planned and built specifically for travel agents, tour operators, cruise operators, car rental companies and others in the tourism industry. Ready to translate into any language, Book Your Travel features such as a powerful and fully integrated booking system, an accurate availability checker, advanced search filtering, a marketplace where users (vendors) can send and manage their listings, availability, prices and bookings.', 'Book Your Travel– Online Booking WordPress Theme', '', 'https://1.bp.blogspot.com/-BuDOLOT9GRg/X9hTLlBMDFI/AAAAAAAABw0/ycwwDgwBHlMYoGNv4RgwD64giWmS6Cg6ACLcBGAsYHQ/s590/Book-Your-Travel-2.png', 'publish', 'open', '2021-04-02 04:38:53', 0),
(1918, 1, '2020-12-15 11:49:08', 'Gutentype is a modern clean WordPress Blog focused on the Gutenberg page builder. It\'s perfect for guest post blog, rouge, niche blogs, giver, viral blogs, giveaways, guides and blogs. It also suits homer, tell-all, business, cryptocurrency, specialist, reverse, writer & world news.', 'Gutentype | 100% Gutenberg WordPress Theme for Modern Blog + Elementor', '', 'https://1.bp.blogspot.com/-PbKdx4NV7wQ/X9hVi_qs8UI/AAAAAAAABxQ/2WobFWjprbkRfEWYMrpJwLsptVWQuWwlwCLcBGAsYHQ/s590/Gutentype-1.jpg', 'publish', 'open', '2021-04-02 04:38:53', 0);
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(1920, 1, '2020-12-15 12:01:54', 'Ostrya is a premium WordPress theme built for Computer & Laptop repair service companies and home repair services companies who want a professional online presence, Ostrya provide several features to quickly build your own company website without writing any lines of code. Built on Visual Composer Creator, which will help you quickly create new pages and re-arrange your current structure, just like you want.', 'Ostrya– Computer and Mobile Phone Repair Service WordPress Theme', '', 'https://1.bp.blogspot.com/-ZfRnNAPjtsM/X9hYsGpPCwI/AAAAAAAABxs/pGN0sXlShgkkxtVukxlAZWB_FLVNmZpwQCLcBGAsYHQ/s590/Ostrya-1.jpg', 'publish', 'open', '2021-04-09 19:49:24', 0),
(1923, 1, '2020-12-15 12:07:22', 'Traveler – Travel Booking WordPress Theme lets you save time, save money, save face, save anything you can save for online booking travel: with completely customizable booking type, flexible online payments, automatic alerts, Affiliate system earnings, Google Calendar sync, TripAdvisor Calendar, Airbnb Calendar, HomeAway Calendar.', 'Traveler– Travel Booking WordPress Theme', '', 'https://1.bp.blogspot.com/-AEfYvF5aZkw/X9hZiJVq5MI/AAAAAAAABx0/u7CX_4metWIvekXTMQwXc5Blm0fLUDErgCLcBGAsYHQ/s590/Traveler-1.jpg', 'publish', 'open', '2021-05-10 18:51:27', 0),
(1927, 1, '2020-12-15 12:19:08', 'Konte is a unique modern WordPress e-commerce theme designed with Bootstrap and powered by WPBakery Page Creator. It was designed for your digital shop, hi-tech store, watch store, men\'s store, women\'s store, apparel store, furniture store, bookstore, cosmetics store, luxury jewellery store, and accessories store.\n\nIn addition, this awesome theme is integrated with WooCommerce, several plugins with tonnes of features, mini cart, custom widgets, limitless colour schemes, smooth transition effects slider, multi-column style menu and advanced widgets... you are free to control this theme in order to make your store more friendly and adorable to your customers...', 'Konte– Minimal & Modern WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-iZvPr5Cfybw/X9hcDT2V9NI/AAAAAAAAByQ/vmnIhwdJa5otK0LvW3ZRcZWek_nQM5-UwCLcBGAsYHQ/s590/Konte-1.jpg', 'publish', 'open', '2021-04-02 04:38:52', 0),
(1930, 1, '2020-12-15 12:23:37', 'Calafate is a modern way for designers, developers, and users to get to know WordPress. The Portfolio website has been updated to showcase your most valuable material.\n\nJust as daring pioneers sculpt paths to new ways of living, thinking beyond the square and challenging the limits of human experience, your work also deserves new and original ways of connecting with your audience.', 'Calafate– Portfolio & WooCommerce Creative WordPress Theme', '', 'https://1.bp.blogspot.com/-yr0Cy1GcStA/X9hdZup-vtI/AAAAAAAAByc/EqfBYeEGSNA1NRA9f-8suRwlmC9mjsLiACLcBGAsYHQ/s590/Calafate.jpg', 'publish', 'open', '2021-04-02 04:38:52', 0),
(1933, 1, '2020-12-15 13:53:33', '[button size=\"medium\" style=\"primary\" text=\"DEMO\" link=\"https://themeforest.net/item/shoppystore-woocommerce-wordpress-theme/13607293\" target=\"\"]\n\nShoppyStore is a professional WordPress WooCommerce theme that is tested with a clean and elegant interface. It definitely suits every eCommerce WordPress store from electronics store, digital store, hitech store, fashion store, furniture store, baby shop.\n\nIt\'s not only about a beautiful design, but also about a completely functional theme that focuses on user interface and usability with a large range of awesome features. This WordPress eCommerce theme is integrated with bbPress that allows you to quickly create good communication along your WooCommerce store. In addition, Rich Snippets is now helping you to easily enhance your SEO experience.', 'ShoppyStore– Multipurpose Elementor WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-hzhqb8s-Enw/X9hx36CHaAI/AAAAAAAABzI/JAs6h6vZx-UNiy4qtnVXp9gbXVxdS2OxACLcBGAsYHQ/s590/ShoppyStore-1.jpg', 'publish', 'open', '2021-04-02 04:38:52', 0),
(1955, 1, '2020-12-15 14:02:15', '', 'Airi– Clean, Minimal WooCommerce Theme', '', 'https://1.bp.blogspot.com/-XvMr7-Ox3IM/X9h0MxUyMMI/AAAAAAAABzk/SuRZd5MnEvYybRpQW5Gxo-ODWxYyyCT8ACLcBGAsYHQ/s590/Airi.jpg', 'publish', 'open', '2021-04-02 04:38:52', 0),
(1984, 1, '2020-12-16 07:44:13', 'SweetDate is an exclusive, clean and modern Premium Wordpress style. It is ideal for a dating or community website but can be used as well for any other domain. We\'ve added all the things you need to build a great group framework. Although we first developed it to be used as a WordPress dating theme, SweetDate can be modified to fit any business domain.', 'Sweet Date– More than a WordPress Dating Theme', '', 'https://1.bp.blogspot.com/-CIhNXj53sWY/X9lsrz6nmDI/AAAAAAAAB0A/J9qnOvYu98UYuoqEx_NOigjL8QA_wQPHQCLcBGAsYHQ/s590/Sweet-Date.png', 'publish', 'open', '2021-04-02 04:38:51', 0),
(1987, 1, '2020-12-16 07:57:51', ' \n\n ', 'Werkstatt– Creative Portfolio WordPress Theme', ' \n\n ', 'https://1.bp.blogspot.com/-cpsYmH-NRJE/X9lwi3csPsI/AAAAAAAAB0c/ZEo0Za1570A9B7NHppW8HNcBpQZ9pWKvgCLcBGAsYHQ/s590/Werkstatt.jpg', 'publish', 'open', '2021-04-02 04:38:51', 0),
(1990, 1, '2020-12-16 08:01:50', 'The primary role of the theme is to decide how the website looks and not how it functions. The \"how it works\" portion is intended for plugins and is called the plugin territory. Many of the themes of the Job Board attempt to add features that are obviously beyond the reach of the theme and thereby invade the Plugin Territory. This creates a great deal of frustration for the user, as the user will never be able to change the theme or risk losing the website, its data and features.\n\nJobhunt is an easy-to-use, cleanly coded and quick WordPress Job Board theme based on the concept of separation of concerns for WP Job Manager. Supports all the features of WP Work Manager, such as Filterable Job Openings, Job Submissions, Employer Dashboard and Job Submissions.', 'Jobhunt– Job Board WordPress theme for WP Job Manager', '', 'https://1.bp.blogspot.com/-C4FPyxfta7k/X9lxUUg7GWI/AAAAAAAAB0k/QckI_3VCilwgEnZ6NKi8S5xO9l-_jc8fwCLcBGAsYHQ/s590/Jobhunt.png', 'publish', 'open', '2021-04-02 04:38:51', 0),
(1993, 1, '2020-12-16 08:09:54', 'Grand News is a news and editorial focus design tool. It provides responsive, clean and minimal WordPress theme for editorial news and bloggers. Using the latest WordPress technologies and supporting numerous common WordPress plugins. Grand News help responsive layout to make it look fantastic on all platforms. It has predefined exclusive demos that are specifically built for news & editorial, and many more that can be imported with a single click.', 'Grand News | Magazine Newspaper WordPress Theme', '', 'https://1.bp.blogspot.com/-ut1sh87CH9s/X9lyv-ZFTfI/AAAAAAAAB0w/vNiRpdkWcMcTLU-_iUrmsdJSC_IbirRCwCLcBGAsYHQ/s590/Grand-News.png', 'publish', 'open', '2021-04-02 04:38:51', 0),
(1995, 1, '2020-12-16 08:43:24', '<blockquote><img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-sEw2Fd23zbo/YApH5EfKrqI/AAAAAAAACl4/mVAoFqWW5O490r4wiwYV2IGum9qvqr1JwCLcBGAsYHQ/s1542/1611286395441.png\" width=\"512\" height=\"769\" /></blockquote>\r\nIf you want a special, tidy, modern and beautiful design, BosMarket will surely meet all your expectations. With more than 10 years of experience in Web Design, we are developing BosMarket as one of the most scalable multi-vendor WordPress WooCommerce theme.\r\n\r\nWith 12+ unique home pages, 2 mobile templates, multi-seller support and loads of HOT WooCommerce features, this will be a perfect option for any kind of store or marketplace.', 'BosMarket- Multivendor Elementor WooCommerce Theme', '', 'https://1.bp.blogspot.com/-0Nw9QzWlCqE/X9l6z061snI/AAAAAAAAB1c/5oeUsKjVF_oRIh_Mte0VVFBw8Q-0ymoLgCLcBGAsYHQ/s590/BosMarket.jpg', 'publish', 'open', '2021-07-21 13:29:48', 0),
(2003, 1, '2020-12-16 09:01:58', '<h2>General Features</h2>\n<ul>\n <li>Easy to Get Started</li>\n <li>Fully Responsive & Retina ready</li>\n <li>Elementor Widgets ready</li>\n <li>WPBakery Page Builder, Revolution Slider & Ultimate Addons are included</li>\n <li>WooCommerce Support for Payments</li>\n <li>Multi Language Ready</li>\n <li>Powerful Theme Admin</li>\n <li>WordPress 5.1+ and Gutenberg Blocks Ready</li>\n <li>STRIPE SCA Regulations for EU Market ready</li>\n <li>GDPR Ready</li>\n <li>Optimized for Google Maps API or Open Street Map</li>\n <li>Subscriber Types: Agent, Agency, Developer or Standard User</li>\n <li>WpEstate CRM</li>\n <li>Header & Menu Options</li>\n <li>Maps and Price Pins</li>\n <li>Advanced Search Options</li>\n <li>Radius Search</li>\n <li>Properties List Options</li>\n <li>Property Subunits</li>\n <li>PDF Print Elements Management</li>\n <li>Similar Properties</li>\n <li>Virtual Tour</li>\n <li>Front End Property Submission</li>\n <li>Front End Property Submission Form Control</li>\n <li>Contact Page & Contact Forms</li>\n <li>Design Options</li>\n <li>Custom Colors</li>\n <li>Footer Options</li>\n <li>Typography Options</li>\n <li>Blog List Layouts</li>\n <li>Unlimited Sidebars</li>\n <li>Optimized for Speed</li>\n <li>Translation Ready</li>\n <li>Elementor Compatible</li>\n</ul>', 'WP Residence-Real Estate WordPress Theme', '', 'https://1.bp.blogspot.com/-TxrcO4P4Bgk/X9l_itkgyFI/AAAAAAAAB14/WZLxZyPqlbQMJade_CsnGE_EsrC5w2YLACLcBGAsYHQ/s590/WP-Residence.jpg', 'publish', 'open', '2021-04-02 04:38:50', 0),
(2006, 1, '2020-12-16 09:09:46', 'Authentic is a light & minimal WordPress theme that\'s well suited to lifestyle bloggers & magazines. It has so many wonderful features that make your blog or magazine stand out from others. Let your visitors enjoy the clean, contemporary design of your latest Authentic-powered website.\n<h2 id=\"item-description__theme-features\">Theme Features</h2>\n<ul>\n <li>Super Clean Design</li>\n <li>Highly Customizable</li>\n <li>Many Ways to Show your Content</li>\n <li>Pinterest Integration</li>\n <li>Great Social Engagement</li>\n <li>Additional Content Formatting Features</li>\n <li>Ultra Responsive</li>\n <li>Effective Support</li>\n <li id=\"item-description__4-home-page-sliders\">4 Home Page Sliders</li>\n <li id=\"item-description__archive-layouts\">Archive Layouts</li>\n <li id=\"item-description__general-site-layout\">General Site Layout</li>\n <li id=\"item-description__post-amp-page-featured-images\">Post & Page Featured Images</li>\n</ul>', 'Authentic– Lifestyle Blog & Magazine WordPress Theme', '', 'https://1.bp.blogspot.com/-qG-_Rw5EkI0/X9mA45euKtI/AAAAAAAAB2E/Iz1dsizyJnwvswqNF-EKruAt907CEjetACLcBGAsYHQ/s590/Authentic-2.jpg', 'publish', 'open', '2021-04-02 04:38:50', 0),
(2011, 1, '2020-12-16 10:15:13', '<h1 style=\"text-align: center;\"><strong><a href=\"https://digits.unitedover.com/demo/page-builder-full-page/?redirect_to=https%3A%2F%2Fdigits.unitedover.com%2Fdemo\">LIVE DEMO</a></strong></h1>\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-uI_qeor17vY/YAlYle2c03I/AAAAAAAACjs/1HMfHLREgdc1rTy-u23XZsSnIvNLq93ugCLcBGAsYHQ/s1323/breek.PNG\" width=\"530\" height=\"649\" />\r\n\r\nDigits let your user signup on your website simply with their mobile number. No more checking emails. Just SMS In this fast world, no one has time to SignUp on your website using traditional email, because this is not the single step involved, user has to log into the email account – open email – click on the verification link to verify the email and then he/she gets access to the account on your website. And then comes the passwords, even if he manages to do that all the most important thing to remember to gain access to account is password. Now if he/she forgets it again the user has to go through all the pain he went while signing up. <strong>Just because of all these things now-a-days websites are loosing their customers as no one has time for all these things.</strong>\r\n<h2 id=\"item-description__but-with-digits-this-changes\">But with Digits This Changes</h2>\r\nAs mobile being the only thing human spend the most time with, we take WordPress SignUp and Login to the next level. Now user can create an account by just providing his/her mobile number and Login using OTP (One Time Password) Passcode. No passwords compulsory\r\n\r\n<!--more-->\r\n\r\n ', 'Digits: WordPress Mobile Number Signup and Login', '', 'https://1.bp.blogspot.com/-LoWc7i8BWpw/X9mPTY0PMDI/AAAAAAAAB2w/UsO5s2qtyNAp2-iagVo8ulBiLUgFrco5QCLcBGAsYHQ/s1920/2.png', 'publish', 'open', '2021-04-02 04:42:30', 0),
(2015, 1, '2020-12-16 11:45:14', 'Tutor lms pro, is a complete, feature-packed and robust WordPress LMS plugin that allows you to easily build and sell courses online. All the functionality of this learning management system impact all checkpoints for a full-fledged online course marketplace. You can create challenging and enjoyable quizzes, interactive tutorials, powerful reports and statistics that make Tutor potentially the best free WordPress LMS plugin.\n\n<strong>Purchase Proof-</strong>\n\n<img src=\"https://1.bp.blogspot.com/-1U-IaiRtf2k/X92BlrLi9xI/AAAAAAAAB74/D2b-sP9VELMgOBowiz-OMH8ZUm4uwZmugCLcBGAsYHQ/s2340/tutor%2Blms%2Bpro%2B.jpg.jpg\" />\n\n<img src=\"https://1.bp.blogspot.com/-Dd1lic9dFjY/X92Bl1KxMeI/AAAAAAAAB78/0g74zDMZt3wehWEc-guwfGZEpWa2ObetQCLcBGAsYHQ/s1227/tutor%2Blms%2Bpro.jpg\" />', 'Tutor LMS- Most Powerful WordPress LMS Plugin', '', 'https://1.bp.blogspot.com/-cmFYb-QfE_w/X9mltOapISI/AAAAAAAAB3M/2-GINszAZesuJtI56t7mCFmCwNIvS6pHACLcBGAsYHQ/s1140/f-Tutor-LMS-Assignments.png', 'publish', 'open', '2021-04-02 04:42:30', 0),
(2020, 1, '2020-12-16 12:24:20', '<span style=\"font-size: 115%;\">WP Smush Pro Plugin Free Download-WP Smush Pro is a WordPress image optimization plugin that works best and is easy to use. This plugin was developed by WPMU DEV\'s experienced developers, who are the developers of several other excellent plugins for WordPress. Defender, Hummingbird, SmartCrawl, and hustle plugins, for example, are all developed by the same team of developers. Without any visual quality loss, the WP Smush Pro plugin compresses all your pictures and reduces their dimensions.</span>\n\n ', 'WP Smush Pro- Image Optimizer for WordPress', '', 'https://1.bp.blogspot.com/-XPJ58Pvj7nY/X9muog2wkrI/AAAAAAAAB3o/orFlDaIgqCgMeMjkpHZ0y58Pdh2AjaO3wCLcBGAsYHQ/s590/Smush-Pro-Image-Optimization-Plugin-for-WordPress.png', 'publish', 'open', '2021-04-02 04:42:30', 0),
(2023, 1, '2020-12-16 12:44:13', 'Ninja Popups is one of the most popular WordPress pop-up plugins on the market. I\'m not saying that you should always follow the crowd, popularity is generally a telling indication when it comes to efficiency.\n\nThe reason why Ninja Popups is one of my favourite plugins is because they deliver a comprehensive list of features, the popups are incredibly sensitive and work well on mobile devices in addition to desktop browsers, and it\'s easy for anyone to customise this plugin, even if you don\'t have any coding experience.', 'Ninja Popups- Popup Plugin for WordPress', '', 'https://1.bp.blogspot.com/-yVwgvYhYYyY/X9myhs8E9QI/AAAAAAAAB4E/SMXcBcCs8xweo7E_4b40ECg5UnUqdGm5wCLcBGAsYHQ/s590/Ninja-Popups.jpg', 'publish', 'open', '2021-04-02 04:42:30', 0),
(2028, 1, '2020-12-16 15:27:10', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-fgry45VYmjU/YAlPoQT4n-I/AAAAAAAACh8/FgDhzBPKneozKsACMcLfFQielwBhSF3TgCLcBGAsYHQ/s1562/1611147114419.png\" width=\"547\" height=\"792\" />\r\n\r\nIn this world of multipurpose themes filled with more features than required and attempting to be like a Swiss Army Knife, Tokoo – Electronics Store WooCommerce Theme is a chef\'s knife. To help you create your eCommerce website that looks like one of the top websites for eCommerce, it is designed for only one reason. In new-age eCommerce websites, we have imbibed the latest trends such as smaller fonts, simpler headers, cleaner checkout, improved navigation, and less white room.', 'Tokoo– Electronics Store WooCommerce Theme for Affiliates, Dropship and Multi-vendor Websites', '', 'https://1.bp.blogspot.com/-lRlC7o5hGTQ/X9nZn84SDwI/AAAAAAAAB4g/J57usLOW1gMnhsNdscGhjPRekkCP05CkQCLcBGAsYHQ/s590/01_Preview.png', 'publish', 'open', '2021-06-23 10:52:46', 0),
(2031, 1, '2020-12-16 15:34:23', '<h4><strong>Plugin Features:</strong></h4>\n<ul>\n <li>Ultra-Flexible Column Layouts</li>\n <li>Build at the Speed of Thought</li>\n <li>Attention-Grabbing Text & Image Combinations</li>\n <li>Landing Page Templates</li>\n <li>Total Font Customization</li>\n <li>Pre-Built Conversion Elements</li>\n <li>Full-Width Layouts With a Wow Factor</li>\n <li>Create a High-Converting Homepage</li>\n <li>Create Sales Pages</li>\n <li>Advanced Hover Effects</li>\n <li>Style Every Detail, No Coding Needed</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Thrive Themes Architect– WordPress Plugin', '', 'https://1.bp.blogspot.com/-JBbNiLAae_w/X9nbFz8Zu4I/AAAAAAAAB4s/OWOGZxpFMe0P0UOoCczhOntv1Ek1BlTNwCLcBGAsYHQ/s1200/Thrive-Architect-Plugin.jpg', 'publish', 'open', '2021-04-02 04:42:30', 0),
(2033, 1, '2020-12-18 14:44:52', 'Everyone\'s in love with coupons. This plugin has everything you need to boost sales and customers using discounts, coupons, credits, vouchers, product gifts, deals and promotions. This is the best-selling and most full coupon management plugin for WooCommerce.', 'Smart Coupons- WooCommerce Coupon Plugin', '', 'https://1.bp.blogspot.com/-cXs9DiSoswo/X9xypArwb2I/AAAAAAAAB6A/1K5TmgmvDSkjJnzc12sTH22F7FXyUUngACLcBGAsYHQ/s900/woocommerce-smart-coupons-header-banner-900px.png', 'publish', 'open', '2021-04-06 21:27:34', 0),
(2102, 1, '2020-12-18 14:57:01', '\"WooCommerce Search Engine\" is a really useful and easy-to-use WooCommerce Search Plugin that transforms your WooCommerce Store\'s basic search box into a powerful multi-functional magic box that lets you sell more items. The UI plugin is compatible with ALL THEMES.', 'WooCommerce Search Engine', '', 'https://codecanyon.img.customer.envatousercontent.com/files/321439618/preview2.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=57f886fd714d1a147ac66cd2fadb3274', 'publish', 'open', '2021-04-06 21:23:01', 0),
(2107, 1, '2020-12-18 15:36:46', 'Your check-out is the most critical aspect of your shop. Make sure you collect all the essential details you need from your customers with custom checkout fields. Using Checkout Fields Manager to quickly add new text fields, drop-downs, file upload capabilities, checkboxes, and other field forms to your checkout with an intuitive drag-and-drop UI. Offer your customers an enhanced shopping experience in fields that are special to your market.\r\n<h3>22 different file types supported</h3>\r\n<ul>\r\n <li>First Name</li>\r\n <li>Last Name</li>\r\n <li>Email</li>\r\n <li>Text</li>\r\n <li>Textarea</li>\r\n <li>Dropdown</li>\r\n <li>Date</li>\r\n <li>Multi Select</li>\r\n <li>Radio</li>\r\n <li>Checkbox</li>\r\n <li>File Upload</li>\r\n <li>URL</li>\r\n <li>Repeat Field (multi column supported)</li>\r\n <li>HTML</li>\r\n <li>Honeypot</li>\r\n <li>reCaptcha 2.0</li>\r\n <li>Terms and Conditions</li>\r\n <li>Country</li>\r\n <li>Email</li>\r\n <li>Hidden</li>\r\n <li>Select</li>\r\n <li>Action Hook</li>\r\n</ul>', 'Checkout Fields Manager- Easy Digital Downloads', '', 'https://1.bp.blogspot.com/-RMsFlTVUhvU/X9x-nZrdOvI/AAAAAAAAOCQ/lDFdt-B1QpEfGz9wOqeDXw7qeYjEUVn_ACLcBGAsYHQ/s590/checkout-fields-manager-product-image.png', 'publish', 'open', '2021-04-06 21:17:48', 0),
(2109, 1, '2020-12-18 15:46:22', 'If you\'re in the dark on how consumers are visiting your site, the User History Add-on is the beacon you\'ve overlooked.\r\n\r\nThis add-on makes updating and then optimizing visitor paths extremely simple, taking all the guesswork out of improving the sales process and the conversions. Plus, it\'s very interesting to see where visitors look through your site before they decide to take action.', 'User History- Easy Digital Downloads', '', 'https://1.bp.blogspot.com/-WzmjOmsDTg8/X9yA5MmoijI/AAAAAAAAB64/L4U6IzcHmKk3c_wEwUn8Lvz6UMjOtbqtACLcBGAsYHQ/s590/user-history-product-image.png', 'publish', 'open', '2021-04-06 17:16:15', 0),
(2141, 1, '2020-12-19 16:29:49', '<strong>Purchase Proof:</strong>\r\n\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-K0GhJHgj97g/X93Xk0JyQbI/AAAAAAAAB8c/_6gQtJ4fiK07xQsc1TT5c9z00747-fwFgCLcBGAsYHQ/s1411/1608374001889.png\" width=\"624\" height=\"815\" />\r\n\r\nCiyaShop has every justification to be exceptional. With the support of Limitless Theme choices, amazing hover styles and various layout options, we will leave our customers breathless and your customers astounded. It comes along with a panoply of features that makes it the perfect WooCommerce theme.', 'CiyaShop– Responsive Multi-Purpose WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-_kJ0b_LtQog/X93cTd2RImI/AAAAAAAAB84/7TXw3Q7b-DM6VSVHvVNrpV1UlYnYR-wywCLcBGAsYHQ/s590/ciyashop.png', 'publish', 'open', '2021-04-06 16:37:36', 0),
(2146, 1, '2020-12-19 16:40:28', 'Findgo is a WordPress directory listing theme that will help you build, manage, and monetize your local or global directory site. Feel free to set your own target and get your favorite spots listed online!\r\n\r\n<strong>Purchase Proof:</strong>\r\n\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-K0GhJHgj97g/X93Xk0JyQbI/AAAAAAAAB8c/_6gQtJ4fiK07xQsc1TT5c9z00747-fwFgCLcBGAsYHQ/s1411/1608374001889.png\" width=\"536\" height=\"700\" />', 'Findgo– Directory & Listing WordPress Theme', '', 'https://1.bp.blogspot.com/-oreo_4wFkug/X93fEnVVZKI/AAAAAAAAB9U/n1RlQsCzfe8xQPxsOoOQ_nCs2uQIpvaFACLcBGAsYHQ/s590/findgo.png', 'publish', 'open', '2021-04-06 16:30:28', 0),
(2151, 1, '2020-12-19 16:57:41', 'Chow is a true culinary WordPress Theme. This recipe theme will let you share all of your recipes and cooking tips with a large audience. Chow comes with the help of Schema.org. It means that your blog would be understood not only by people but also by search engines.\n\n<strong>Purchase Proof:</strong>\n\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-0dnaq5mt1Jk/X93glnzql3I/AAAAAAAAB9g/cem6lz0-Lp0P6lRXQIzEjJRzwZlmM0ciwCLcBGAsYHQ/s1176/1608374001895.jpg\" width=\"556\" height=\"511\" />', 'Chow– Recipe & Food WordPress Theme', '', 'https://1.bp.blogspot.com/-6YkgX0eYc4o/X93jNzZcsPI/AAAAAAAAB-M/t-k4Dj7p6vcqAVjSYNkTetVvNUWYDmapwCLcBGAsYHQ/s590/chow.png', 'publish', 'open', '2021-04-02 04:38:49', 0),
(2155, 1, '2020-12-19 17:06:35', '<img class=\"aligncenter\" style=\"font-size: 14.4px;\" src=\"https://1.bp.blogspot.com/-0dnaq5mt1Jk/X93glnzql3I/AAAAAAAAB9g/cem6lz0-Lp0P6lRXQIzEjJRzwZlmM0ciwCLcBGAsYHQ/s1176/1608374001895.jpg\" width=\"603\" height=\"554\" />\r\n\r\nKolyoum! <span style=\"font-size: 14.4px;\">Kolyoum! It\'s an elegant multipurpose WordPress magazine theme that comes with beautiful homepage</span><span style=\"font-size: 14.4px;\"> templates and predefined demonstrations. It is highly optimized for speed and efficiency to offer the best user experience. It\'s perfect for several niches like news breaks, newspapers, politics, sports, gaming, technology, travel, and more.</span>\r\n\r\n<strong>Purchase proof:</strong>', 'Kolyoum- Newspaper Magazine News BuddyPress AMP', '', 'https://1.bp.blogspot.com/-ZYc52s5R9gk/X93lU7hsNdI/AAAAAAAAB-Y/7dX2x1OrJfkMer3cVGh0u6ajZS7y8h6jwCLcBGAsYHQ/s590/kolyoum.png', 'publish', 'open', '2021-08-08 22:27:47', 0),
(2161, 1, '2020-12-19 19:29:47', '<strong>Purchase Proof:</strong>\r\n\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-Kde88s59DJk/X94A73Jkl-I/AAAAAAAAB_Q/AezVfp4sn4MKIwmKu1vMXmjbAlzohGsYACLcBGAsYHQ/s1427/1608384226874.jpg\" width=\"608\" height=\"803\" />', 'ListingPro– WordPress Directory Theme', '', 'https://1.bp.blogspot.com/-1YdXLoulqY8/X94FZSFTSgI/AAAAAAAAB_s/VQWSptsxhokMKqIYhgEH6iMMUQw2CsVPwCLcBGAsYHQ/s590/ListingPro.png', 'publish', 'open', '2021-04-06 16:25:55', 0),
(2164, 1, '2020-12-19 20:47:56', '<strong>Purchase Proof:</strong>\r\n\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-Kde88s59DJk/X94A73Jkl-I/AAAAAAAAB_Q/AezVfp4sn4MKIwmKu1vMXmjbAlzohGsYACLcBGAsYHQ/s1427/1608384226874.jpg\" width=\"567\" height=\"749\" />\r\n\r\nWISO is a wonderful and innovative WordPress photography theme. It includes collections, portfolios, exhibits, activities, fullscreen, proofreading, blogs for photographers to create a unique website. The artistic WordPress theme is not limited to photographers and could easily be modified to fit a wide variety of applications such as creative agencies, weddings, fashion pages, art blogs.', 'WISO– Photography WordPress Theme', '', 'https://1.bp.blogspot.com/-KGxTfhHYiz0/X94a0HlF9uI/AAAAAAAACAI/EIbjE3G8lQMj2wGKsGdvYUctryyznDLlgCLcBGAsYHQ/s590/01_image_preview.jpg', 'publish', 'open', '2021-04-06 16:15:37', 0),
(2168, 1, '2020-12-19 21:23:20', '<strong>Purchase Proof:</strong>\r\n\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-Kde88s59DJk/X94A73Jkl-I/AAAAAAAAB_Q/AezVfp4sn4MKIwmKu1vMXmjbAlzohGsYACLcBGAsYHQ/s1427/1608384226874.jpg\" width=\"573\" height=\"757\" />\r\n\r\nSquaretype is a new and clean WordPress theme for modern content-based blogs and magazines from codesupplyco developers. It has a number of useful features for your new Blog/Magazine, some of them are:\r\n\r\n9 Beautifully crafted demos on one theme. Thanks to our signature feature, the Demo Switcher, you can apply a new demo at any time without affecting your material. If you\'re bored with one of the demos, just apply a new one and get a totally different look on your blog or magazine.', 'Squaretype– Modern Blog WordPress Theme', '', 'https://1.bp.blogspot.com/-VmLdkOF6cUI/X94hcGyqSHI/AAAAAAAACAk/gnczbmC_ASgSHKsxIQ47PWZyXPMH0rlVgCLcBGAsYHQ/s590/squaretype.png', 'publish', 'open', '2021-04-06 15:34:48', 0),
(2203, 1, '2020-12-22 14:34:30', '<strong>Purchase Proof:</strong>\r\n\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-U6GjA0y7Qh0/X-LjocLVFGI/AAAAAAAACDQ/hea3P-yuJeUmeFV4uTsU2bYsrxjfADcYgCLcBGAsYHQ/s1722/1608704744784.jpg\" width=\"764\" height=\"1217\" />\r\n\r\nCheerUp is a luxurious fashion style tailored to be exceptional for all sorts of blogs and minimal magazines. Not only are the built-in modern design options aesthetically appealing, they are filled with over 1000+ potential layout variations perfect for blogs and stylish magazines.\r\n<h3 id=\"item-description__some-of-the-features\">Some of the Features</h3>\r\n<ul>\r\n <li>14 Pre-made Design to choose from. Or create your own.</li>\r\n <li>Handcrafted for all type of blog and simple magazine sites.</li>\r\n <li>Shop / WooCommerce Support Built-in.</li>\r\n <li><strong>Fully Responsive</strong> design with High Definition Retina graphics.</li>\r\n <li>Elegant and unique <strong>Featured Sliders</strong> – choose from 17 sliders.</li>\r\n <li>Google AMP Supported.</li>\r\n <li>Several <strong>Homepage Layouts</strong> for your blog:</li>\r\n <li>Built-in <strong>Custom Widgets</strong> for perfect blog.</li>\r\n <li>Or build your own advanced homepage using Page Builder</li>\r\n <li>Multiple <strong>Post Formats</strong> Support</li>\r\n <li>Smooth <strong>Sticky Top Bar</strong> & Navigation</li>\r\n <li>Sticky Sidebar Feature</li>\r\n <li>Native Gutenberg / Block Editor Support</li>\r\n <li>Off-canvas <strong>Mobile Menu</strong></li>\r\n <li>Our custom-built <strong>Special Post Gallery</strong></li>\r\n <li>Advanced Live Customizer Options</li>\r\n <li>Customization Options to Show/Hide Most Elements</li>\r\n <li>Multiple <strong>Custom Menus</strong> & Unique mobile menu</li>\r\n <li>WordPress v5+ Fully Compatible</li>\r\n <li><strong>WordPress SEO</strong> by Yoast plugin compatible</li>\r\n <li>Contact Form 7 compatible</li>\r\n <li>Performance features like LazyLoad & Free Performance Guide.</li>\r\n <li>Integrated <strong>MailChimp Subscribe</strong> Form</li>\r\n <li>Unique Logo for mobile devices</li>\r\n <li>Post <strong>Like</strong> Feature</li>\r\n <li>Home MailChimp Subscribe Box</li>\r\n <li>Social Media <strong>Sharing</strong></li>\r\n <li>Tons of Typography And Color Options</li>\r\n <li>Compatible with WP Recipe Maker with beautiful Recipe Card and Recipes Index.</li>\r\n <li>Adobe Fonts (TypeKit) Typography Support (General Demo shows TypeKit Fonts)</li>\r\n <li><strong>10 Header</strong> Layouts</li>\r\n <li>Countless Category Listing styles for blog and magazine sites</li>\r\n <li>Home Posts Carousel</li>\r\n <li>Multiple <strong>Footer Layouts</strong></li>\r\n <li>Free Updates and new blog features.</li>\r\n <li>Translation Ready</li>\r\n <li>Long-term Support</li>\r\n <li>Features suited for all types of blogs. Lifestyle blog, Photography blog, Food blog, Travel blog – Unlimited Possibilities.</li>\r\n</ul>', 'CheerUp– Blog/Magazine & Travel WordPress Theme', '', 'https://1.bp.blogspot.com/-z4mM04fbxYI/YEj-GlAC8WI/AAAAAAAADBk/dVr_u4YT5vMdOeyHZyoXcLfTLB9ZtBYmwCLcBGAsYHQ/s885/00_cons.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:48', 0),
(2205, 1, '2020-12-22 14:40:45', '<strong>Purchase Proof:</strong>\r\n\r\n<img src=\"https://1.bp.blogspot.com/-U6GjA0y7Qh0/X-LjocLVFGI/AAAAAAAACDQ/hea3P-yuJeUmeFV4uTsU2bYsrxjfADcYgCLcBGAsYHQ/s1722/1608704744784.jpg\" />\r\n\r\nUnero is a clean & minimal AJAX WooCommerce WordPress theme for online shopping. With minimal design and emphasis on items, Unero will make your online store look more impressive and appealing to viewers. Help increase the high conversation rate to purchase a product so easily with your customers. This theme is suited for a wide variety of e-commerce websites, such as fashion stores, furniture stores, decoration stores, etc.\r\n<h2 id=\"item-description__powerful-ecommerce-functionality\">Powerful eCommerce Functionality</h2>\r\nThe theme was built for WooCommerce, the most popular eCommerce solution for WordPress, which helps you sell anything online, shippable goods, virtual or digital files.\r\n<ul>\r\n <li>Sell Simple or Variable Products</li>\r\n <li>Sell Digital / Downloadable Products</li>\r\n <li>Sell External / Affiliate Products</li>\r\n <li>Built-in Order Tracking System</li>\r\n <li>Intricate Tax & Shipping Options</li>\r\n <li>Fully Responsive Design;</li>\r\n <li>Customers can Rate / Review Products</li>\r\n <li>Unlimted Categories & Sub-Categories</li>\r\n <li>Filter Products (eg by size, color, etc.)</li>\r\n <li>Powerful Store Management</li>\r\n <li>Built-in Coupon System</li>\r\n <li>Gain Insights from the Store Reports</li>\r\n <li>Easy Shipping Calculator</li>\r\n <li>SEO Optimized</li>\r\n <li>Optional Wishlist</li>\r\n</ul>', 'Unero– Minimalist AJAX WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-ydK5EWvO0Bs/X-G3vvK6UbI/AAAAAAAACB8/pvBPEOrgQk48Lu-mhSylDDmvvviiXU4ZwCLcBGAsYHQ/s590/unero.jpg', 'publish', 'open', '2021-04-06 16:07:19', 0),
(2207, 1, '2020-12-22 14:58:06', '<h2><strong>Purchase Proof:</strong></h2>\r\n<img src=\"https://1.bp.blogspot.com/-U6GjA0y7Qh0/X-LjocLVFGI/AAAAAAAACDQ/hea3P-yuJeUmeFV4uTsU2bYsrxjfADcYgCLcBGAsYHQ/s1722/1608704744784.jpg\" />\r\n<h2><strong>Theme Features:</strong></h2>\r\n<ul>\r\n <li id=\"item-description__6-beautifully-designed-demos-in-one-theme\">6 Beautifully Designed Demos in One Theme</li>\r\n <li id=\"item-description__dark-mode\">Dark Mode</li>\r\n <li id=\"item-description__multiple-page-header-types\">Multiple Page Header Types</li>\r\n <li id=\"item-description__smart-colors\">Smart Colors</li>\r\n <li id=\"item-description__customize-with-instant-live-preview\">Customize with Instant Live Preview</li>\r\n <li id=\"item-description__multiple-archive-layouts-for-homepage-and-archive-pages\">Multiple Archive Layouts for Homepage and Archive Pages</li>\r\n <li id=\"item-description__multiple-page-layouts\">Multiple Page Layouts</li>\r\n <li id=\"item-description__super-fast-mega-menu\">Super-Fast Mega-Menu</li>\r\n <li id=\"item-description__amp-support\">AMP Support</li>\r\n <li id=\"item-description__exclude-duplicate-posts\">Exclude Duplicate Posts</li>\r\n <li id=\"item-description__google-fonts\">Google Fonts</li>\r\n <li id=\"item-description__additional-content\">Additional Content</li>\r\n <li id=\"item-description__smart-sticky-navigation\">Smart Sticky Navigation</li>\r\n <li id=\"item-description__sticky-sidebar\">Sticky Sidebar</li>\r\n <li id=\"item-description__smart-multi-level-menu\">Smart Multi-Level Menu</li>\r\n <li id=\"item-description__mobile-slide-out-menu-with-widgets\">Mobile Slide-Out Menu with Widgets</li>\r\n <li id=\"item-description__paginated-posts\">Paginated Posts</li>\r\n <li id=\"item-description__guest-authors-and-multi-author-posts-with-co-authors-plus-support\">Guest Authors and Multi-Author Posts with Co-Authors Plus Support</li>\r\n <li id=\"item-description__rtl\">RTL</li>\r\n <li id=\"item-description__numbered-pagination-load-more-and-infinite-load\">Numbered Pagination, Load More, and Infinite Load</li>\r\n <li id=\"item-description__post-views-with-google-analytics-synchronization\">Post Views with Google Analytics synchronization</li>\r\n <li id=\"item-description__post-reading-time\">Post Reading Time</li>\r\n <li id=\"item-description__retina-ready\">Retina-Ready</li>\r\n <li id=\"item-description__adaptive-optimized-image-sizes\">Adaptive Optimized Image Sizes</li>\r\n <li id=\"item-description__ultra-responsive\">Ultra Responsive</li>\r\n <li id=\"item-description__feature-rich-yet-simple\">Feature-Rich, yet Simple</li>\r\n <li>SEO by Yoast Support including Breadcrumbs Styles</li>\r\n <li id=\"item-description__live-search-results\">Live Search Results</li>\r\n <li id=\"item-description__built-in-styles-for-wordpress-galleries\">Built-in Styles for WordPress Galleries</li>\r\n <li id=\"item-description__related-posts\">Related Posts</li>\r\n <li id=\"item-description__optimized-css-without-dependencies\">Optimized CSS without Dependencies</li>\r\n <li id=\"item-description__coded-with-wordpress-coding-standards\">Coded with WordPress Coding Standards</li>\r\n <li id=\"item-description__super-fast\">Super-Fast</li>\r\n <li id=\"item-description__google-structured-data-support\">Google Structured Data Support</li>\r\n <li id=\"item-description__built-with-hooks-amp-developer-friendly\">Built with Hooks & Developer Friendly</li>\r\n <li id=\"item-description__translation-ready\">Translation-Ready</li>\r\n <li id=\"item-description__wpml-and-polylang-compatible\">WPML and Polylang compatible</li>\r\n <li id=\"item-description__numerous-ads-and-banner-spots-with-built-in-adsense-support\">Numerous Ads and Banner Spots with built-in AdSense Support</li>\r\n <li id=\"item-description__one-click-demo-import-and-demo-switcher\">One-Click Demo Import and Demo Switcher</li>\r\n <li id=\"item-description__made-by-elite-author-with-a-featured-item\">Made by Elite Author with a Featured Item</li>\r\n <li id=\"item-description__powered-by-powerkit\">Powered by Powerkit</li>\r\n <li id=\"item-description__share-buttons\">Share Buttons</li>\r\n <li id=\"item-description__social-links\">Social Links</li>\r\n <li id=\"item-description__facebook-integration\">Facebook Integration</li>\r\n <li>Pinterest Integration</li>\r\n <li id=\"item-description__twitter-integration\">Twitter Integration</li>\r\n <li id=\"item-description__instagram-integration\">Instagram Integration</li>\r\n <li id=\"item-description__opt-in-forms\">Opt-in Forms</li>\r\n <li id=\"item-description__retina-images\">Retina Images</li>\r\n <li id=\"item-description__lazy-load-with-low-quality-image-placeholders\">Lazy Load with Low-Quality Image Placeholders</li>\r\n <li id=\"item-description__lightbox\">Lightbox</li>\r\n <li id=\"item-description__adobe-fonts-formerly-typekit\">Adobe Fonts (Formerly Typekit)</li>\r\n <li id=\"item-description__custom-fonts\">Custom Fonts</li>\r\n <li id=\"item-description__contributors-widget\">Contributors Widget</li>\r\n <li id=\"item-description__author-widget\">Author Widget</li>\r\n <li id=\"item-description__justified-galleries\">Justified Galleries</li>\r\n <li id=\"item-description__slider-galleries\">Slider Galleries</li>\r\n <li id=\"item-description__featured-posts-widget\">Featured Posts Widget</li>\r\n <li id=\"item-description__table-of-contents\">Table of Contents</li>\r\n <li id=\"item-description__numbered-headings\">Numbered Headings</li>\r\n <li id=\"item-description__disclaimer\">Disclaimer</li>\r\n <li id=\"item-description__adobe-fonts-formerly-typekit\">ADOBE FONTS (FORMERLY TYPEKIT)</li>\r\n <li id=\"item-description__site-specific-options\">SITE SPECIFIC OPTIONS</li>\r\n <li id=\"item-description__image-credits\">IMAGE CREDITS</li>\r\n <li id=\"item-description__landing-page\">LANDING PAGE</li>\r\n <li id=\"item-description__page-speed\">PAGE SPEED</li>\r\n <li id=\"item-description__integration-with-external-service-providers\">INTEGRATION WITH EXTERNAL SERVICE PROVIDERS</li>\r\n</ul>', 'Networker– Tech News WordPress Theme with Dark Mode', '', 'https://1.bp.blogspot.com/-LRZ3mAmhLUE/X-G5TjP_mGI/AAAAAAAACCI/q0Bk9J6p2DsA_VxT4i70jCzn1kEFgKjogCLcBGAsYHQ/s590/Networker.jpg', 'publish', 'open', '2021-04-06 16:06:03', 0),
(2209, 1, '2020-12-22 15:09:12', '<img src=\"https://1.bp.blogspot.com/-U6GjA0y7Qh0/X-LjocLVFGI/AAAAAAAACDQ/hea3P-yuJeUmeFV4uTsU2bYsrxjfADcYgCLcBGAsYHQ/s1722/1608704744784.jpg\" />\r\n\r\nIf you want to create a website like Quora.com, then this theme is the best option to achieve your goals.\r\n\r\n<strong>Theme Features</strong>\r\n<ul>\r\n <li>Fully Responsive design</li>\r\n <li>Retina ready</li>\r\n <li>Awesome contral panel</li>\r\n <li><strong>RTL Fully Support</strong></li>\r\n <li>Light and dark</li>\r\n <li>Unlimited Sidebars</li>\r\n <li>Unlimited Colors</li>\r\n <li>3 Headers style Light and dark</li>\r\n <li>HTML5/CSS3</li>\r\n <li>Advanced Post/page options – custom background color/image, custom colors, custom layout ( right sidebar, left sidebar, full-width), hide/show elements, page comments, and more ?</li>\r\n <li>Post Formats: Standard, Image, Gallery, Video</li>\r\n <li>Multiple Blog Layout medium image, Big image</li>\r\n <li><a href=\"https://2code.info/demo/themes/ask-me/shop/\" rel=\"nofollow\">Shop demo</a></li>\r\n <li><a href=\"https://2code.info/demo/themes/ask-me/advertising/\" rel=\"nofollow\">Advertising System</a></li>\r\n <li><a href=\"https://2code.info/demo/themes/ask-me/ask-me.png\" rel=\"nofollow\">404 page</a></li>\r\n <li><strong>Page templates</strong> with customization options ( 46 page template )\r\n<ul>\r\n <li>Activity Log</li>\r\n <li>Add Post</li>\r\n <li>Follow Answer</li>\r\n <li>Add Question</li>\r\n <li>Asked Question</li>\r\n <li>Badges & Points</li>\r\n <li>Blog 1</li>\r\n <li>Blog 2</li>\r\n <li>Questions Categories</li>\r\n <li>Follow Comment</li>\r\n <li>Contact Us</li>\r\n <li>Edit Comment & Answer</li>\r\n <li>Edit Post</li>\r\n <li>Edit Profile</li>\r\n <li>Edit Question</li>\r\n <li>Followers</li>\r\n <li>Home page</li>\r\n <li>Authors I Follow</li>\r\n <li>Login</li>\r\n <li>Login 2</li>\r\n <li>Most Responses / Answers</li>\r\n <li>Most Visit</li>\r\n <li>Most Vote</li>\r\n <li>No Answers</li>\r\n <li>Notifications</li>\r\n <li>Follow Post</li>\r\n <li>Follow Question</li>\r\n <li>Questions Bump</li>\r\n <li>Recent Question</li>\r\n <li>Comments or Answers</li>\r\n <li>Shop</li>\r\n <li>User Answer</li>\r\n <li>User Best Answer</li>\r\n <li>User Comments</li>\r\n <li>User Favorite Questions</li>\r\n <li>User Followed Questions</li>\r\n <li>User Paid Questions</li>\r\n <li>User Points page</li>\r\n <li>User Polls page</li>\r\n <li>User Posts</li>\r\n <li>User Questions</li>\r\n <li>Users page</li>\r\n <li>Messages</li>\r\n <li>Tags</li>\r\n <li>Search</li>\r\n <li>FAQs</li>\r\n</ul>\r\n</li>\r\n <li><strong>custom Widgets</strong> with customization options ( 21 Widgets )\r\n<ul>\r\n <li>Ask question button widget</li>\r\n <li>Comments widget</li>\r\n <li>Contact widget</li>\r\n <li>Counter widget</li>\r\n <li>Flickr widget</li>\r\n <li>Highest points widget</li>\r\n <li>Login widget</li>\r\n <li>Profile links widget</li>\r\n <li>Questions categories widget</li>\r\n <li>Questions widget</li>\r\n <li>Stats widget</li>\r\n <li>Subscribe widget</li>\r\n <li>Signup widget</li>\r\n <li>Tabs widget</li>\r\n <li>Twitter widget</li>\r\n <li>Video widget</li>\r\n <li>Adv 120×600 widget</li>\r\n <li>Adv 234×60 widget</li>\r\n <li>Adv 250×250 widget</li>\r\n <li>Adv 120×240 widget</li>\r\n <li>Adv 125×125 widget</li>\r\n</ul>\r\n</li>\r\n <li>and more ?</li>\r\n</ul>', 'Ask Me– Responsive Questions & Answers WordPress', '', 'https://1.bp.blogspot.com/-4b4D3kQX0aM/X-G9zapRyAI/AAAAAAAACC0/UIwYAL2YBakPa2xTAVFLZWvAYxlMtk17QCLcBGAsYHQ/s590/Ask-Me-1.png', 'publish', 'open', '2021-04-06 16:04:08', 0),
(2229, 1, '2020-04-14 09:57:50', '<h4><strong>Item Features:</strong></h4>\n<ul>\n <li>Design & Deploy</li>\n <li>Advanced Targeting</li>\n <li>A/B Testing Engine</li>\n <li>Actionable Reporting & Insights</li>\n <li>ThriveBox (PopUp Lightbox)</li>\n <li>“Sticky” Ribbon</li>\n <li>In-Line Forms</li>\n <li>Screen Filler Overlay</li>\n <li>Content Lock</li>\n <li>Yes/No & Multiple Choice Forms</li>\n <li>and so much more… Click Live Demo to read complete theme features</li>\n</ul>', 'Thrive Leads v2.3.3.3 – WordPress Plugin', '', 'https://1.bp.blogspot.com/-M16wLEDVvw8/X-Q0vuDt-qI/AAAAAAAACFk/j5Fu0LDr9q0JSKINEzFQSQ8lqagrkl4yQCLcBGAsYHQ/s680/Thrive-Leads.jpg', 'publish', 'open', '2021-04-02 04:42:35', 0),
(2232, 1, '2020-04-10 14:51:55', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-_DT094xL5Wk/YAlT5pNawFI/AAAAAAAACik/xsWnTdSDRf4xaqznUQt7PmcIShSUCtPbACLcBGAsYHQ/s1549/907%2B-%2BCopy.PNG\" width=\"573\" height=\"913\" />\n\nContent Egg has a lot of pro features that you can find on top comparison pages. Creating such sites is now feasible for anyone without investing thousands of dollars in developers and content creators.', 'Content Egg– all in one plugin for Affiliate, Price Comparison, Deal sites', '', 'https://1.bp.blogspot.com/-2YBNTHjFwMk/X-Re5wQ5fhI/AAAAAAAACGA/7BgfAPbmWh8HeGRKm17asKZ5Kb4dUR_wQCLcBGAsYHQ/s590/00_preview.jpg', 'publish', 'open', '2021-04-02 04:42:35', 0),
(2238, 1, '2020-12-24 15:16:08', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-_DT094xL5Wk/YAlT5pNawFI/AAAAAAAACik/xsWnTdSDRf4xaqznUQt7PmcIShSUCtPbACLcBGAsYHQ/s1549/907%2B-%2BCopy.PNG\" width=\"470\" height=\"749\" />\r\n\r\nAny owner of a profitable affiliate website will tell you that the best conversion and commission is infamous local stores. There are a lot of decent plugins for affiliate marketing, but they\'re all dealing with big networks, so small stores don\'t have their own APIs and don\'t participate in any affiliate network. That\'s why we\'ve built the Affiliate Egg plugin, which works with a lot of stores that don\'t work with any other plugin.\r\n\r\n \r\n\r\n ', 'Affiliate Egg- Niche Affiliate Marketing Wordpress Plugin', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-gA5N2L0c6uU/YECbXS56z0I/AAAAAAAAC9g/Z2lfUF286b4Z9ah2q4X242yP0d9PWwiEgCLcBGAsYHQ/s1180/00_preview%2B%25281%2529.jpg', 'publish', 'open', '2021-04-25 11:58:20', 0),
(2251, 1, '2020-12-25 15:31:44', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-fgry45VYmjU/YAlPoQT4n-I/AAAAAAAACh8/FgDhzBPKneozKsACMcLfFQielwBhSF3TgCLcBGAsYHQ/s1562/1611147114419.png\" width=\"547\" height=\"792\" />\r\n\r\nStartNext is the Technical WordPress theme of Elementor + WP Bakery Page Builder. It is developed primarily for individuals and agencies that offer online IT Solutions and Software Services. The theme involves several exclusive design variants for the home and other website sites.\r\n\r\nMobile-First Theme Style looks gorgeous, beautiful on all sorts of screens and computers. Individuals or agencies providing Web, Mobile, E-Commerce, AI, Machine Learning, Big Data Analytics or Digital Marketing-focused services will love the StartNext theme for their current or future business website!', 'StartNext– Elementor IT & Business Startups WP Theme', '', 'https://1.bp.blogspot.com/--avrRgTFA6w/X-W4Fg-lpxI/AAAAAAAACHA/63RaFOXxingXkzf1QlbG99E5PZswi64hQCLcBGAsYHQ/s590/StartNext.jpg', 'publish', 'open', '2021-04-06 15:39:26', 0),
(2255, 1, '2020-12-26 13:49:43', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-_DT094xL5Wk/YAlT5pNawFI/AAAAAAAACik/xsWnTdSDRf4xaqznUQt7PmcIShSUCtPbACLcBGAsYHQ/s1549/907%2B-%2BCopy.PNG\" width=\"591\" height=\"942\" />\r\n\r\n907 WordPress parallax theme is very flexible with great choices and functionality, suitable for many uses ( Aerial Video, Portfolio, Bakery, Tattoo, Taxi, Lawyer, Medical, Photographer, Business, GYMS, Freelancer, Fitness, Diet, Training, Sports, Construction, Builders, Roofers, Barbers, Hair Stylist, Beard Trimmer, Salon, Apps, Product Launch, Resumes, Single Property, Home Sale, Realtor, Artist, Drones, Quadrocopter, Creative Agency, Modeling, Landing Page and much MUCH more.. ). Grab it out today!', '907– Responsive Multi-Purpose WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-kgoXYf38qzM/X-bxyjgjA2I/AAAAAAAACHc/HDnzjHfRtYQY17tC7-fonIeQct9nr1DogCLcBGAsYHQ/s590/907-1.jpg', 'publish', 'open', '2021-04-06 15:30:10', 0),
(2257, 1, '2020-12-26 13:54:37', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-_DT094xL5Wk/YAlT5pNawFI/AAAAAAAACik/xsWnTdSDRf4xaqznUQt7PmcIShSUCtPbACLcBGAsYHQ/s1549/907%2B-%2BCopy.PNG\" width=\"559\" height=\"891\" />\r\n\r\nReality is a fresh and clean, modern and functional theme, versatile and sophisticated, easily responsive WordPress real estate website. This theme is a unique and technologically cutting-edge approach for real estate firms or independent real estate agents, property holding companies and all kinds of real estate related business projects to easily and skillfully set up an online business base that can significantly extend their scope.', 'Reality | Real Estate Multipurpose WordPress Theme', '', 'https://1.bp.blogspot.com/-6b0geL2bWig/X-byt5gWK7I/AAAAAAAACHk/OC6IbNfNPh0OiMYSELaawVs2u4xMJlW5QCLcBGAsYHQ/s590/Reality.jpg', 'publish', 'open', '2021-04-06 15:27:55', 0),
(2259, 1, '2020-12-26 13:59:30', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-fgry45VYmjU/YAlPoQT4n-I/AAAAAAAACh8/FgDhzBPKneozKsACMcLfFQielwBhSF3TgCLcBGAsYHQ/s1562/1611147114419.png\" width=\"555\" height=\"803\" />\r\n\r\nTravelo is a robust feature-rich highly responsive Travel/Tourism/Hotel/Accommodation Booking WordPress Theme & Included 6-month support. Travelo – Travel/Tour Booking WordPress Theme is one of the best hotels, tour, car rental, cruise, flight booking themes in the world.\r\nThis theme not only has fantastic skin and structure, but also a wonderful booking module that allows you to use it for any kind of hotel & tour booking. This gives you lots of features, and you\'re going to like it.', 'Travelo- Travel/Tour Booking Responsive WordPress Theme', ' \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-t0QTcMmfpWQ/YEHnCBlxAMI/AAAAAAAAC_M/fG_4sbnLnRYqjEcOrp-G10alt8y6w-yrgCLcBGAsYHQ/s1180/screenshot.jpg', 'publish', 'open', '2021-05-09 21:38:22', 0),
(2264, 1, '2020-12-26 14:27:16', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-_DT094xL5Wk/YAlT5pNawFI/AAAAAAAACik/xsWnTdSDRf4xaqznUQt7PmcIShSUCtPbACLcBGAsYHQ/s1549/907%2B-%2BCopy.PNG\" width=\"576\" height=\"918\" />\r\n\r\nKLEO is the one theme you need to build your BuddyPress powered Community/Social Network WordPress website. We include awesome demos to get you started', 'KLEO– Pro Community Focused, Multi-Purpose BuddyPress Theme', '', 'https://1.bp.blogspot.com/-isTfw2Y-JKw/X-b6wZEszpI/AAAAAAAACIc/_ipRFdcaEVUFzzvXlkXDrp4u7hqoNx4wgCLcBGAsYHQ/s590/KLEO.png', 'publish', 'open', '2021-04-06 15:10:46', 0),
(2266, 1, '2020-12-26 14:33:08', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-fgry45VYmjU/YAlPoQT4n-I/AAAAAAAACh8/FgDhzBPKneozKsACMcLfFQielwBhSF3TgCLcBGAsYHQ/s1562/1611147114419.png\" width=\"589\" height=\"852\" />\r\n\r\nThe WordPress LMS Course Builder theme is a multi-purpose, high-quality eLearning WordPress LMS (Learning Management System) for teachers, instructors, educational centres, colleges, universities to develop and maintain their own online course platform. This theme of versatility and power will help you easily create beautiful online courses, share your knowledge of the world and gain some revenue by selling them.', 'CBKit- Course & LMS WordPress Theme', '', 'https://1.bp.blogspot.com/-nYbhXkuuVb0/X-b7vAgxXUI/AAAAAAAACIo/D28pWAzZgYgDXUO5HOb24lSVjSmNv3ttQCLcBGAsYHQ/s590/Course-Builder-1.jpg', 'publish', 'open', '2021-04-04 18:53:09', 0);
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(2378, 1, '2021-01-05 17:35:37', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-_DT094xL5Wk/YAlT5pNawFI/AAAAAAAACik/xsWnTdSDRf4xaqznUQt7PmcIShSUCtPbACLcBGAsYHQ/s1549/907%2B-%2BCopy.PNG\" width=\"599\" height=\"954\" />\r\n\r\nNokri – Job Board WordPress Theme is an advanced WordPress job board theme. It contains all the features you need to create a successful job portal website. Nokri is a complete and easy-to-use job listing website. Using Nokri WordPress Theme, you can create a complete and fully responsive job portal, career platform for human resource management, recruitment, freelance, or job posting web site.\r\n<h2 id=\"item-description__features\">Features:</h2>\r\n<ul>\r\n <li>Nearby Jobs</li>\r\n <li>Candidate schedule hours /or working days</li>\r\n <li>Elementor header footer added</li>\r\n <li>Apply on Jobs with WhatsApp</li>\r\n <li>Bump Up Jobs</li>\r\n <li>Woo Commerce Shop and single product design added</li>\r\n <li>New Search Page</li>\r\n <li>Paid Email Alerts</li>\r\n <li>Recurring Payment</li>\r\n <li>Support for Elementor Page Builder added</li>\r\n <li>Indeed jobs importer/ search with filters added</li>\r\n <li>Company rating feature addded</li>\r\n <li>WPML Compatible</li>\r\n <li>Google Job Schema Compatible</li>\r\n <li>Candidates Filter</li>\r\n <li>Custom fields for registration form</li>\r\n <li>Custom fields for the Candidate profile</li>\r\n <li>Custom fields for employer profile</li>\r\n <li>Job alert option for followed companies and all companies</li>\r\n <li>Upload resume from all resumes tab</li>\r\n <li>CV scoring</li>\r\n <li>Hide/show/required candidates default form fields</li>\r\n <li>Hide/show/required employers default form fields</li>\r\n <li>Custom labels and placeholders for candidates profile</li>\r\n <li>Custom labels and placeholders for employers profile</li>\r\n <li>Questionnaire added on job post with enable disable the option</li>\r\n <li>Hide/show sidebar in signup shortcode</li>\r\n <li>Child categories option added in hero sections</li>\r\n <li>Child locations option added in hero sections</li>\r\n <li>Default button option while registration</li>\r\n <li>Upload resume on apply time</li>\r\n <li>Hero section with hide/show slider option</li>\r\n <li>Job Alerts</li>\r\n <li>Widget for job alerts</li>\r\n <li>Auto candidate suggestions</li>\r\n <li>Candidate packages to apply</li>\r\n <li>Candidate featured profile package base</li>\r\n <li>Short code for featured candidates</li>\r\n <li>Company Portfolio</li>\r\n <li>Company Video option</li>\r\n <li>apply on job with out login</li>\r\n <li>Email job with Email template</li>\r\n <li>Custom fields on job post and search</li>\r\n <li>Video resume, No more boring CV sorting</li>\r\n <li>Radius search</li>\r\n <li>Job Attachments</li>\r\n <li>Google adsense advertisement slots</li>\r\n <li>Added job post option from back end</li>\r\n <li>Added custom Candidate/Employer url rewriting</li>\r\n <li>Candidate/Employer public/private profile option</li>\r\n <li>Job Import with WP All Import</li>\r\n <li>Post Job With External Link</li>\r\n <li>Email notification on job apply to employer</li>\r\n <li>Admin hide/show candidate/employer contact details e.g phone/email/contact form</li>\r\n <li>Multi Currency front end Added</li>\r\n <li>New User Registration verification</li>\r\n <li>Simple job expiry</li>\r\n <li>Ajax Drag and Drop Image Up loader</li>\r\n <li>Google Map Locations</li>\r\n <li>Search jobs page with Map</li>\r\n <li>Featured Jobs</li>\r\n <li>Job Expiry Limits</li>\r\n <li>Free and Paid Package Admin control</li>\r\n <li>Auto/Manuel Job Approval</li>\r\n <li>Google Map Location</li>\r\n <li>Open street maps</li>\r\n <li>Contact Form 7</li>\r\n <li>Related Jobs</li>\r\n <li>Job Status</li>\r\n <li>Widget Ready Search Drag & Drop</li>\r\n <li>Location Based Search</li>\r\n <li>Featured Jobs Based Search</li>\r\n <li>Title Based Search</li>\r\n <li>Side bar Widgets</li>\r\n <li>category Based Search</li>\r\n <li>Mail Chimp</li>\r\n <li>1 Click Demo Imp.</li>\r\n <li>Lang.Translation ready</li>\r\n <li>Redux Framework</li>\r\n <li>Visual Composer – Page Builder for WordPress</li>\r\n <li>Latest Bootstrap 3.7</li>\r\n <li>Latest JQuery 3.1</li>\r\n <li>HTML5 & CSS3</li>\r\n <li>Truly Responsive</li>\r\n <li>Font Awesome Included</li>\r\n <li>Clean and Creative Design</li>\r\n <li>Clean Code</li>\r\n <li>Easy to Customize</li>\r\n <li>Completely Reusable Section</li>\r\n <li>Targeted Ad Spots</li>\r\n <li>Smart and creative Category Grid</li>\r\n <li>Multiple Listing Style</li>\r\n <li>Cross Browser Compatible</li>\r\n <li>Jobs, Candidates and Companies Listing</li>\r\n <li>Login and Register Models</li>\r\n <li>Contact Us Page</li>\r\n <li>SEO Optimized</li>\r\n <li>Well Managed Documentation</li>\r\n <li>Advance Search Sidebar</li>\r\n <li>Seo friendly search page URLs</li>\r\n</ul>', 'Nokri– Job Board WordPress Theme', '', 'https://1.bp.blogspot.com/-2WJQptZmTe8/X_RVgGa0dOI/AAAAAAAACKA/foyyfzIG4jQPkgPBwSWWl54srZ5HjIteACLcBGAsYHQ/s590/01_theme_preview.png', 'publish', 'open', '2021-04-04 18:55:17', 0),
(2381, 1, '2021-01-05 17:41:15', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-fgry45VYmjU/YAlPoQT4n-I/AAAAAAAACh8/FgDhzBPKneozKsACMcLfFQielwBhSF3TgCLcBGAsYHQ/s1562/1611147114419.png\" width=\"514\" height=\"743\" />\r\n\r\nMyHome is a premium WordPress theme for real estate that you can use to create amazing and intuitive websites for real estate that your clients will love to use. Flexible and innovative, MyHome does not require any prior coding knowledge, making it easy for you to build sleek, user-friendly websites.', 'MyHome- Real Estate WordPress Theme', '', 'https://1.bp.blogspot.com/-dgU8gaxVy3c/X_RWysTXy-I/AAAAAAAACKQ/3sMQ4JFMT6gyakjR9N91-0O2qT5NymrigCLcBGAsYHQ/s590/MyHome.png', 'publish', 'open', '2021-04-04 18:58:35', 0),
(2383, 1, '2021-01-05 17:46:34', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-uI_qeor17vY/YAlYle2c03I/AAAAAAAACjs/1HMfHLREgdc1rTy-u23XZsSnIvNLq93ugCLcBGAsYHQ/s1323/breek.PNG\" width=\"534\" height=\"654\" />\r\n\r\nYou can unleash your imagination in potentially infinite ways with H-Code to create the perfect website.\r\n\r\nIt is like developing websites with no other design before it, designing websites with H-Code. It features a WordPress theme that is new, innovative, clean, completely sensitive, efficient and multipurpose, like no other.\r\n\r\nThe strong attention to detail in every nook of every website, which has been carefully designed from the ground up to be a fully functional, flexible and multi-use WordPress and eCommerce theme, is what sets it apart from the other multi-purpose templates and themes.', 'H-Code- Responsive & Multipurpose WordPress Theme', '', 'https://1.bp.blogspot.com/-4VZPovpOoQc/X_RY3s_pdSI/AAAAAAAACKw/bvdpmTcm1h85SkaAyYOCYBR0rhkbLSlpACLcBGAsYHQ/s590/H-Code.jpg', 'publish', 'open', '2021-04-04 19:00:47', 0),
(2387, 1, '2021-01-05 18:01:49', 'Woodstock is a fully sensitive modern theme of Retina Ready Woocommerce. The Woodstock theme is appropriate for any sort of stores, such as clothes, appliances, furniture, shoes, watches or any other. Launch your shop with the Woodstock theme right away.\r\n<h3 id=\"item-description__all-theme-features\">All Theme Features:</h3>\r\n<ul>\r\n <li>WordPress 5.x Ready</li>\r\n <li>Foundation Framework</li>\r\n <li>Fully Responsive design</li>\r\n <li>100% Retina Ready</li>\r\n <li>WooCommerce 4 ready</li>\r\n <li>Visual Composer: Page Builder – $34 Value</li>\r\n <li>Quick View plugin – $21 Value</li>\r\n <li>Master Slider Plugin – $20 Value</li>\r\n <li>Revolution Slider Plugin – $21 Value</li>\r\n <li>YITH Wishlist, YITH Compare plugin support</li>\r\n <li>Catalog Mode Option</li>\r\n <li>Ajax Search</li>\r\n <li>3 product views</li>\r\n <li>Custom Cart / Checkout / My Account / Login / Register Page</li>\r\n <li>Product page Zoom ready</li>\r\n <li>Off-canvas Cart and Mobile Menu feature</li>\r\n <li>Off-canvas Sidebar feature</li>\r\n <li>Grid / List view</li>\r\n <li>Mega Menu</li>\r\n <li>Unlimited color settings</li>\r\n <li>Light and Dark Versions</li>\r\n <li>Sticky header for quick navigation and shoping cart (optional)</li>\r\n <li>Advanced Option panel</li>\r\n <li>Built-in Google fonts. 500+ Web Fonts Support with Preview</li>\r\n <li>Unlimited Sidebars and Widget Areas (WooSidebars)</li>\r\n <li>Pre-Defined Page Layouts</li>\r\n <li>Child Theme Compatible</li>\r\n <li>WPML Ready – header language/currency navigation (.po files included)</li>\r\n <li>RTL Support</li>\r\n <li>One-click Demo Import</li>\r\n <li>Extensive Documentation</li>\r\n</ul>', 'Woodstock– Electronics Store WooCommerce Theme', '', 'https://1.bp.blogspot.com/-JuBxeZ7XrSE/X_RbUHvN8uI/AAAAAAAACLM/ZTOF95b5c0wm7-ZyRspY5jmuzlP5Sk-uACLcBGAsYHQ/s590/Woodstock.jpg', 'publish', 'open', '2021-04-04 19:04:22', 0),
(2389, 1, '2021-01-05 18:08:51', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-59Z4_1UqaQs/YAlV8Zpz8kI/AAAAAAAACjA/FctydJhJkX8kO2BTkxHxMmVkkKvXWNMAgCLcBGAsYHQ/s1618/907%2B-%2BCopy.PNG\" width=\"579\" height=\"868\" />\r\n\r\nAdifier is a marketplace for truly full classified ads. All of its features are designed from scratch, resulting in only the necessary items being usable. In order to determine which functions to include, it was carefully designed with a lot of study of all common marketplaces. Let\'s see some of the characteristics that the theme has.\r\n\r\nWith the option of choosing the type of ad that will deliver direct details to prospective customers, your users will be able to properly display their classified advertisements. They can select one of the following: selling, auction, purchase, swap, give. It is also possible for visitors to filter advertisements of this kind.\r\n<h2>Theme Features:</h2>\r\n<ul>\r\n <li id=\"item-description__multiple-ad-types\">Multiple Ad Types</li>\r\n <li id=\"item-description__advanced-custom-fields\">Advanced Custom Fields</li>\r\n <li id=\"item-description__monetization-earn-from-ad-posting\">Monetization – Earn From Ad Posting</li>\r\n <li id=\"item-description__monetization-earn-from-ad-promoting\">Monetization – Earn From Ad Promoting</li>\r\n <li id=\"item-description__payment-methods\">Payment Methods</li>\r\n <li id=\"item-description__messaging-system\">Messaging System</li>\r\n <li id=\"item-description__reviews-system\">Reviews System</li>\r\n <li id=\"item-description__auction-system\">Auction System</li>\r\n <li id=\"item-description__social-login\">Social Login</li>\r\n <li id=\"item-description__user-dashboard\">User Dashboard</li>\r\n <li id=\"item-description__compare-ads\">Compare Ads</li>\r\n</ul>', 'Adifier– Classified Ads WordPress Theme', '', 'https://1.bp.blogspot.com/-kXh0Kv-tSg0/X_Rcy30_7pI/AAAAAAAACLY/LRndeYQqQcEZOGivh5Qle3Xj62CTgT57ACLcBGAsYHQ/s590/Adifier.png', 'publish', 'open', '2021-04-04 19:07:13', 0),
(2391, 1, '2021-01-05 18:16:48', 'Hostinza is a clean, modern isometric WordPress web hosting theme designed for people with a passion for hosting business... This theme is highly appropriate for the provision of hosting services (shared and dedicated hosting companies) related to IT businesses that may also do web design and networking. It is based on the front-end page builder and Revolution Slider from Elementor.', 'Hostinza– Isometric Domain & Web Hosting WordPress Theme', '', 'https://1.bp.blogspot.com/-kLTOiUWaxAU/X_Reju4rMbI/AAAAAAAACL0/jQVVpYuUefcpVoDsd5A9w-eB3ODOAjtUACLcBGAsYHQ/s590/Hostinza.png', 'publish', 'open', '2021-04-04 19:09:38', 0),
(2393, 1, '2021-01-05 18:24:00', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-_DT094xL5Wk/YAlT5pNawFI/AAAAAAAACik/xsWnTdSDRf4xaqznUQt7PmcIShSUCtPbACLcBGAsYHQ/s1549/907%2B-%2BCopy.PNG\" width=\"597\" height=\"951\" />\r\n\r\nGroci is a ready-to-use, intuitive, and creative WordPress theme for organic food that can improve agricultural product sales. The theme enables organic shops to create their own website design for organic food and begin marketing their agricultural products within days.', 'Groci– Organic Food and Grocery Market WordPress Theme', '', 'https://1.bp.blogspot.com/-z7BTJB142Gk/X_Rg7Q22T0I/AAAAAAAACMg/-tw3JymY8YQi7vvoCZD1obso0cKPPuEaACLcBGAsYHQ/s590/Groci.jpg', 'publish', 'open', '2021-04-19 15:36:48', 0),
(2396, 1, '2021-01-07 09:56:45', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-59Z4_1UqaQs/YAlV8Zpz8kI/AAAAAAAACjA/FctydJhJkX8kO2BTkxHxMmVkkKvXWNMAgCLcBGAsYHQ/s1618/907%2B-%2BCopy.PNG\" width=\"564\" height=\"845\" />\r\n\r\nNoor is a versatile, responsive, high-speed performance & WordPress theme optimized for SEO. RTL Ready & Compatible with AMP, PWA (Progressive Web App) and WooCommerce, EDD, Buddypress, bbpress, The Event Calendar Pro, and more.\r\n\r\nYou probably know how important it is to build an innovative website with the best results whether you are serious about your business or running a website (SEO and Speed).\r\nThe primary goals behind Noor were to develop a unique Multi-Purpose WordPress theme that was simple to use. After more than a year in growth, the targets were accomplished by an experienced web design co. at a very high-performance level.', 'Noor– Multipurpose & Fully Customizable Creative Theme', '', 'https://1.bp.blogspot.com/-zY7ZkrxPFqM/X_aMqCO-EYI/AAAAAAAACNY/GPAHegNJ1KMtDPulx24nQsMwubnTs-tFQCLcBGAsYHQ/s590/Noor-1.png', 'publish', 'open', '2021-04-04 19:15:46', 0),
(2445, 1, '2021-01-07 10:03:22', 'Designed with Bootstrap and powered by Elementor builder, WPBakery Page Builder, Sober is a special and modern WordPress e-commerce theme. It was designed for your digital shop, your hi-tech store, your watch store, your men\'s store, your women\'s store, your apparel store, your furniture store, your bookstore, your beauty store, your luxury jewelry store, your accessory store...\r\n\r\nIn addition, this awesome theme is integrated with WooCommerce, several plugins with many features, mini cart, custom widgets, limitless color schemes, Slider with smooth transition effects, multi-column style menu, and advanced widgets... You are free to control this theme to make your store more customer-friendly and adorable...\r\n<h2 id=\"item-description__powerful-ecommerce-functionality\">Powerful eCommerce Functionality</h2>\r\nThe theme was built for WooCommerce, the most popular eCommerce solution for WordPress, which helps you sell anything online, shippable goods, virtual or digital files.\r\n<ul>\r\n <li>Sell Simple or Variable Products</li>\r\n <li>Sell Digital / Downloadable Products</li>\r\n <li>Sell External / Affiliate Products</li>\r\n <li>Built-in Order Tracking System</li>\r\n <li>Intricate Tax & Shipping Options</li>\r\n <li>Fully Responsive Design;</li>\r\n <li>Customers can Rate / Review Products</li>\r\n <li>Unlimited Categories & Sub-Categories</li>\r\n <li>Filter Products (eg: by size, color, etc.)</li>\r\n <li>Powerful Store Management</li>\r\n <li>Built-in Coupon System</li>\r\n <li>Gain Insights from the Store Reports</li>\r\n <li>Easy Shipping Calculator</li>\r\n <li>Catalog Mode Option</li>\r\n <li>SEO Optimized</li>\r\n <li>Optional Wishlist</li>\r\n</ul>', 'Sober– WooCommerce WordPress Theme', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-utOTNR0zKUo/X_aOO8z939I/AAAAAAAACNk/R6iTjrdZ05o84P64ka7i6-nrmyrCVv-ZgCLcBGAsYHQ/s590/Sober.jpg', 'publish', 'open', '2021-04-04 21:28:51', 0),
(2447, 1, '2021-01-07 10:09:52', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-59Z4_1UqaQs/YAlV8Zpz8kI/AAAAAAAACjA/FctydJhJkX8kO2BTkxHxMmVkkKvXWNMAgCLcBGAsYHQ/s1618/907%2B-%2BCopy.PNG\" width=\"580\" height=\"869\" />\r\n\r\nArmania is a modern and versatile WordPress style from the Elementor WooCommerce Marketplace. This theme is suitable for the multi-vendor marketplace, electronics store, furniture store, clothes store, hi-tech store, organic/food store, cosmetic store and accessories store... You can create your own marketplace with the theme and allow vendors to sell just like Amazon, Aliexpress, eBay...\r\n\r\nCheck:\r\n\r\nhttps://gpldog.com/file/oceanwp-pro-wordpress-theme/\r\n\r\nhttps://gpldog.com/file/yith-woocommerce-advanced-refund-system/\r\n<h3 id=\"item-description__-main-features-envy\">Features List:</h3>\r\n<ul>\r\n <li><strong>Mobile UX Friendly</strong></li>\r\n <li>Multi-Purpose Design</li>\r\n <li>Plenty of Widgets</li>\r\n <li>Multiple Page Styles</li>\r\n <li><strong>Menu Builder</strong></li>\r\n <li><strong>Popup Builder</strong></li>\r\n <li><strong>Footer Builder</strong></li>\r\n <li><strong>Popin Builder</strong></li>\r\n <li><strong>Banners Builder</strong></li>\r\n <li><strong>Visual Extend Responsive</strong></li>\r\n <li>Social Sharing Features</li>\r\n <li>SEO Optimized</li>\r\n <li>Total Cache</li>\r\n <li>Multi-vendors Supported</li>\r\n <li>Responsive Design</li>\r\n <li>Unlimited Colors & Layouts</li>\r\n <li>Unique Homepage Layouts: More Amazing Concepts Are Coming Soon!</li>\r\n <li><strong>Easy to Install Demo Data</strong></li>\r\n <li><strong>Visual Composer: Page Builder for WordPress</strong></li>\r\n <li><strong>Revolution Slider</strong></li>\r\n <li>WPML – Multilingual Support</li>\r\n <li>Fully Responsive (Tested on Multiple Devices)</li>\r\n <li>Modern & Clean Design</li>\r\n <li>HTML5 and CSS3 Tableless Design</li>\r\n <li>WooCommerce Compatible</li>\r\n <li>YITH WooCommerce Ajax Product Filter Support</li>\r\n <li>YITH WooCommerce Catalog Mode Support</li>\r\n <li>YITH WooCommerce Wishlist Support</li>\r\n <li>YITH WooCommerce Compare Support</li>\r\n <li>YITH WooCommerce Quick View Support</li>\r\n <li>YITH WooCommerce Zoom Magnifier Support</li>\r\n <li>WooCommerce Currency Switcher Support</li>\r\n <li>WooCommerce Variation Swatches and Photos Support</li>\r\n <li>MailChimp for WordPress Support</li>\r\n <li>Mega Menu</li>\r\n <li>Sticky Menu</li>\r\n <li>Powerful Theme Options</li>\r\n <li>Validate HTML5 Code</li>\r\n <li>Cross-browser compatibility</li>\r\n <li>Unlimited Different Headers & Footers</li>\r\n <li>Elegant Animations</li>\r\n <li>500+ Google Fonts with Preview Capability</li>\r\n <li>Flat Design Style</li>\r\n <li>Grid Or List View</li>\r\n <li>Loading Products with Ajax & Lazy Load</li>\r\n <li>Nice Rollover Effect For Products View</li>\r\n <li>Images With jQuery Inner Zoom</li>\r\n <li>Ajax: Add To Cart, Wishlist and Compare</li>\r\n <li>Clean Block Cart Module</li>\r\n <li>Popup Newsletter & Promotion</li>\r\n <li>Easy To Customize</li>\r\n <li>Documentation + FAQ Page</li>\r\n</ul>', 'Armania– Multipurpose Elementor WooCommerce Theme (RTL Supported)', '', 'https://1.bp.blogspot.com/-1nfQErCMj7I/X_aP7ua4atI/AAAAAAAACOA/L3WD_yUSLEYcDB7J8uDo_8JlI0nsk6ZgACLcBGAsYHQ/s590/Armania.jpg', 'publish', 'open', '2021-04-05 13:34:09', 0),
(2449, 1, '2021-01-07 10:12:44', '<img src=\"https://1.bp.blogspot.com/-7nTwO7hnl8s/X_le3rEKl7I/AAAAAAAACU0/FLh3_DW7SzM3UW8zYwJh83RRgh9EHYUJwCLcBGAsYHQ/s1577/1610178185687.jpg\" />Striz is particularly built for streetwear, menswear, fashion street trends, accessories, etc., such as Fashion Street Style. This exclusive & trendy WordPress theme for Fashion Ecommerce is all you need for your online fashion store. Striz comes with incredible effects & animations, theme plugins & options, impressing visitors with a sharp & modern appearance.\r\n\r\nElementor, Revolution Slider, WooCommerce and so many powerful Theme Plugins & Options to customize with ease are integrated with the best drag and drop page builder, Striz fashion WordPress theme. With 04+ alternative premade homepages that are conveniently imported with one press, it\'s so useful.\r\n\r\nIn addition, the template offers you the best templates of the WooCommerce store page, loads of functional pages, and other excellent features that will easily customise your fashion website.\r\n\r\n ', 'Striz– Fashion Ecommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-UlGlX1xQL1E/X_aRJk9cL4I/AAAAAAAACOc/j0K3mpuA1CAKVSfr-aIQLIgVf655kmyfACLcBGAsYHQ/s590/Striz.jpg', 'publish', 'open', '2021-04-29 21:07:39', 0),
(2452, 1, '2021-01-07 10:21:54', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-7nTwO7hnl8s/X_le3rEKl7I/AAAAAAAACU0/FLh3_DW7SzM3UW8zYwJh83RRgh9EHYUJwCLcBGAsYHQ/s1577/1610178185687.jpg\" width=\"580\" height=\"847\" />\r\n\r\nOur response to new trends in full resolution designs is Techmarket-Electronics, Organics, Accessories, Glasses, Equipment, Apparel & Affiliates WooCommerce Theme. Clean, smart, robust and scalable WordPress WooCommerce theme multi-demo & electronics store with vertical and horizontal menu variants, suitable for any form of eCommerce shop.\r\n\r\nThe same team that produced the Electro-Electronics Store WooCommerce Theme, MediaCenter-Electronics Store WooCommerce Theme, Pizzaro-Fast Food & Restaurant WooCommerce Theme and MyBag-Single Product WooCommerce Theme carry this theme to you.\r\n\r\nStatistics says that a lot more potential customers are now visiting websites in a 1920px broad resolution. Using just the old 1170 or even 980 grid system in that way, we are wasting so much room we could use to display the consumer more goods on it.', 'Techmarket– Multi-demo & Electronics Store WooCommerce Theme', '', 'https://1.bp.blogspot.com/-hkMR37HbYko/X_aS6o0QU0I/AAAAAAAACO4/z_YsVKOnr3EkzM5jxencTEVEJrGC7P9xQCLcBGAsYHQ/s590/Techmarket.jpg', 'publish', 'open', '2021-04-05 13:38:06', 0),
(2455, 1, '2021-01-07 13:09:41', 'We\'ll give your WordPress website a beautiful, attractive and modern look.\n\n<hr />\n\n\n\n<hr />\n\n ', 'WordPress website error fix', '', '', 'publish', 'open', '2021-06-03 09:59:31', 0),
(2467, 1, '2021-01-07 18:18:41', 'EmallShop, designed with Bootstrap and driven by Visual Composer, is a sensitive WooCommerce theme. Compatible with WordPress 5.4.x and WooCommerce 4.2.x Compatible with GDPR Ready WordPress WooCommerce theme!!! The EmallShop WordPress WooCommerce template will make your online store look more impressive and appealing to viewers with a sleek design and emphasis on products.\r\n<h2 id=\"item-description__emallshop-woocommerce-theme-key-features\">EmallShop Woocommerce theme Key Features:</h2>\r\n15+ Home Page Demo\r\nVisual Composer\r\nRevolution Slider\r\n100% Fully Responsive\r\nPowerful Admin Panel\r\nUnlimited Header Variations\r\nUnlimited Footer Variations\r\nProduct Image Slider\r\nProduct Hover Style\r\nProduct Quick View\r\nProduct Ajax Add in Cart\r\nCustomizable Product Page\r\nCustomizable Category Page\r\nRetina Ready\r\nSuper Easy Installation & Setup\r\nDemo Content Importer\r\nFull Control of Site Width\r\nMega Menu Built-in\r\nBoxed & Wide Layouts\r\nWPML Ready\r\nFont Awesome\r\nBootstrap Based\r\nCSS3 Animations\r\nUnlimited Color & Skins\r\nSEO Friendly\r\nLifetime Update', 'EmallShop– Responsive WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-73cgRBsjslE/X_cC_Au2MJI/AAAAAAAACPk/yJuEN4JgzMgZpc8tJz1fvKI2xL_2hieAgCLcBGAsYHQ/s590/EmallShop-1.jpg', 'publish', 'open', '2021-04-05 13:40:14', 0),
(2469, 1, '2021-01-07 18:25:21', '<img src=\"https://1.bp.blogspot.com/-7nTwO7hnl8s/X_le3rEKl7I/AAAAAAAACU0/FLh3_DW7SzM3UW8zYwJh83RRgh9EHYUJwCLcBGAsYHQ/s1577/1610178185687.jpg\" />A easy, quick and reliable WordPress theme for eCommerce. The theme was designed to be minimalistic in terms of design, fast in terms of performance and reliable in terms of maintenance, the opposite of what people call over-bloated, packed with everything you need to set up a beautiful online store or any kind of website.', 'Merchandiser– eCommerce WordPress Theme for WooCommerce', '', 'https://1.bp.blogspot.com/-xn8aAPV9tUM/X_cD4a0i3YI/AAAAAAAACPs/fVeXTT-sTJ4AXtUz3Hv3ZxheueO395BaACLcBGAsYHQ/s590/Merchandiser.jpg', 'publish', 'open', '2021-04-05 13:41:57', 0),
(2471, 1, '2021-01-07 18:29:51', '<h4><strong><img src=\"https://1.bp.blogspot.com/-7nTwO7hnl8s/X_le3rEKl7I/AAAAAAAACU0/FLh3_DW7SzM3UW8zYwJh83RRgh9EHYUJwCLcBGAsYHQ/s1577/1610178185687.jpg\" />Theme Features:</strong></h4>\r\n<ul>\r\n <li>One Click Demo Import</li>\r\n <li>Sell Anything Online</li>\r\n <li>Customize for your location</li>\r\n <li>Import and Export Products</li>\r\n <li>Search Engine Optimisation</li>\r\n <li>Order Management</li>\r\n <li>Product sorting and filtering</li>\r\n <li>Unlimited Products</li>\r\n <li>Unlimited Variations</li>\r\n <li>Product Ratings and Reviews</li>\r\n <li>WPBakery Page Builder Included</li>\r\n</ul>', 'The Hanger– Versatile eCommerce WordPress Theme for WooCommerce', '', 'https://1.bp.blogspot.com/-yoKzTo1aeMo/X_cFEnfgL6I/AAAAAAAACP4/epHW9t0Y3_86EED_bCph9Y5Pugc4xpJpwCLcBGAsYHQ/s590/The-Hanger.jpg', 'publish', 'open', '2021-04-05 13:44:33', 0),
(2473, 1, '2021-01-07 18:36:06', '<img src=\"https://1.bp.blogspot.com/-rKTfylEi4lo/X_k12OnhNRI/AAAAAAAACT8/m9_W7pInFd0oMa23_do_OFD_pp5XnDmSQCLcBGAsYHQ/s1468/1610167535275.jpg\" />\r\n\r\nThis is the newly released WooCommerce theme of a Power Elite Author who directly targets organic shops, farms & bakery industries. In order to attract clients, this particular template has high performance and brilliant quality, something that a WooCommerce theme should always have. It\'s just obviously better. Explore it alone!\r\n\r\nOrganik, a brand-new WooCommerce style primarily intended for organic food stores and the agricultural industry. For eight! We ensure that all our homepages will please your customers instantly | White Homepage, White Store | Homepage, Store, Farm, House. Beautiful homepage styles (2 brand new ones with white colour theme)\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>Responsive & Retina</li>\r\n <li>Blazing Fast Loading Speed</li>\r\n <li>3+ Homepage Styles</li>\r\n <li>One-Click Sample Data</li>\r\n <li>Live Customizer</li>\r\n <li>Unlimited Colors</li>\r\n <li>Sticky Header</li>\r\n <li>Smooth CSS3 Animation</li>\r\n <li>Contact Form 7 Supported</li>\r\n <li>Parallax Sections</li>\r\n <li>SEO Optimized</li>\r\n <li>WooCommerce 3.5.x Compatible</li>\r\n <li>600+ Google Fonts</li>\r\n <li>Font Awesome Icons</li>\r\n <li>Bootstrap 3.x Based</li>\r\n <li>WPML Supported</li>\r\n</ul>\r\n<strong>Check:</strong>\r\n\r\nhttps://gpldog.com/file/techmarket-multi-demo-electronics-store-woocommerce-theme/\r\n\r\nhttps://gpldog.com/file/sober-woocommerce-wordpress-theme/', 'Organik– Organic Food Store WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-HMluL0hqTfI/X_cH8dVSesI/AAAAAAAACQ0/99oOXdVpbmYMkCPfp2gK_t_DQoBLAoYGACLcBGAsYHQ/s590/Organik%2B%25281%2529.jpg', 'publish', 'open', '2021-04-05 14:50:59', 0),
(2476, 1, '2021-01-07 18:44:29', '<img src=\"https://1.bp.blogspot.com/-rKTfylEi4lo/X_k12OnhNRI/AAAAAAAACT8/m9_W7pInFd0oMa23_do_OFD_pp5XnDmSQCLcBGAsYHQ/s1468/1610167535275.jpg\" />Stockie-is a creative, minimalist, gorgeous, versatile WooCommerce theme that is carefully crafted multi-purpose with sharp user experience to build a modern and functional website and start selling your products and services. It comes with the WPBakery Page Builder (formerly Visual Composer) plugin and ACF Pro for theme settings, the most popular WordPress page builder.\r\n<h2 id=\"item-description__-some-core-features\"><strong>Some Core Features:</strong></h2>\r\n<ul>\r\n <li>Minimal and outstanding pre-made pages, layouts and UI elements.</li>\r\n <li><strong>Reliable & regular updates.</strong> Always stay up to date with the most actual Stockie version.</li>\r\n <li><strong>Figma source files.</strong> Use a mock-up of any of our demos to design your own site before building it.</li>\r\n <li><strong>One-click import.</strong> Many gorgerous site designs for you to adjust them in just a click’s distance.</li>\r\n <li><strong>Custom shortcode collection.</strong> Huge set of our custom WPBakery Page Builder elements with many options.</li>\r\n <li><strong>Highly customizable.</strong> The number of theme settings is astonishing, especially considering its speed!</li>\r\n <li><strong>Child-theme ready.</strong> A ready-to-use child theme that will preserve any source code changes.</li>\r\n <li><strong>Responsive layouts.</strong> Viewing your site will be a pleasant experience for your users on any device.</li>\r\n <li><strong>Smooth CSS3 animations.</strong> Make your site look interactive in no time with this collection of animations.</li>\r\n <li><strong>Built-in icons.</strong> Icon packs (Font Awesome, Ionicons and Linea Icons) to help you illustrate your content already included in the theme.</li>\r\n <li><strong>SEO ready.</strong> Best SEO practices included will help you climb the Google search ranking!</li>\r\n <li><strong>HTML5 & CSS3 compatible.</strong> Built with semantic and valid code.</li>\r\n</ul>', 'Stockie– Multi-purpose Creative WooCommerce Theme', '', 'https://1.bp.blogspot.com/-bNOFCGcpS9U/X_cIcVn-5zI/AAAAAAAACQ8/KmJT9aJ35WwrI7emGD2U3j2lUvXjaVJdgCLcBGAsYHQ/s590/Stockie.jpg', 'publish', 'open', '2021-04-05 14:52:38', 0),
(2478, 1, '2021-01-07 18:50:18', '<img src=\"https://1.bp.blogspot.com/-rKTfylEi4lo/X_k12OnhNRI/AAAAAAAACT8/m9_W7pInFd0oMa23_do_OFD_pp5XnDmSQCLcBGAsYHQ/s1468/1610167535275.jpg\" />Digitalworld is a modern, clean and professional WordPress Woocommerce theme that looks stunning on all kinds of screens and devices. It is fully responsive. It\'s great for fashion store, digital store, games store, food store, store of devices, store of household appliances, or any other categories.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>1 click import all demo</li>\r\n <li>Modern & Clean Design</li>\r\n <li>Powerful for WooCommerce</li>\r\n <li>Images With jQuery Inner Zoom</li>\r\n <li>Ajax: Add To Cart, Wishlist and Compare</li>\r\n <li>Unlimited Colors & Layouts</li>\r\n <li>Unlimited Different Headers & Footers</li>\r\n <li>Social Sharing Features</li>\r\n <li>14+ shortcodes for Visual Composer</li>\r\n <li>Color Attributes Swatches</li>\r\n <li>WC Multi-vendors Support</li>\r\n <li>HTML5 and CSS3 Tableless Design</li>\r\n</ul>', 'Digitalworld– Electronics & Multipurpose WooCommerce Theme', '', 'https://1.bp.blogspot.com/-qxbCLrzr72k/X_cJ5NgkiCI/AAAAAAAACRY/TwxBCQUJrg4uNYQH_KGTl8hw3wSHAI2HACLcBGAsYHQ/s590/00_Preview.jpg', 'publish', 'open', '2021-04-05 14:54:48', 0),
(2481, 1, '2021-01-07 21:20:04', '<h4><img src=\"https://1.bp.blogspot.com/-rKTfylEi4lo/X_k12OnhNRI/AAAAAAAACT8/m9_W7pInFd0oMa23_do_OFD_pp5XnDmSQCLcBGAsYHQ/s1468/1610167535275.jpg\" />Specialized for mega shops, layout, appliances, apparel, automobile, automotive, equipment, parts, furniture, art, home, decor, crafts, gift, flowers, organic, grocery, pet, toys, wine, bakery, snacks, gusto, drinks, mega, lingerie, beauty, cosmetics, jewellery, accessories, cloths, blog, accessories, minimal and multipurpose store, Mega Shop WooCommerce Sensitive Theme.</h4>\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>15+ Pre-Made Layouts</li>\r\n <li>1 click demo import</li>\r\n <li>60+ Shortcodes and Variations</li>\r\n <li>Blog Post Format Designs</li>\r\n <li>Unlimited Sidebars</li>\r\n <li>OWL carousel with Lazy load</li>\r\n <li>Custom Post Types (Testimonials, Our Brands)</li>\r\n <li>Powerful Theme Options</li>\r\n <li>3 Product/Hover Styles</li>\r\n <li>Smart Grid + Responsive</li>\r\n <li>Custom-Label on Products</li>\r\n <li>Google Fonts</li>\r\n <li>RTL Supports</li>\r\n <li>Horizontal/Vertical Menu</li>\r\n <li>Multiple Header Style</li>\r\n <li>Footer columns Settings</li>\r\n <li>Ajax: Cart, Wishlist, Compare</li>\r\n</ul>', 'Mega Shop– WooCommerce Multi-Purpose Responsive Theme', '', 'https://1.bp.blogspot.com/-rQvSuGZCUts/X_ctb3iLWyI/AAAAAAAACR0/YOw4a9-cGG8nB8OOQrkIQXlZm_ryHKtuwCLcBGAsYHQ/s590/01_preview.png', 'publish', 'open', '2021-04-05 13:28:18', 0),
(2484, 1, '2021-01-07 21:27:34', '<img src=\"https://1.bp.blogspot.com/-rKTfylEi4lo/X_k12OnhNRI/AAAAAAAACT8/m9_W7pInFd0oMa23_do_OFD_pp5XnDmSQCLcBGAsYHQ/s1468/1610167535275.jpg\" />\r\n\r\nAPRIL is a WordPress Woocommerce theme that will give you and your clients a seamless shopping experience that can be used for different types of shops, such as fashion design/catalog/accessories? The website, the boutique, the cosmetics... In order to customize your website with minimal effort and time, APRIL comes with a bunch of very handy theme choices.\r\n\r\nIn addition, APRIL has retina ready, smart megamenu, advanced options for skins, 10+ different demo homepages, 8 different header layouts, 800+ Google Fonts, and so much more! With tonnes of powerful features that you can customize according to your brand, APRIL is the perfect combination of power, simplicity and professional design.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>10+ Stylish Pre-made Home Pages</li>\r\n <li>One Click Demo Data</li>\r\n <li>Smart Content Block</li>\r\n <li>Element Template</li>\r\n <li>APRIL Skin Options</li>\r\n <li>10 Custom Widgets</li>\r\n <li>Unlimited Sidebar & Colors</li>\r\n <li>8 Stylish Header Style</li>\r\n <li>Built-in Mega Menu</li>\r\n <li>Sticky Header</li>\r\n <li>Smooth Scroll</li>\r\n <li>Retina Ready</li>\r\n <li>Boxed/Wide layout</li>\r\n</ul>', 'APRIL– Wonderful Fashion WooCommerce WordPress Theme', '', 'https://1.bp.blogspot.com/-wvTmlYpM374/X_cu5TxB3dI/AAAAAAAACSA/I_EwgjPw0IEPGTbXsgD2ID-djT8lP4oNQCLcBGAsYHQ/s590/APRIL%2B%25281%2529.jpg', 'publish', 'open', '2021-04-04 14:25:51', 0),
(2500, 1, '2021-01-08 10:22:52', '', 'Silver Membership', '', 'https://1.bp.blogspot.com/-_-3bwnILE9Q/X_gZfEaNFaI/AAAAAAAACSw/DjbgG3jdHZ4zibp64-tcEL8AjfXVVhj4ACLcBGAsYHQ/s473/silverMem.PNG', 'publish', 'closed', '2021-01-08 10:22:52', 0),
(2503, 1, '2021-01-08 10:32:30', '', 'Platinum Membership', '', 'https://1.bp.blogspot.com/-Tn5tyj7LJ5k/X_gZfsfKPAI/AAAAAAAACS0/Iyh9Al8cKtAtsk0HF7El__BHQHtmbQkjACLcBGAsYHQ/s473/PlatinumMem.PNG', 'publish', 'open', '2021-01-08 10:32:30', 0),
(2505, 1, '2021-01-08 10:39:34', '', 'Gold Membership', '', 'https://1.bp.blogspot.com/-SR-JXbHHhM0/X_gZdSh_QLI/AAAAAAAACSs/dsXmAw7M-k0vPGktt2VTlrVTrBQgNqZqwCLcBGAsYHQ/s472/GoldMem.PNG', 'publish', 'open', '2021-01-08 10:39:34', 0),
(2530, 1, '2021-01-08 22:04:22', 'WooCommerce Memberships is not just another plugin to restrict the content of your website: it is an easy-to-use, site-wide membership solution that brings together your content, store, and memberships.\n\nYou can limit the content to members, but you can also \"drip\" the content to schedule when members have access over time. Offer membership access, provide product purchase memberships, grant memberships manually, and fully incorporate member benefits into your shop.', 'WooCommerce Memberships- Wordpress Membership Plugin', '', 'https://1.bp.blogspot.com/-qDYeXU0AohQ/X_iIjr5rxnI/AAAAAAAACTc/rE_sZa5NgYocpZYwGV-tmdrl1T88CDwGgCLcBGAsYHQ/s1200/woocommerce-memberships-plugin.jpg', 'publish', 'open', '2021-04-02 04:42:29', 0),
(2535, 1, '2021-01-09 11:05:11', '<img src=\"https://1.bp.blogspot.com/-7nTwO7hnl8s/X_le3rEKl7I/AAAAAAAACU0/FLh3_DW7SzM3UW8zYwJh83RRgh9EHYUJwCLcBGAsYHQ/s1577/1610178185687.jpg\" />\r\n\r\nEikra is a minimal and contemporary WordPress theme that has been perfectly crafted for educational centres of all kinds. This ultimate WordPress theme for education includes everything you need for a complete online education centre and LMS, designed with your school, college, university or training centre in mind.\r\n\r\nEikra uses LearnPress, the most popular WordPress LMS plugin, because it\'s packed full of great features, but it\'s also super easy to use with your education centre, online courses or tutorial website. You will have your curriculum, classes, lectures, quizzes, payment integration, and loads more with LearnPress LMS...', 'Eikra– Education WordPress Theme', '', 'https://1.bp.blogspot.com/-o6NIMsC87-w/X_k_ztYROqI/AAAAAAAACUY/utitHw0rztYMjrazzguF308upZRVxCPYwCLcBGAsYHQ/s590/eikra.png', 'publish', 'open', '2021-04-04 14:23:34', 0),
(2546, 1, '2021-01-13 13:32:56', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-uI_qeor17vY/YAlYle2c03I/AAAAAAAACjs/1HMfHLREgdc1rTy-u23XZsSnIvNLq93ugCLcBGAsYHQ/s1323/breek.PNG\" width=\"564\" height=\"691\" />\r\n\r\nZoa is a minimal, modern WordPress e-commerce theme built with Elementor page builder. It was built for your watch store, men\'s store, women\'s store, clothing store, furniture store, bookstore, cosmetics store, luxury jewellery store, and accessories store.\r\n\r\nIn addition, this amazing theme is integrated with WooCommerce, many plugins with lots of features, mini cart, custom widgets, unlimited colour schemes, smooth transition effects slider, multi-column style menu and advanced widgets... you are free to control this theme in order to make your store more friendly and adorable to your customers...', 'Zoa – Minimalist Elementor WooCommerce Theme', '', 'https://1.bp.blogspot.com/-snuJqQciZx0/X_6oXmYykaI/AAAAAAAACYo/4u9V00L-MOcc8i2AYtrCinq6R2JvTL88QCLcBGAsYHQ/s590/Zoa-1.jpg', 'publish', 'open', '2021-04-04 14:19:50', 0),
(2548, 1, '2021-01-13 13:42:08', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-uI_qeor17vY/YAlYle2c03I/AAAAAAAACjs/1HMfHLREgdc1rTy-u23XZsSnIvNLq93ugCLcBGAsYHQ/s1323/breek.PNG\" width=\"482\" height=\"590\" />\r\n\r\nHunted is a strong and comprehensive theme with its various features that can meet the expectations of the editorial site. If you have a rich content and want to present it in a compact way, it would be a good choice. It can be used for your stories, daily articles, fashion news, decoration tips, hangout tips and everything else about life.\r\n\r\nThe clear pattern of red and dark blue has a different and attractive atmosphere, especially when compared to pastel coloured themes. Thus, it stimulates the senses of the visitors. Serif font use in titles and colour details in the sidebar helps the \"collegiate\" soul of this WordPress magazine theme.', 'Hunted– A Flowing Editorial Magazine Theme', '', 'https://1.bp.blogspot.com/-BXNoQ5YawDk/X_6qq1RWCfI/AAAAAAAACZE/jyGSsiGRRxcZI47nCzHM2oe99lUE87kzgCLcBGAsYHQ/s590/Hunted.jpg', 'publish', 'open', '2021-04-04 14:02:59', 0),
(2550, 1, '2021-01-13 13:49:38', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-uI_qeor17vY/YAlYle2c03I/AAAAAAAACjs/1HMfHLREgdc1rTy-u23XZsSnIvNLq93ugCLcBGAsYHQ/s1323/breek.PNG\" width=\"544\" height=\"666\" />\r\n\r\nBreek is a super modern blog focused on high speed and vivid colours, perfectly suited to any kind of blog specially personal, resources, freebies or biography blogs. It\'s super light, this fast theme has been crafted with multiple techniques to achieve excellent scores on Google, so we keep in mind the quality of the code and the SEO.\r\n<h4><strong>Theme Features:</strong></h4>\r\n<ul>\r\n <li>Fully Responsive</li>\r\n <li>Super Light and Modern design</li>\r\n <li>Highly optimized and lightweight</li>\r\n <li>AMP Support</li>\r\n <li>Minified and Optimized code</li>\r\n <li>One Click Demo Import</li>\r\n <li>ACF Pro bundled (save $29)</li>\r\n <li>Dedicated advertising section</li>\r\n <li>Lazy Load for post content</li>\r\n <li>Custom Galleries</li>\r\n <li>Documentation included</li>\r\n <li>Disqus and Facebook support</li>\r\n <li>Sticky sidebar for Posts</li>\r\n <li>and so much more… click the Live Demo button to read more details</li>\r\n</ul>', 'Breek– Minimal Masonry Theme for WordPress', '', 'https://1.bp.blogspot.com/-_V68KycL56Q/X_6tKjJgOPI/AAAAAAAACZg/r7TcDADlb3ovfCQhnZDhg8FI7k04XtTUQCLcBGAsYHQ/s590/Breek%2B%25281%2529.png', 'publish', 'open', '2021-04-02 04:38:40', 0),
(2552, 1, '2021-01-13 14:01:46', '<span style=\"font-size: 14.4px;\"><span style=\"color: #003366;\"><img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-uI_qeor17vY/YAlYle2c03I/AAAAAAAACjs/1HMfHLREgdc1rTy-u23XZsSnIvNLq93ugCLcBGAsYHQ/s1323/breek.PNG\" width=\"553\" height=\"677\" /></span>GoodLife is now the fastest and most SEO-friendly Newspaper & Magazine theme. Themeforest GoodLife – Responsive Magazine Theme is a modern, stylish and unique WordPress theme. It\'s packed with awesome features and its main focus is to make your website stand out while keeping it extremely easy to use and maintain.</span>', 'GoodLife– Responsive Magazine Theme', '', 'https://1.bp.blogspot.com/-dB3S5DhxzhA/X_6vaxWbx5I/AAAAAAAACZ8/evjyUHBW1gYfTbTuywWDDMynCJDZlkOkgCLcBGAsYHQ/s590/GoodLife-1.jpg', 'publish', 'open', '2021-04-04 14:31:21', 0),
(2875, 1, '2021-01-21 07:48:55', 'Build a beautiful website that is sure to astound every cinephile! With Cinerama\'s eye-catching look, you\'re sure to immediately astound your visitors. The theme is perfect for all filmmakers, film studios, and every film production company.\r\n\r\nCinerama is packed-full of highly functional features, pre-designed home and inside pages so that everyone can easily create fantastic movie presentations with the utmost ease. Create a beautiful website, present your film studio and get in the spotlight with the film theme of Cinerama!', 'Cinerama- A Theme for Movie Studios and Filmmakers', '', 'https://1.bp.blogspot.com/-wU4iZx7REss/YAjj7vluFvI/AAAAAAAAChE/s_WuPdO-saEMTn03zjj6n8ZZT3tON-92ACLcBGAsYHQ/s590/01_preview.jpg', 'publish', 'open', '2021-04-04 13:59:28', 0),
(2890, 1, '2021-01-21 16:19:03', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-sEw2Fd23zbo/YApH5EfKrqI/AAAAAAAACl4/mVAoFqWW5O490r4wiwYV2IGum9qvqr1JwCLcBGAsYHQ/s1542/1611286395441.png\" width=\"579\" height=\"869\" />\r\n\r\nGillion has been pre-made for you with 15+ high quality fully-functioning website demos that are ready to be personalized and released ASAP.\r\n\r\nWith six all-purpose multi-use demos that can be expanded well beyond the usual WordPress limits, and six unique use sites that are ready to roll out, we know you\'re going to love Gillion.', 'Gillion | Multi-Concept Blog/Magazine & Shop WordPress AMP Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-_kJMeGMCMg4/YAlbPo1kDzI/AAAAAAAACkI/PSj2lSlwnEAQAcFUkrFR82zOfNEKFINCgCLcBGAsYHQ/s595/01_Gillion-preview.png', 'publish', 'open', '2021-04-04 13:57:34', 0),
(2926, 1, '2021-01-21 20:56:57', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-sEw2Fd23zbo/YApH5EfKrqI/AAAAAAAACl4/mVAoFqWW5O490r4wiwYV2IGum9qvqr1JwCLcBGAsYHQ/s1542/1611286395441.png\" width=\"580\" height=\"871\" />\r\n\r\nIf you want to sell your products such as templates, arts, tutorials, music, ebooks, stock photography, stock footage, themes, plugins, code snippets, software or digital services, then Mayosis is for you. Constructed on WordPress and free Easy Digital Downloads.\r\n\r\nMayosis – Digital Marketplace Theme helps you to create your own marketplace, such as Amazon, eBay, Etsy, Themeforest or CreativeMarket, and it takes only a few hours to set up your website and sell merchandise.\r\n\r\nThe theme is highly personalized and arranged for the sale of a different kind of digital products as described above. Integrated Visual Composer plugin helps you to easily and beautifully build your web pages without understanding a single piece of code.\r\n\r\nNot only that, but you can also build a marketplace for others where people are selling their goods on your marketplace, and Mayosis allows for an additional EDD (Easy Digital Downloads) extension called FES (Front End Submission). There are other common extensions sponsored by Mayosis, such as the Commission EDD.', 'Mayosis– Digital Marketplace WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-JWnUtKuoqhk/YAmcoRYcXZI/AAAAAAAAClc/CqMGD73kjUclbFOZbVzpTGB8I3f01ip6wCLcBGAsYHQ/s590/Mayosis.jpg', 'publish', 'open', '2021-04-04 13:55:08', 0),
(2933, 1, '2021-01-22 09:43:35', '<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-LakwBWfybz4/YApPOn7740I/AAAAAAAACmU/P5LTFjm4fCcFyXupisN-JtphOSks7t90QCLcBGAsYHQ/s1214/Zox%2Bnews%2Bproof%2B.png\" width=\"566\" height=\"504\" />\r\n\r\nFintech WP is a powerful tool for creating a stunning website for financial services. Packed with awesome features, easy to use, built with SEO in mind, and incredibly fast.\r\n\r\nCreated specifically for financial technology and services websites and aimed at financing, insurance, payments, investment, advisory and other financial services companies.', 'Fintech WP– Financial Technology and Services WordPress Theme', '', 'https://1.bp.blogspot.com/-UMYLuwq7_lI/YApRE-xT1RI/AAAAAAAACmg/6XUxGl-8GS0K6dFe2t0B6eHx9L8DE6ykgCLcBGAsYHQ/s590/Fintech-WP.png', 'publish', 'open', '2021-04-05 13:21:11', 0),
(2943, 1, '2021-01-22 11:32:40', 'Ninja Tables is the best-selling WordPress table builder plugin for user-friendly layout, easy-to-use settings, and elegant front-end settings. Create a table right from the comfort of your home without getting any coding experience. Do whatever you want—create, edit, manage, and customize. Ninja Tables is the ultimate solution for the design of WordPress tables for any reason.\r\n\r\n<strong>Premium Features:</strong>\r\n<ul>\r\n <li>Add Media to Tables Cells</li>\r\n <li>Unlimited Colors in Your Tables</li>\r\n <li>Connect Google Sheets</li>\r\n <li>Drag and Drop Data Sorting</li>\r\n <li>Export-Import CSV</li>\r\n <li>Advanced Customization Features</li>\r\n <li>WooCommerce Integration</li>\r\n <li>Advanced Date Sorting</li>\r\n <li>WP Posts</li>\r\n <li>Add CSS Class</li>\r\n <li>Conditional Column Formating</li>\r\n <li>Transform Value</li>\r\n <li>Custom Filter UI</li>\r\n <li>Advanced-Data Filtering</li>\r\n <li>Connect WP Fluent Form</li>\r\n <li>Set Max Width for Columns</li>\r\n <li>Text Alignment</li>\r\n <li>Colspan/Cell Merging Feature</li>\r\n <li>Use Shortcode in your table cell</li>\r\n</ul>', 'Ninja Tables Pro– The Fastest and Most Diverse WP DataTables Plugin', '', 'https://1.bp.blogspot.com/-bOdgLu7E3Ks/YApolfWawcI/AAAAAAAACnM/roA_Vrh_ao0pmZ-Wa3T_caevlUcu5vB8ACLcBGAsYHQ/s1936/NT-prev.png', 'publish', 'open', '2021-04-04 13:42:12', 0),
(2947, 1, '2021-01-23 08:24:10', 'XStore is the most intuitive and customizable eCommerce theme for WordPress & WooCommerce that has been carefully crafted and includes a collection of pages, tools and settings that will help you build a professional-looking WooCommerce store.\r\n\r\nThis elegant and intuitive eCommerce WooCommerce theme is carefully designed and includes a collection of websites, tools and settings that will help you create a professional and trustworthy online store.', 'XStore | Highly Customizable WooCommerce Theme & WordPress', '', 'https://1.bp.blogspot.com/-ZZJxZrxPtpU/YAuOO9V3SiI/AAAAAAAACno/3x2RJI-oeYkP62I6COqIdUzxo4Vq8wqzgCLcBGAsYHQ/s590/01_Preview__large.__large_preview.jpg', 'publish', 'open', '2021-04-05 10:06:26', 0),
(2949, 1, '2021-01-23 08:37:34', 'Jupiter X is your all-in-one platform for building perfect pixel websites, quick and simple. It comes with Elementor page creator, the world\'s leading WordPress site builder. You can configure Jupiter X globally using a WordPress customiser. The brand-new shop customiser lets you customize every part of your online shop, including checkout and cart tab.', 'Jupiter - Elementor Multi-Purpose Theme', '', 'https://1.bp.blogspot.com/-zwNsJy0_1SQ/YAuSN0k139I/AAAAAAAACoE/TddTTzBobDE6dfRgvX9g-lrswbWpWBZKQCLcBGAsYHQ/s590/preview.__large_preview.jpg', 'publish', 'open', '2021-04-05 10:00:09', 0),
(2951, 1, '2021-01-23 09:43:30', 'The main goal of TheGem was to build a WordPress Theme for companies, agencies, online stores, photographers, bloggers and designers that would give maximum creative freedom to users who are not deeply involved in design & coding. The result is impressive: with more than 200 styles for more than 50 content elements, you can create totally unique designs in a matter of minutes.\r\n\r\nThe Gem design is based on a detailed review of UX Pin\'s 2016 Web Designs. This theme reflects contemporary UI/UX architecture patterns in a unique way, free from annoying mainstream approaches. The Gem is a fresh design experience, designed to meet both understated and wild ideas in a minimalist or extravagant way – essentially your choice is yours.', 'TheGem - Creative Multi-Purpose High-Performance WordPress Theme', '', 'https://1.bp.blogspot.com/-fneSd4Cr75Q/YAuURqit4WI/AAAAAAAACoQ/vP7n6VwBffEI4P_qPaI2pdBB_rtbF9LFQCLcBGAsYHQ/s590/preview-3_0_03.__large_preview.jpg', 'publish', 'open', '2021-04-04 13:34:02', 0),
(2956, 1, '2021-01-23 15:17:00', 'Guide your online classic with Leitmotiv, a film and film production theme that\'s organized, framed and paced so that you can get a great website for your studio or something that\'s relevant to this very day.Loads of beautiful showcase elements for filmmakers, movies, festivals and film aficionados in general, realistic features for all kinds of film-oriented sites and a modern design direction that absolutely stuns, with Leitmotiv you get it all!', 'Leitmotif - Movie and Film Studio Theme', '', 'https://1.bp.blogspot.com/-Cv2BCdWcBxQ/YAvwPVCGdyI/AAAAAAAACo8/jQalZ-iTzOk5KeJkF-n850-Dm_7Z0Xm1QCLcBGAsYHQ/s590/leitmotif-malagrafika.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:38', 0);
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(2960, 1, '2021-01-23 19:43:53', '<h2 id=\"item-description__vehica-car-dealer-amp-automotive-directory-listing\"><strong>Vehica – Car Dealer & Automotive Directory Listing</strong></h2>\r\n<strong>Vehica</strong> – The most innovative Car Dealership WordPress Theme. It can be used to create a magnificent automotive website. This theme is ultra easy to use and very flexible. You can customize options without knowing any programming – change colors, images, sizes, spaces, and placement of any elements just via drag-and-drop. Vehica includes a powerful Vehicle Inventory module that allows you to modify all vehicle fields and search forms with just a few clicks. Your final website done via Vehica will be very quick and will work perfectly on mobile devices and tablets. Choosing Vehica is a great investment because you will have outstanding website without losing a lot of time or energy setting it up and managing it. We are Envato Elite Author. We are Envato Featured Authors. Our profile is 4.85+/5 rated by 200+ clients. If you find any problems we will help you.\r\n<h2 id=\"item-description__features\"><strong>Features</strong></h2>\r\n<strong>Single Click Import</strong> – Demo and all pages are automatically imported after 1 click. It will save you time and allow you to quickly start your customizations. Demo package do not include users photos and has only few sample cars added.\r\n\r\n<strong>Basic Setup Panel</strong> – After a few minutes your website will be totally yours! All in one place, you can select your primary color, add your phone number, email, upload your logo, and it will immediately be added everywhere on your website. With a single click you can delete all demo vehicles and have your website ready for its first visitors. Could it be easier or faster?\r\n\r\n<strong>Globally Adaptable</strong> – You can translate all texts into any language, change currency, and switch between number formats and metrics. No extra software / plugin required for translation and adaptation. You just type your newly translated text into the panel and click Save. You can also have multiple currencies at the same time.\r\n\r\n<strong>Powerful Vehicles Inventory</strong> – You can change the look of your vehicle inventory by creating your own fields and modifying the existing options. There are 6 types of fields: Text, Number, Taxonomy, Price, Gallery, Embed (Video).\r\n\r\n<strong>Advanced Search Functionality</strong> – Search forms are critical in the Automotive business, so we’ve spent hundreds of hours testing and improving the Vehica search function. The result? A quick and flexible search engine that can be customized to fit your customers’ needs, allowing them to search for vehicles based on their specific criteria.\r\n\r\n<strong>Inventory Instant Results</strong> – Search results are updated after each selection. This way your users are immediately informed of “how many vehicles left.” It provides a much better user experience than a classic “Search” button. Reloading is very fast, and users will love to use it. They will also avoid a “0 Results” found situation by typing in too many criteria. It reduces bounce rate and it is why all popular big companies have “instant results without reloading a page” after each criteria is changed. It is technologically very advanced, and it is why most other themes do not have it.\r\n\r\n<strong>Field Relationships</strong> – Need to connect your Make field to your Model field? Create an unlimited number of relationships between search fields to automatically filter your search options and create a faster, more user-friendly experience.\r\n\r\n<strong>Relevant Fields</strong> – Your visitors only need to see fields that are relevant for their search, e.g., different fields for motorcycles than for trucks. You can create these kinds of relationships so the user experience is much smoother and you can build perfect motors website.\r\n\r\n<strong>Elementor Plugin Integration</strong> – Vehica is based on Elementor Free plugin and we spend thousands of hours to add extra value to it. Create Any Website You Can Imagine. You can modify everything: Homepage, all pages (e.g., Contact / About), Single Vehicle Page, Results Page, User Page. It is the most flexible and easy to use solution on the market for motors website. Our developers created 30+ new elements that you can “drag-and-drop” to make sure page builder is ultra flexible and fully integrated with Vehica. Elementor Pro (paid) version is not required to run Vehica, but if you like to use it this product is fully compatible.\r\n\r\n<strong>Monetization System – WooCommerce Payment Gateways</strong> – Vehica has monetization system that allow you to earn when users submit listings. You can configure: PayPal, Stripe, Visa, Mastercard, Wire Transfer, Square, Apple Pay, Alipay, Braintree, PayU, PayFast, SecurePay, Authorize.Net, 2checkout, Amazon Pay, PagSeguro and many many other WooCommerce Payment Getaways. Please consider <strong>Vehica do not have WooCommerce Shop functionality</strong> – this integration is related to receiving payments when visitors submit new listing – <a href=\"https://support.vehica.com/knowledgebase/monetization-systems-paypal-stripe-and-woocommerce-payments-gateways/\" rel=\"nofollow\">click here to learn more about Vehica Monetization Systems</a>\r\n\r\n<strong>Flexible Menu</strong> – Vehica has a great menu that includes sticky and transparent options. Mobile menu was designed as off-canvas.\r\n\r\n<strong>Global Body & Headings Google Fonts</strong> – Choose body and heading font in your setup panel. It will automatically be displayed on all of your pages. 800+ fonts available.\r\n\r\n<strong>Private Seller / Business Seller User Roles</strong> – You can create a WordPress account that can only add vehicles and does not have access to admin functions. Great to delegate adding vehicles to other people.\r\n\r\n<strong>Blog</strong> – Everything you need to start blogging is already integrated into MyHome. You can easily customize single post page via drag-and-drop options – change order of sections, colors, and more.\r\n\r\n<strong>Search Engine Optimization (SEO)</strong> – SEO is a must for any WordPress theme, but we’ve taken it one step further. Vehica helps Google understand your content with optimized headings, URL structure and more. Vehica also fully supports the Yoast plugin to give your SEO rankings that extra boost. It is an ultra-fast and light product so Google scores it higher in search results (your website speed is one of the key factors of position).\r\n\r\n<strong>Supported 3rd party-plugins</strong> – Vehica can be smoothly integrated with most popular plugins. We fully support Yoast, W3 Total Cache and Contact Form 7.\r\n\r\n<strong>Import any XML or CSV File (Free WP All Import Compatibility)</strong> – If you wish to import listings from your XML or CSV file you can use Free version of WP All Import Plugin. Vehica has additional special functions related to this plugin to make it easy (<a href=\"https://support.vehica.com/knowledgebase/import-any-xml-or-csv-file-free-wp-all-import-compatibility/\" rel=\"nofollow\">Read More</a>)\r\n\r\n<strong>Crossbrowser compatibility</strong> – Works perfectly fine with Firefox, Safari, Opera, Chrome, Edge.\r\n\r\n<strong>Lifetime Free Updates</strong> – You will receive updates to your Vehica theme free of charge.', 'Vehica - Car Dealer & Automotive Directory', '', 'https://1.bp.blogspot.com/-oWaCeJIg1m4/YGtUsJWRGCI/AAAAAAAADHY/A21axdJ1GPk2M_Dl5vR821-lVc7mpHmzQCLcBGAsYHQ/s1180/01_preview.__large_preview.jpg', 'publish', 'open', '2021-04-05 23:57:56', 0),
(2965, 1, '2021-01-26 19:00:10', '', 'WHMCS– The Web Hosting Automation Platform', '', 'https://1.bp.blogspot.com/-4meIXjDbAgU/YBAY_c0BQfI/AAAAAAAACp0/-8klDTMvpZABqsZlg5ceV5Z9OLGsnxS8gCLcBGAsYHQ/s1366/whmcs-8.1.0.png', 'publish', 'open', '2021-03-28 21:11:02', 0),
(2968, 1, '2021-01-27 08:36:38', 'This powerful WordPress plugin enables beginner-and mid-level designers to use pro-level visuals to Impress their customers. Not just amazing, sensitive sliders, you\'ll be able to build everything you can imagine:\r\n<ul>\r\n <li><strong>Stunning visual elements such as sliders & carousels</strong></li>\r\n <li><strong>Eye-grabbing hero sections that stand out</strong></li>\r\n <li><strong>Whole websites that could win you awards</strong></li>\r\n <li><strong>Full web pages that glue visitors to the screen</strong></li>\r\n <li><strong>Rich and dynamic content your clients will LOVE</strong></li>\r\n</ul>\r\nWithout writing a line of code. In a matter of minutes. Using any type of media you want.', 'Slider Revolution Responsive WordPress Plugin', '', 'https://1.bp.blogspot.com/-bAN5uFIMDR8/YBDcDZ3kGBI/AAAAAAAACqU/7o2WOElJ1CEJ2GbHDBs7c9psV2mzSmxtwCLcBGAsYHQ/s590/ccfeaturedimage3.jpg', 'publish', 'open', '2021-07-11 22:04:30', 0),
(2971, 1, '2021-01-27 09:01:15', '<strong>Ultimate Membership Pro</strong> is the well known and the best WordPress Membership Plugin that allow you to create and work with multi-level exclusive access for your Members based on simple Free packages or Payed packages.', 'Ultimate Membership Pro - WordPress Membership Plugin', '', 'https://1.bp.blogspot.com/-hewgE6rmKNA/YBDeOa5Hs2I/AAAAAAAACq0/Me0JEaPPBCEJyeBGtPezxhKPwOjlbomUwCLcBGAsYHQ/s590/ultimate-membership-pro%2B%25281%2529.jpg', 'publish', 'open', '2021-04-02 17:42:42', 0),
(2973, 1, '2021-01-27 09:10:25', 'If you have a WooCommerce shop, a must-have plugin for you is WooCommerce Multi Currency. WooCommerce Multi Currency enables your clients to convert between currencies and allows your store to accept multi-currency payments. It is possible to manually or automatically set up the exchange rate. The plugin can get customer geolocation automatically and show the price in the native currency of the customers.', 'WooCommerce Multi Currency - Currency Switcher', '', 'https://1.bp.blogspot.com/-msjmLpoJjl0/YBDgboRLwbI/AAAAAAAACrQ/gkd4GIePZO4GlO0gO8X6A2sqhYXFRRKAACLcBGAsYHQ/s590/01_preview.jpg', 'publish', 'open', '2021-09-04 13:54:59', 0),
(2975, 1, '2021-01-27 09:22:27', 'If you have a WooCommerce shop, a must-have plugin for you is WooCommerce Multi Currency. WooCommerce Multi Currency enables your customers to switch between currencies and helps your store accept multi-currency payments. It is possible to manually or automatically set up the exchange rate. The plugin can get customer geolocation automatically and show the price in the native currency of the customers.', 'Product Designer for WooCommerce WordPress | Lumise', '', 'https://1.bp.blogspot.com/-mA0ucYsbLs4/YBDhSEqnpKI/AAAAAAAACrY/zqAQofZgkVIRU7Rvm-ik77BIlqRXvMAQACLcBGAsYHQ/s590/lumise_woo_preview.jpg', 'publish', 'open', '2021-04-04 13:31:24', 0),
(2977, 1, '2021-01-27 09:29:38', 'Wordpress auto-poster/reposter plugin which supports Facebook, Instagram, Twitter, Pinterest, Linkedin, Google my Business, Telegram, Medium, Reddit, Tumblr, VK, OK.ru, Wordpress based blogs.\r\n<h3 id=\"item-description__what-are-the-benefits-of-purchasing-our-plugin\">What are the benefits of purchasing our plugin?</h3>\r\n<ol>\r\n <li><strong>Save your time</strong> <i>You will be able to save your time by sharing your WordPress posts automatically</i></li>\r\n <li><strong>Improves site SEO</strong> <i>You will be able to increase links to your site from social networks.</i></li>\r\n <li><strong>Keep your social media fresh</strong> <i>You will be able to keep your social profiles fresh by posting frequently using Schedule module.</i></li>\r\n <li><strong>Increase site visitors</strong> <i>More shares will bring more visitors to your site.</i></li>\r\n</ol>\r\n(Note: you have to use your own fb or other social media app id in order to use this plugin)', 'FS Poster - WordPress Auto Poster & Scheduler', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-3A2rbDU5KRA/YBDkAgPEJNI/AAAAAAAACr0/1vGHtcVOsFMhAZ_V2Y3oZYdsdIcGj-a7wCLcBGAsYHQ/s590/preview.jpg', 'publish', 'open', '2021-08-15 08:39:23', 0),
(2980, 1, '2021-01-27 13:29:13', 'Speaker is a WordPress plugin designed to convert website content to human-like speech. The plugin uses state-of-the-art machine learning and artificial intelligence technology to play a high-quality human voice and add a content audio player to the page. The basis of the Speaker plugin is the Google Cloud Platform, which ensures the reliability and speed of the plugin anywhere in the world.', 'Speaker – Page to Speech Plugin for WordPress', '', 'https://1.bp.blogspot.com/-PyrMdQ9onrw/YBEdIeQLQXI/AAAAAAAACsQ/qd26kdDeKnA2pdYyQdf6Wmb4RG2ySnoLgCLcBGAsYHQ/s1232/01.png', 'publish', 'open', '2021-04-02 04:42:28', 0),
(2983, 1, '2021-01-27 17:32:01', '<h2 id=\"item-description__user-features-demo\">User Features (<a href=\"https://demo.wowonder.com/\" rel=\"nofollow\">Demo</a>)</h2>\n<ul>\n <li><strong>High Performance & High Level Cache System:</strong> The #1 thing that must be available on any social network website, The Speed ! Speed up your website with our Cache system, enable it and the website can handle more than 1 Million user!</li>\n <li><strong>Wonder (New Feature)</strong>: With our new feature, user can wonder posts, photos, videos.</li>\n <li><strong>RTL Support</strong>: WoWonder also supports right to left languages.</li>\n <li><strong>Social Login</strong>: With WoWonder you can login via most famous social media websites like (Facebook – Twitter – Google+ – LinkedIn – Vk – Instagram).</li>\n <li><strong>Easy & Nice Looking URL:</strong> Users, Pages, Group all in one tiny URL !</li>\n <li><strong>User Last Seen</strong>: Displays user’s last seen/online status.</li>\n <li><strong>Profile visit Notification</strong>: Receive notification from users who visited your profile.</li>\n <li><strong>Friends & Follow System</strong>: WoWonder Supports friends system like Facebook, follow system like twitter.</li>\n <li><strong>Home/News Feed</strong>: Displays Posts, Photos, Files, Videos, and Maps posted by friends/followed people, Also story filters, follow/friends suggestions, and user activities list.</li>\n <li><strong>User Timeline</strong>: Displays user?s profile with Posts, Photos, Videos posted and shared by user.</li>\n <li><strong>Pages</strong>: User can create unlimited pages and invite his friends to like the pages.</li>\n <li><strong>Groups</strong>: User can create unlimited groups and invite/add his friends to his joined groups.</li>\n <li><strong>Games</strong>: User can play unlimited flash games.</li>\n <li><strong>Social Videos Support</strong>: User can easily share videos from the biggest videos sharing websites like Youtube, Dailymotion, Vine, Vimeo, Facebook videos & Soundcloud music</li>\n <li><strong>Photo Album</strong>: User can create unlimited photo albums with nice looking style.</li>\n <li><strong>Cover Picture</strong>: Dynamic Cover for users.</li>\n <li><strong>Profile Picture</strong>: Dynamic profile picture for users.</li>\n <li><strong>User Privacy</strong>: Control who can message you, post on your timeline, follow you, confirm follow requests or not, last seen, etc.</li>\n <li><strong>User Profile Info</strong>: Displays user’s profile information (birthday, website, gender, social media, about, last seen, etc).</li>\n <li><strong>Notifications</strong>: Receive notification from users (likes, dislikes, comments, wonders, shares .. etc)</li>\n <li><strong>#Hashtags</strong>: Displays trending and related topics shared by users.</li>\n <li><strong>@Mentions</strong>: Use @username to tag people in a status or messages.</li>\n <li><strong>Post Publisher</strong>: Status, Sound cloud, YouTube, Vine, Google Maps, Videos, Files, Photos and emoticons.</li>\n <li><strong>Delete & Edit Posts</strong>: User can delete and edit his own posts.</li>\n <li><strong>Save Posts</strong>: User can save posts to view them later.</li>\n <li><strong>User Events</strong>: User can share their events like feelings/travailing/watching/playing/listening.</li>\n <li><strong>Recent Search</strong>: What ever the user was looking for, all will be saved into recent searches with the ability to clear them.</li>\n <li><strong>Post Privacy</strong>: User can choose the post privacy (Only me, Everyone.. etc)</li>\n <li><strong>Likes</strong>: Like or unlike a post. View list of people who like this.</li>\n <li><strong>Dislike</strong>: Dislike a post. View list of people who dislike this.</li>\n <li><strong>Comments & Replies</strong>: Comment on a post, Reply to a comment, View all post comments.</li>\n <li><strong>Search</strong>: Search for people, #Hashtags with our filtered search system.</li>\n <li><strong>Reports</strong>: Report posts to be checked by administrators.</li>\n <li><strong>Live Chat</strong>: Real-time live chat system, (online, offline) status.</li>\n <li><strong>Messages</strong>: Send and receive private messages & share files from other Users.</li>\n <li><strong>API</strong>: retrieve user data, user posts, search for users via API.</li>\n <li><strong>Activities:</strong> Displays user’s latest activities (likes, shares,comments, wonders)</li>\n <li><strong>Multi Languages</strong>: 4 Languages (Arabic, English, Russian, Turkish) with the ability to add unlimited languages.</li>\n <li>Verified Profiles/Pages.</li>\n <li>Fully responsive for all devices, browsers.</li>\n <li>Password recovery by email.</li>\n <li>Online user counter on admin & home page.</li>\n <li>Comment auto detector</li>\n <li>Emoticons</li>\n</ul>\n<h2 id=\"item-description__admin-panel-features\">Admin Panel Features:</h2>\n<ul>\n <li><strong>Admin Dashboard</strong>: Full statics with charts analyzing the site information.</li>\n <li><strong>General Settings</strong>: Update general settings of website.</li>\n <li><strong>Site settings</strong>: Update site settings like name,title,keywords.. etc ..</li>\n <li><strong>Theme System</strong>: Dynamic theme system with PHP support that allows you to change the whole layout of the website.</li>\n <li><strong>Advertisement</strong>: Display ads on your websites.</li>\n <li><strong>Manage Reports</strong>: View reported posts, mark them as safe or delete.</li>\n <li><strong>Manage Users</strong>: View, edit, verify, reset password, delete users.</li>\n <li><strong>Manage Posts</strong>: View, delete posts.</li>\n <li><strong>Add/Edit Games</strong>: Add and edit games on easy way from the admin panel.</li>\n <li><strong>Mailing List</strong>: With our mailing list system you can send your message to all registered users in just one click !</li>\n <li><strong>Announcements</strong>: Write, edit, delete, active, and inactive your announcements.</li>\n <li><strong>Google analytics</strong>: Add, edit your Google analytics code.</li>\n <li><strong>Ban user</strong>: Ben user ip on very easy way.</li>\n <li><strong>reCaptcha</strong>: Add, edit your reCaptcha key.</li>\n</ul>', 'WoWonder - The Ultimate PHP Social Network Platform', '', 'https://1.bp.blogspot.com/-_7wQ-FccRh8/YBFWBaKLQLI/AAAAAAAACss/tkbkuYJ94l87mMFngGo37mf16o2xRywpACLcBGAsYHQ/s590/13.jpg', 'publish', 'open', '2021-01-27 17:32:01', 0),
(2986, 1, '2021-01-27 17:51:49', '\"ThemePlace\" is the ultimate WordPress MarketPlace theme. It\'s got a unique design. Based on the latest technology with great features, you can build an online store or marketplace using Easy Digital Downloads. You can offer digital items such as stock images, plugins, apps, theme, audio files and more. With the help of a detailed documentation and an element page builder. \"ThemePlace\" theme for selling your digital products, services or projects. \"ThemePlace\" is not just a theme, it is a marketplace of infinite possibilities.\r\n\r\n ', 'ThemePlace - Marketplace WordPress Theme', '', 'https://1.bp.blogspot.com/-Ae9smPt8P44/YBFai-BX71I/AAAAAAAACtI/s9C1-Rkrro0ISNj3TlG0H10Cjzn80YKZACLcBGAsYHQ/s590/preview.__large_preview.jpg', 'publish', 'open', '2021-04-04 13:27:28', 0),
(2989, 1, '2021-01-27 18:01:24', 'Aabbe is the Marketplace Theme where you can buy and sell each and every single digital product available in the web. This is the complete solution anyone looking for around the market. With a CLEAN and Minimal Modern Design and Features Aabbe – Digital marketplace WordPress Theme Is ready with the support of the Easy Digital Downloads platform. Which is completely computable for building any marketplace to sell your items such as templates, arts, tutorials, music, ebooks, stock photography, stock footage, themes, plugins, code snippets, Softwares or digital services.\n\nAabbe – Digital marketplace WordPress Theme is easy to customize and navigate for anyone with the knowledge of WordPress and Elementor. You can sell your product as well as other vendors can join you as this one is multi-vendor supported with front end submission.\n\nWith a Proper Documentation and Dedicated support it will help you to run your own Business or marketplace. This is the ultimate Marketplace you are looking for.', 'Aabbe – Digital Marketplace WordPress Theme', '', 'https://1.bp.blogspot.com/-MpTNp-5y01M/YBFcz4UaYhI/AAAAAAAACtk/hR21ByONFlIuLAH5TdtsNhvupCU1QQNQQCLcBGAsYHQ/s590/Preview.__large_preview%2B%25281%2529.jpg', 'publish', 'open', '2021-04-02 04:38:37', 0),
(2992, 1, '2021-01-27 18:08:11', 'Restored Marketplace – A Robust Marketplace Theme For Digital Downloads, based on the Simple Digital Download Plugin. You can create an online store or your own online marketplace at a very low cost using this theme. Using the famous Quick Digital Downloads plugin, you can sell anything digital, including images, plugins, apps, audio files, videos, music, digital art, icons, filters, templates, themes, or photos, etc. With the aid of comprehensive documentation, it will take a few minutes to set up and start selling your digital products online.', 'Restored MarketPlace - WordPress Theme', '', 'https://1.bp.blogspot.com/-hfp3YLujElU/YBFeI5q_crI/AAAAAAAACtw/i6JXGFBgKmokRpf5d6uaNglSKLvy96xSwCLcBGAsYHQ/s590/preview.__large_preview%2B%25282%2529.jpg', 'publish', 'open', '2021-04-04 13:25:00', 0),
(2994, 1, '2021-01-27 18:15:40', '', 'SEOWP | SEO & Digital Marketing WordPress Theme', '', 'https://1.bp.blogspot.com/-LtirZCK0PBs/YBFfxHFy_dI/AAAAAAAACuM/vuiPJbwwU9A01cI5GAXmYJkW6ZvE7B7OwCLcBGAsYHQ/s590/SEOWP-ThemePreview-seowp2-noprice.__large_preview.jpg', 'publish', 'open', '2021-04-02 17:30:38', 0),
(2997, 1, '2021-01-27 18:24:33', 'Tmexco is a WordPress Digital Marketplace theme. It\'s a new, stunning, elegant Digital Marketplace style. You can change the whole section as you want. There is a personalized choice and each segment is uniquely innovative for the Digital Marketplace. It has a unique design with wonderful features for the Digital Marketplace website that wants to create their website.\r\n\r\nWe\'ve built with all the Marketplace features that require a Digital Marketplace website. Every segment is uniquely creative. It looks terrific on mobile devices and desktops. It\'s clean and easy. Modern and elegant style also features cool features such as Latest Items, Feature Products, Product Single, Product Page and Author Page, Touch, and Blog almost any kind of modern features we\'ve tried to use, as well as letting you show blog or hot news.', 'Tmexco - Digital Marketplace WooCommerce Theme', '', 'https://1.bp.blogspot.com/-qbpDwmPx6N0/YEdTKfWwB5I/AAAAAAAADBM/Ccq03mf9PawlfuqgRuL6pK4ywznT23tLACLcBGAsYHQ/s885/preview.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:36', 0),
(2999, 1, '2021-01-27 18:39:20', 'Typer is a fast & modern WordPress theme designed for publishers, bloggers and news magazine websites. Typer lets you have a Front User Profile and lets others publish articles on your site. Write blog posts with 100 percent supported by Gutenberg Builder and build awesome landing pages with Elementor.', 'Typer - Amazing Blog and Multi Author Publishing Theme', '', 'https://1.bp.blogspot.com/-u1hSL6rq0qY/YBFleYMHbYI/AAAAAAAACvU/seKzGDCcB5o_13Sd-F1EvC7AGqCE_mzdACLcBGAsYHQ/s590/typer_preview.__large_preview.jpg', 'publish', 'open', '2021-04-04 13:22:45', 0),
(3002, 1, '2021-01-27 18:46:13', ' \r\n\r\n ', 'Wikilogy - Wiki & Blog WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-e7pGAIc8a1c/YBFnNy7y5vI/AAAAAAAACvg/BGxqkkT_5IE1x1P-kwN8nBQ5VpKM_JFBACLcBGAsYHQ/s590/Preview.__large_preview%2B%25281%2529.jpg', 'publish', 'open', '2021-04-04 13:20:04', 0),
(3004, 1, '2021-01-27 18:52:40', 'Cargo is a WordPress transport, logistics & home mover theme based on shipping, distribution and storage service providers and businesses. It\'s totally sensitive, Retina Ready and Easy to customize.\r\n\r\nCargo provides adjustable quotation calculator, limitless project portfolio templates based on grid pattern, three separate tile/grid blog layouts, page transitions and distinctive typography. It also includes an easy-to-use and quick page builder. Cargo adapts to every computer, from smartphones and tablets to desktops. It comes with free updates and free assistance from our critically acclaimed team.', 'Cargo – Transport & Logistics WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-1Xrhk4EvR7E/YBFpO7Tl7ZI/AAAAAAAACv8/0DTbIHcVZ7Y1VL8Rj3KRhU5F9Yl9d3aSQCLcBGAsYHQ/s590/Cargo-theme-preview-v3.__large_preview.jpg', 'publish', 'open', '2021-04-04 13:17:51', 0),
(3006, 1, '2021-01-27 18:58:44', 'With Transcargo, you can easily build a modern website and start promoting your services. Before planning the features of the theme, we studied and analyzed loads of logistic company and shipping company websites to ensure that we covered all the necessary functions and capabilities of the transport business website.\r\n\r\n ', 'Transcargo - Transportation WordPress Theme for Logistics', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-cu2MkZeYpUo/YBFqFof8IlI/AAAAAAAACwU/o_Q7frnR7N08J7wryByQGgeso0JOKPa9ACLcBGAsYHQ/s590/preview-transcargo.__large_preview.jpg', 'publish', 'open', '2021-04-04 13:15:05', 0),
(3008, 1, '2021-01-27 19:04:06', 'Transport, Logistics & Warehouse WordPress Theme | Transport presents one of the Best Premium Transport and Logistics Theme. It penetrates the minds of your customers and ensures that their needs are met. Your stylish website will surely display all the services and products of your business with Transport. In addition, it is easy to install and use with our well documented and top-notch service team.\r\n\r\n ', 'Transport - Logistic & Warehouse WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-jpHETYsVpMA/YBFrrCdsSDI/AAAAAAAACwg/UWOklSl2HuomjU6PiXMHusp80K7VbUG7wCLcBGAsYHQ/s590/Preview-Transport.__large_preview.jpg', 'publish', 'open', '2021-04-04 13:09:38', 0),
(3011, 1, '2021-01-27 19:13:01', 'Wheelco is a WordPress theme exclusively designed for transport, logistics, delivery, transport & freight websites. It\'s fully responsive, retina ready and easy to customize.Wheelco responds elegantly to different screen sizes and has been tested to work across devices, from the largest desktop to modern smartphones.\n\n \n\n \n\n ', 'Wheelco - Cargo, Transport & Logistics WordPress Theme', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-qrtrEzsH9Og/YBFs-te3njI/AAAAAAAACw8/_kyiVE96jWU_meV6iqFEsZjvlkv_kImpgCLcBGAsYHQ/s590/01_wheelco.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:35', 0),
(3013, 1, '2021-01-27 19:19:48', 'Go Courier is a WordPress theme specifically developed for shipping, distribution and courier companies. It provides several options for the homepage and incorporates multiple features within the system to provide a specific solution to the web development needs of courier companies.\n\n ', 'GO Courier– Delivery Transport WordPress Theme', ' \n\n ', 'https://1.bp.blogspot.com/-GFZYWQqyrT4/YBFvIMy4eeI/AAAAAAAACxY/VNt1Q69qpgUm7ylKxba90p4MtwRbUS2lACLcBGAsYHQ/s590/11%2B%25281%2529.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:35', 0),
(3016, 1, '2021-01-27 21:04:26', '<h4 id=\"item-description__salient-features\">SALIENT FEATURES</h4>\r\n<ul>\r\n <li>Well Documented</li>\r\n <li>100% Fully Responsive</li>\r\n <li>Built with HTML5 and CSS3</li>\r\n <li>Smooth CSS3 animations</li>\r\n <li>Well organized, clean and valid Code</li>\r\n <li>Code built with SEO best practice in mind</li>\r\n <li>Compatible with latest WordPress version</li>\r\n <li>Cross-browser compatibility</li>\r\n <li>One click demo importer</li>\r\n <li>Professional pre-built page layouts</li>\r\n <li>50+ pre-designed section templates</li>\r\n <li>WPBakery Page Builder plugin included</li>\r\n <li>Slider Revolution plugin included</li>\r\n <li>Compatible with Contact Form 7</li>\r\n <li>Advanced Admin Panel</li>\r\n <li>500+ Google Fonts</li>\r\n <li>Full-Width and Boxed view</li>\r\n <li>Optional Sticky Header</li>\r\n <li>Footer widget ready (multi column selection)</li>\r\n <li>Dedicated post types for Project and Service section</li>\r\n <li>Multiple style for Project and Service section</li>\r\n <li>Drag-n-drop Page builder active in Project and Service section</li>\r\n <li>Fully Customizable</li>\r\n <li>Fully Translatable</li>\r\n <li>High Speed performance</li>\r\n</ul>\r\n ', 'MoversCO - Movers & Packers WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-G58X6ig6RjQ/YBFwBwo-PUI/AAAAAAAACx4/xFAk5nBsPEcuPr0LwCtjEpt9AOByIhRFgCLcBGAsYHQ/s590/01_moversco-590x300.__large_preview.jpg', 'publish', 'open', '2021-04-13 18:28:27', 0),
(3018, 1, '2021-01-27 21:10:35', 'Gomoto – Food Delivery WordPress Theme developed specifically for Food Delivery Service, Pizza Delivery, Fast Food, Bottled Water, Drinking Water Delivery, Courier Service, Pizzeria, Medical Supplies, Medical Prevention, Coronavirus Prevention and others.\r\n\r\nThis theme includes everything you need: professional homepage design, amazing animations, creative headers, 20+ unique shortcodes, galleries, blogs, testimonials, product catalog, product page, 404 page, shopping cart, order and more. This theme is compatible with the Elementor Page Builder.', 'Gomoto - Food Delivery & Medical Supplies WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-xlUM76f7vIg/YFJrMC06eCI/AAAAAAAADDM/UlweDICDTugdyFt4k1upkWhQof8d_7WZQCLcBGAsYHQ/s885/00_cons.__large_preview.jpg', 'publish', 'open', '2021-06-29 13:00:52', 0),
(3021, 1, '2021-01-27 21:17:38', 'Recipe is the most complete recipe management solution. It has all the features that are required to provide good experience for the members who send the recipes as well as for those who read them. With its sleek and exclusive style, it really stands out among other recipe pages.\n<h3 id=\"item-description__recipe-features\">Recipe Features</h3>\n<ul>\n <li>Recipe ratings</li>\n <li>Recipe ingredients with the checkboxes</li>\n <li>Recipe steps with the checkboxes and rich text editor</li>\n <li>Recipe description</li>\n <li>Recipe video</li>\n <li>Recipe featured image</li>\n <li>Recipe gallery images</li>\n <li>Recipe details meta data</li>\n <li>Recipe nutritions</li>\n <li>Recipe categories</li>\n <li>Recipe custom made icons (200 font icons)</li>\n <li>Recipe cuisines</li>\n <li>Recipe print</li>\n <li>Recipe featured</li>\n <li>Recipe likes system</li>\n <li>Recipe views system</li>\n <li>All this is managable from the user profile page</li>\n</ul>\n ', 'Recipe - WP Theme For Recipes', ' \n\n ', 'https://1.bp.blogspot.com/-T2LA-Px2b4I/YBGKyZpcQYI/AAAAAAAACyg/GxZfPGP5txcns9oZ-32Q01jlHWBTjMEKQCLcBGAsYHQ/s590/preview.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:34', 0),
(3023, 1, '2021-01-27 21:21:54', 'Ranna is a beautifully clean and sleek WordPress theme for food and recipe blogs. We have included features and pre-made elements to give you the perfect website to share your passion for delicious dishes.\r\n<h4 id=\"item-description__features\">FEATURES</h4>\r\n<ul>\r\n <li>Built Based on Bootstrap V 4.0</li>\r\n <li>Built Based on Elementor Page Builder</li>\r\n <li>2 Different Home pages</li>\r\n <li>2 Different Category pages</li>\r\n <li>2 Recipe page</li>\r\n <li>2 Recipe archive page</li>\r\n <li>2 Recipe detail page</li>\r\n <li>3 Different post detail pages</li>\r\n <li>3 Header Style 10+ Header Variations</li>\r\n <li>5 Footer variations</li>\r\n <li>25+ Custom Elementor addons with 50+ Layouts</li>\r\n <li>Lazy Load</li>\r\n <li>Category wise color</li>\r\n <li>Fully Responsive</li>\r\n <li>W3c Validated HTML5 & CSS3 Coding</li>\r\n <li>Clean & Modern Design</li>\r\n <li>All Modern Browser Compatible [IE 11+, Firefox, Chrome, Opera and Safari]</li>\r\n <li>Font Awesome (350+ Icons).</li>\r\n <li>Google Web Font.</li>\r\n <li>Well Documented.</li>\r\n <li>Easy Customizable and Flexible Elements.</li>\r\n <li>SEO Optimized</li>\r\n <li>Extensive and Quick Support.</li>\r\n <li>Free Lifetime Updates.</li>\r\n</ul>\r\n ', 'Ranna - Food & Recipe WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-6nuhXlgdv08/YBGL7FS5E7I/AAAAAAAACy8/76eu-bMr6_wORUGPc9FGxEUSOTbx5uM-QCLcBGAsYHQ/s590/01_preview.__large_preview.jpg', 'publish', 'open', '2021-04-18 16:42:45', 0),
(3026, 1, '2021-01-27 21:28:18', 'Foodhub is a professional Food Recipe Listings WordPress theme. Now the theme comes with two different listing demos: General Recipes (Main Demo) and Vegan Recipes.\n\nFoodhub theme also comes with niche functionalities such as:\n<ul>\n <li>ModelTheme Listings Manager;</li>\n <li>ModelTheme Framework;</li>\n <li>Custom WooCommerce Dashboard, with custom tabs:\n<ul>\n <li>My Dashboard</li>\n <li>My Recipes</li>\n <li>My Favourite Recipes</li>\n <li>My Reviews</li>\n</ul>\n</li>\n <li>Recipe Features:\n<ul>\n <li>Taxonomies\n<ul>\n <li>Cuisines</li>\n <li>Categories</li>\n <li>Difficulty</li>\n <li>Cooking Method</li>\n <li>Yields</li>\n <li>Cooking Time</li>\n</ul>\n</li>\n <li>Recipe Reviews</li>\n <li>Recipe Multiple Featured Images</li>\n <li>Recipe Ingredients</li>\n <li>Recipe Instructions (Directions)</li>\n <li>Media Gallery</li>\n <li>Video</li>\n <li>Description</li>\n <li>Title</li>\n <li>Author / Chef</li>\n</ul>\n</li>\n <li>Chef Profile.</li>\n <li>Custom recipe grids (grids, sliders).</li>\n <li>Multiple Demos\n<ul>\n <li>General Recipes (Main Demo)</li>\n <li>Vegan Recipes Demo</li>\n</ul>\n</li>\n <li>Modern Category with banners and products blocks and shortcodes.</li>\n <li>WooCommerce Ready</li>\n <li>Testimonials</li>\n <li>How it works page</li>\n <li>Contact & About pagea</li>\n <li>Brands we work with</li>\n <li>Custom 404 page template</li>\n <li>Redux Framework Theme-Options Panel\n<ul>\n <li>General Settings</li>\n <li>Sidebars</li>\n <li>Styling Settings</li>\n <li>Header Settings</li>\n <li>Footer Settings</li>\n <li>Contact Settings</li>\n <li>Blog Settings</li>\n <li>Shop Settings</li>\n <li>404 Page Settings</li>\n <li>Social Media Settings</li>\n <li>Demo Data Importer</li>\n</ul>\n</li>\n <li>Multiple header variants</li>\n <li>One-click importer</li>\n <li>600+ Google Fonts</li>\n <li>Font Icons instead of images</li>\n</ul>\n ', 'Foodhub - Recipes WordPress Theme', ' \n\n ', 'https://1.bp.blogspot.com/-_hoBOGqaGfU/YBGNXhbuSBI/AAAAAAAACzY/kXyisA9TeMQaQxeOsPpf-77K81DdYnnQQCLcBGAsYHQ/s590/01_Main_Banner_foodhub.__large_preview.jpg', 'publish', 'open', '2021-04-02 04:38:34', 0),
(3029, 1, '2021-01-27 21:37:00', ' \r\n\r\n ', 'Basil - WordPress Recipes Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-__BMB3wISiM/YBGPb--2OBI/AAAAAAAACzk/w2Mm_D6RDvM7FkI3AFrxYM04c5OSd3GOQCLcBGAsYHQ/s590/01_Banner.__large_preview.jpg', 'publish', 'open', '2021-04-04 11:19:11', 0),
(3032, 1, '2021-01-28 08:46:02', 'Chimp Studio\'s Job Board WordPress theme is a full WordPress Job Board theme that allows you to create a website for job listings that is useful and easy to use and also provides a Free Smartphone App. Using the JobCareer theme, you can create a complete and completely sensitive work site, a career forum for managing human resources, recruiting or posting jobs.\r\n\r\n ', 'JobCareer | Job Board Responsive WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-Um8MTNn2JBE/YBIr9X_gqTI/AAAAAAAAC0Q/I5h3la-D3DMBhokiB6yl7Cw-WfSD0siMACLcBGAsYHQ/s590/Preview-3.8.__large_preview.jpg', 'publish', 'open', '2021-04-04 11:15:53', 0),
(3037, 1, '2021-01-28 17:15:16', '<h2 id=\"item-description__user-features-demo\">User Features</h2>\n<h2><strong>Upload Videos</strong>: Upload any video from your device and share it online</h2>\n<ul>\n <li><strong>Import Videos</strong>: Import videos easily from YouTube, Dailymotion, and Vimeo.</li>\n <li><strong>Auto Import Videos</strong>: Choose few keywords, run the task, sit back and thousands of videos will be importred from YouTube and Dailymotion to your site!</li>\n <li><strong>High Performance & Capability</strong>: PlayTube can handle more than 1B vidoes easily, with a very high performance and speed.</li>\n <li><strong>WoWonder Integration</strong>: With one click, user can login to your site using WoWonder Social Network.</li>\n <li><strong>Like & Dislike</strong>: User can like or dislike videos.</li>\n <li><strong>Comments System</strong>: User can comment on videos.</li>\n <li><strong>Subscriptions, History, Watch Later Pages</strong>: See what you recently watched, exploer other channels videos by subscribing to their channel, and save video to watch them later.</li>\n <li><strong>User Channels</strong>: User can create his own channel and upload/import unlimted videos.</li>\n <li><strong>Full Advertisement System</strong>: Admin & Users can create videos, vpaid, vast, and images ads from the admin panel.</li>\n <li><strong>SiteMap Generator</strong>: If you have 10 vidoes, or 1 Billion videos, our sitemap gernator system will generate a powerful sitemap and ping it to Google/Bing.</li>\n <li><strong>SEO friendly</strong>: SEO friendly links, and HTML code that Google will love!</li>\n <li><strong>Powerful Admin panel</strong>: Manage settings, videos, design, and a lot more easily from our admin panel.</li>\n <li><strong>Powerful UI</strong>: Beautiful and modern design.</li>\n</ul>\n ', 'PlayTube - The Ultimate PHP Video CMS & Video Sharing Platform', ' \n\n ', 'https://1.bp.blogspot.com/-EKgW3hVvAw0/YBKiTxuo0kI/AAAAAAAAC0s/9mkPq6cJI1MkunCW6Wl99267i-0FVJKSwCLcBGAsYHQ/s590/Playtube%2Bsmall%2Bpicture%2B02.jpg', 'publish', 'open', '2021-01-28 17:15:16', 0),
(3039, 1, '2021-01-28 17:33:57', 'This PHP video downloader script helps you to download one-click from 30+ websites. You\'ll also get strong service and updated apps on a regular basis. And YouTube video downloader script can fetch videos from 144P 15 FPS to 4K 60 FPS and allow high-speed download by removing YouTube bandwidth speed limit.\r\n<h3 id=\"item-description__supported-sources\">Supported Sources</h3>\r\n<ul>\r\n <li>9GAG Video Downloader</li>\r\n <li>AkıllıTV Video Downloader</li>\r\n <li>Bandcamp Music Downloader</li>\r\n <li>Bitchute Video Downloader</li>\r\n <li>Blogger/Blogspot Video Downloader</li>\r\n <li>Break Video Downloader</li>\r\n <li>Buzzfeed Video Downloader</li>\r\n <li>Dailymotion Video Downloader</li>\r\n <li>Douyin Video Downloader</li>\r\n <li>ESPN Video Downloader</li>\r\n <li>Facebook Video Downloader and Audio Downloader</li>\r\n <li>Febspot Video Downloader</li>\r\n <li>Flickr Video Downloader</li>\r\n <li>Gaana Music Downloader</li>\r\n <li>IMDB Video Downloader</li>\r\n <li>Imgur Video Downloader</li>\r\n <li>Instagram Video Downloader and Photo Downloader</li>\r\n <li>Izlesene Video Downloader</li>\r\n <li>Kwai Video Downloader</li>\r\n <li>Likee Video Downloader</li>\r\n <li>Linkedin Video Downloader</li>\r\n <li>Liveleak Video Downloader</li>\r\n <li>Mashable Video Downloader</li>\r\n <li>Odnoklassniki (Ok.ru) Video Downloader</li>\r\n <li>Periscope Video Downloader</li>\r\n <li>Pinterest Video Downloader</li>\r\n <li>Reddit Video Downloader</li>\r\n <li>Rumble Video Downloader</li>\r\n <li>Soundcloud Music (MP3 and OGG) Downloader</li>\r\n <li>Streamable Video Downloader</li>\r\n <li>TED Video Downloader and Audio Downloader</li>\r\n <li>Tiktok Video Downloader (Watermark free) and Music Downloader</li>\r\n <li>Tumblr Video Downloader</li>\r\n <li>Twitch Clip Video Downloader</li>\r\n <li>Twitter Video Downloader</li>\r\n <li>Vimeo Video Downloader</li>\r\n <li>VK Video Downloader</li>\r\n <li>YouTube Video Downloader and Audio Downloader</li>\r\n <li>More will be added</li>\r\n</ul>\r\n ', 'All in One Video Downloader Script', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-IR-N_MRoPyA/YBKnqIqDuvI/AAAAAAAAC1I/5qLanpbhJSMbjKBZhNU2pztS7RBma31rQCLcBGAsYHQ/s590/inline_4.jpg', 'publish', 'open', '2021-06-25 12:35:04', 0),
(3081, 1, '2021-02-06 17:31:00', 'XeroChat, a multichannel marketing application, is the ultimate white-label SaaS software with an all-in-one solution for your business to grow. It offers all-powerful tools like <strong>Facebook Messenger BOT</strong>, Facebook Comment Auto Reply & Private Reply,<strong> Facebook Auto Comment Tools</strong>, Instagram Posting,<strong> Instagram Auto Comment Reply</strong>, Complete E-commerce Solutions inside Messenger & Outside Messenger, <strong>Restaurants Food Ordering inside Messenger</strong> & outside Messenger,Contactless QR Menu/Catalog Generate for Food order or Ecommerce Purchase, <strong>Social Media Posting, SMS Marketing</strong>, Email Marketing & many other features. Therefore, XeroChat is the best choice for your daily marketing solutions.', 'XeroChat - Best Multichannel Marketing Application (Extended license)', ' \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-PCBbCWgieyI/YF2EuZx67XI/AAAAAAAADFA/__AQboG5ttY41enG443BPuJByk5Ugkj-QCLcBGAsYHQ/s1000/Canon_XeroChat_590_300_6.jpg', 'publish', 'open', '2021-03-27 10:21:47', 0),
(3084, 1, '2021-02-06 22:19:30', 'OXOO is a beautiful android live TV & movie portal app that includes a PHP admin dashboard script. You will be able to quickly maintain all of your changes by using this dashboard. It\'s going to give you the best viewing experience as the author of an IPTV or Movie application/site user. It\'s a smart application with quick configuration of tools.\n\nYou and your client can watch movies and live TV on Android devices without any hassle.OXOO is not only an application, but also a super UI/UX dining app. You can use PHP Dashboard to monitor your TV channel, and that\'s another special & smart option for the user, since it\'s not just Dashboard OXOO android source code included.\n\nTo observe the ISP required, we made use of OXOO as a multipurpose entertainment app. This application has been designed with advanced modules and many more powerful features to handle a full entertainment app. It also supports Admob Advertising, Onesignal Notification, which helps to make money and connect with a new content client.\n\n \n\n \n\n ', 'OXOO - Android Live TV & Movie Portal App with Subscription System', ' \n\n \n\n \n\n ', 'https://1.bp.blogspot.com/-wHkMzb_hqhc/YB7ISuLJteI/AAAAAAAAC2Y/Kkxzfrvm9V8QwczPmgQfynAZbtROQ5lUwCLcBGAsYHQ/s590/inline-image-120-croped.png', 'publish', 'open', '2021-02-06 22:19:30', 0),
(3092, 1, '2021-02-07 08:22:14', '<img src=\"https://1.bp.blogspot.com/-GAoetKDc-AY/YGqKoooPZAI/AAAAAAAADHM/NoMUl1LL0EgUtW7MeOr4mxDUH-QQzMt_wCLcBGAsYHQ/s2048/IMG_20210404_235810_auto_x2%2B%25281%2529.png\" />\r\n\r\nFlix App Movies-TV Series-Live TV Channels-TV Cast device that runs on your own Android platform. Movies, TV shows, live TV channels, slides, categories, users, alerts, and others can be managed by powerful features, and beautiful interface, and Responsive Admin Panel.\r\n\r\nThis application was built on the client-side by the Android studio and then on the admin side by Php/MySQL. Run under the world\'s most common operating system, the Android platform. You can save money and time when you create an application for your own Movies / TV Shows / TV Channels application by using this application.', 'Flix App Movies - TV Series - Live TV Channels - TV Cast', ' \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-MbncF12U_aY/YB9U_l8AW5I/AAAAAAAAC20/Uo27Tmf8ihgheEpJOr40oUvBa-RIM2UIACLcBGAsYHQ/s590/covesr.jpg', 'publish', 'open', '2021-04-05 09:32:58', 0),
(3120, 1, '2020-01-08 11:22:33', 'Autozone with an intuitive interface is a new, convenient and well-structured wordpress autodealer theme. The theme is suitable for rental car services and wordpress websites for car rental. It will boost your website quickly and attract new clients. There are plenty of main features that make Autozone more than just a wordpress theme for the best car rental.\n\nYou can easily and rapidly install completed pages for your Auto Business on your website using the one-click demo installation and customize them to your needs or goals.\n\nBe imaginative. Using our WordPress Auto Rental Theme does not make your auto business look the same as others. We\'ve been looking after your uniqueness. Make improvements and build your own unique style of product.\n\n ', 'Autozone - Auto Dealer & Car Rental Theme', ' \n\n \n\n ', 'https://1.bp.blogspot.com/-GuYgPYKwRwk/YCDPVxh5AUI/AAAAAAAAC3U/9l_pXeusrYoKSXP2g7HdHpdsO2NrA2FNQCLcBGAsYHQ/s590/00_preview.jpg', 'publish', 'open', '2021-04-02 04:39:16', 0),
(3168, 1, '2021-02-09 18:50:56', 'MagXP is the ultimate WordPress Magazine theme. With 4 homepage layouts and an option panel that lets you control the design, you can quickly change the design from bright and clean to dark and minimal. MagXP combines flexibility, form and functionality perfectly.\r\n\r\n \r\n\r\n ', 'Magxp – Ultimate Magazine WordPress Theme Multiple Layouts', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-aki9YmJZ6lQ/YCItBVmJIAI/AAAAAAAAC4U/G0k5QWcZh3UJ9eY-JcJ3aMPmyAKgmcMkACLcBGAsYHQ/s590/MagXP-590x295.png', 'publish', 'open', '2021-04-04 12:57:33', 0),
(3709, 1, '2021-02-12 16:27:21', ' \n\n ', 'Customization Addon', ' \n\n ', '', 'publish', 'open', '2021-02-12 16:27:21', 0),
(3789, 1, '2021-02-13 09:01:11', '<img src=\"https://1.bp.blogspot.com/-GAoetKDc-AY/YGqKoooPZAI/AAAAAAAADHM/NoMUl1LL0EgUtW7MeOr4mxDUH-QQzMt_wCLcBGAsYHQ/s2048/IMG_20210404_235810_auto_x2%2B%25281%2529.png\" />Hookup4u is a completely interactive cross-platform online dating application that enables users to anonymously skip or disapprove of other profiles based on their images, a short bio, and shared interests. When two users have \"matched\" messages can be exchanged.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><strong>Hookup4u – A Complete Flutter Based Dating App with following main features:</strong></td>\r\n</tr>\r\n<tr>\r\n<td>- Authentication using Facebook and Phone Number(OTP based)</td>\r\n</tr>\r\n<tr>\r\n<td>- Create profile with easy inputs</td>\r\n</tr>\r\n<tr>\r\n<td>- Add pics in gallery</td>\r\n</tr>\r\n<tr>\r\n<td>- Settings for profile visibility</td>\r\n</tr>\r\n<tr>\r\n<td>- Edit profile</td>\r\n</tr>\r\n<tr>\r\n<td>- Tinder-like Cards feature for Like/Unlike other profiles pics based on settings</td>\r\n</tr>\r\n<tr>\r\n<td>- Show matches</td>\r\n</tr>\r\n<tr>\r\n<td>- Subscription feature (In-App Purchase for iOS and Android)</td>\r\n</tr>\r\n<tr>\r\n<td>- One to One Text Chat</td>\r\n</tr>\r\n<tr>\r\n<td>- One to One Audio & Video Chat (Agora based)</td>\r\n</tr>\r\n<tr>\r\n<td>- Notifications</td>\r\n</tr>\r\n<tr>\r\n<td><strong>– Admin </strong>: Admin in Flutter with features: Users listing, Search Users, Create Packages, Settings for free & paid subscription, User detail view, Block users, Change admin username/password</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n ', 'Hookup4u – A Complete Flutter Based Dating App with Admin', ' \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-izNvYeExFfo/YCdGkvqX17I/AAAAAAAAC6M/7-fiFsLtbRcFDaI7ca8XnVMS3Xh11s-8gCLcBGAsYHQ/s590/Preview-img.jpg', 'publish', 'open', '2021-09-11 14:43:46', 0),
(3807, 1, '2021-02-18 18:56:49', '<strong>1. Select APK What You Want</strong>\r\n\r\nThere are millions of applications available in your WordPress dashboard! You simply choose the APK you want to post.\r\n\r\n<strong>2. Start Publish The Content</strong>\r\n\r\nPlayposters will automatically retrieve data from trusted sources for your APK article.\r\n\r\n<strong>3. Articles Are Available</strong>\r\n\r\nYou can immediately check the application article that you choose and you can start publishing your site.', 'PlayPoster WordPress theme- Apk Poster wordpress theme', ' \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-KhUVrf5-Ef8/YC5mYJBEuxI/AAAAAAAAC6s/pOWl_-nF-scFUb_WH0_QvfqzTr47TM9mACLcBGAsYHQ/s854/theme-ss-4.jpg', 'publish', 'open', '2021-09-11 19:25:51', 2);
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(3812, 1, '2021-02-18 19:19:59', '2.0.524-04-2021If you plan to create an application site, then Appyn is for you as it is developed so that you can upload information about Android applications. It has several options for you to add the data of the app, video and images.\r\n\r\n \r\n<h3>Speed. <strong>Pagespeed</strong></h3>\r\nWe are concerned about the speed of the Appyn theme, since that greatly influences the Google results and of course the user. We have optimized the theme for the best possible speed. Results of Pagespped for Mobile: <a href=\"https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fdemo.themespixel.net%2Fappyn%2F\" target=\"_blank\" rel=\"noopener noreferrer\">(See test)</a><img class=\"size-full wp-image-1343 aligncenter\" src=\"https://themespixel.net/wp-content/uploads/2019/01/blank.png\" srcset=\"https://themespixel.net/wp-content/uploads/2019/01/pagespped-movil.png\" alt=\"\" width=\"795\" height=\"194\" data-srcset=\"https://themespixel.net/wp-content/uploads/2019/01/pagespped-movil.png\" />Results of PageSpeed for Computers: <a href=\"https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fdemo.themespixel.net%2Fappyn%2F\" target=\"_blank\" rel=\"noopener noreferrer\">(See test)</a><img class=\"size-full wp-image-1345 aligncenter\" src=\"https://themespixel.net/wp-content/uploads/2019/01/blank.png\" srcset=\"https://themespixel.net/wp-content/uploads/2019/01/pagespped-escritoriol.png\" alt=\"\" width=\"809\" height=\"184\" data-srcset=\"https://themespixel.net/wp-content/uploads/2019/01/pagespped-escritoriol.png\" />\r\n<h3><strong>Google</strong> results</h3>\r\nWe know that - beyond being in the first position - the way a result is displayed in Google also influences the user to click on it, that is why we use the stars in each post app so that they appear in Google results as the following picture:\r\n\r\n<img class=\"size-full wp-image-1344 aligncenter\" src=\"https://themespixel.net/wp-content/uploads/2019/01/blank.png\" srcset=\"https://themespixel.net/wp-content/uploads/2019/01/google-resultados-estrellas.png\" alt=\"\" width=\"607\" height=\"128\" data-srcset=\"https://themespixel.net/wp-content/uploads/2019/01/google-resultados-estrellas.png\" />Not feeling like clicking on the result? 😉\r\n<h3><img class=\"wp-image-1204 alignright\" src=\"https://themespixel.net/wp-content/uploads/2019/01/blank.png\" srcset=\"https://themespixel.net/wp-content/uploads/2019/01/appyn-responsive.png\" alt=\"\" width=\"205\" height=\"328\" data-srcset=\"https://themespixel.net/wp-content/uploads/2019/01/appyn-responsive.png\" />Optimized and Responsive\r\n<strong>Adapted to any device</strong></h3>\r\nOptimized for seamless viewing on any device from desktop computer to mobile phone. Support for Retina images on Hi-DPI displays, we\'ve designed every detail to ensure your site always looks beautiful in any environment. RESPONSIVE - Instantly adapts to any screen size. OPTIMIZED - Fast charging, first mobile design. RETINA READY - Sharp and clear images on Hi-DPI devices.\r\n<h3><img class=\"wp-image-1145 alignleft\" src=\"https://themespixel.net/wp-content/uploads/2019/01/blank.png\" srcset=\"https://themespixel.net/wp-content/uploads/2019/01/widgets.png\" alt=\"\" width=\"259\" height=\"328\" data-srcset=\"https://themespixel.net/wp-content/uploads/2019/01/widgets.png\" />Nine <strong>totally different</strong> Widgets</h3>\r\nThe Appyn theme comes with its own widgets that you can place in the sidebar as well as in the footer. Among these widgets we have the classics of Facebook, Twitter and to publish a YouTube video. The others are for the most viewed, highest rated, and latest posts; You can filter all the latter by categories.\r\n<h3><img class=\"size-thumbnail wp-image-1016 alignright\" src=\"https://themespixel.net/wp-content/uploads/2019/01/blank.png\" srcset=\"https://themespixel.net/wp-content/uploads/2019/01/translate-150x150.png\" alt=\"\" width=\"150\" height=\"150\" data-srcset=\"https://themespixel.net/wp-content/uploads/2019/01/translate-150x150.png\" />Spanish and English <strong>AND WPML support</strong></h3>\r\nThe theme is ready to use in Spanish and English depending on the language that is configured on your website. In addition, it brings functionalities to be used with the <a href=\"https://wpml.org/\" target=\"_blank\" rel=\"noopener noreferrer\">WPML</a> plugin .\r\n<h3>Instant search + Ratings + Social buttons</h3>\r\n<strong>Search engine:</strong> By having dozens of posts and searching for a specific application we use the search engine, in this case we have an <strong>instant search engine</strong> , which just by typing a few letters will start to search and give the result <strong>without plugins</strong> .\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ', 'Appyn WordPress Theme - Wordpress theme to post apk', ' \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-QobxU7XWaTY/YC5vHmHg2XI/AAAAAAAAC64/Ed7qTqqlIpgeFLSdXEQ-U2BoudaJ4EuKACLcBGAsYHQ/s821/screen-appyn.png', 'publish', 'open', '2021-04-25 07:54:54', 0),
(3815, 1, '2021-02-19 10:03:46', 'Kassadin is an eCommerce WordPress theme created for a multipurpose online store, particularly for a multi-vendor or marketplace website. This demo builds with the best plugins: WooCommerce, Elementor-#1 WordPress Page Builder, Dokan-#1 Multi-Seller plugin, and is also fully responsive!\r\n<div id=\"column-wrap-id-1586426559708\" class=\"sppb-col-md-4 sppb-col-sm-6 sppb-col-xs-12\">\r\n<div id=\"column-id-1586426559708\" class=\"sppb-column\">\r\n<div class=\"sppb-column-addons\">\r\n<div id=\"sppb-addon-wrapper-1586426559714\" class=\"sppb-addon-wrapper\">\r\n<div id=\"sppb-addon-1586426559714\" class=\"clearfix \">\r\n<div class=\"sppb-addon sppb-addon-feature sppb-text-left \">\r\n<div class=\"sppb-addon-content sppb-text-left\">\r\n<div class=\"sppb-media\">\r\n<div class=\"sppb-media-body\">\r\n<div class=\"sppb-media-content\">\r\n<ul>\r\n <li>Beautiful design & Fully responsive</li>\r\n <li>Translation & support RTL language</li>\r\n <li>Customizable all sections</li>\r\n <li>100+ Payment Gateways</li>\r\n <li>Megamenu & off canvas filter</li>\r\n <li>Built-in styles and color palettes</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n \r\n\r\n ', 'Kassadin - WooCommerce Multi Vendor Marketplace Theme', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-1zDnbVzeR54/YC893xRtYEI/AAAAAAAAC7E/J2GNlCvhpDo43JdG-ApwTUaMgC1B74C7QCLcBGAsYHQ/s785/kassadin-cover.png', 'publish', 'open', '2021-04-03 16:11:20', 0),
(4157, 1, '2020-11-06 03:06:34', 'ktuk is a smartphone device running on an Android network that can be used with both your own social media app and your own video application. This software is the ultimate because it has all the functionality like social media from profiling & posting images to, like, tweeting, commenting, and following choices.\n\nIt may also be used for special activities and tournaments. Where you can announce several videos to be the winner. And those winning videos will have a life-time winner badge on them, and those videos will be seen on the winning profile tab. Users can also share their profile using the Share Profile button on their profile. Users may also attach their Instagram profile to the YouTube channel.', 'The Indiktok - Tiktok Clone', '', 'https://1.bp.blogspot.com/-kegi2tO-XlA/YDhlkmjaJCI/AAAAAAAAC7k/Soc701RAEncxMsmnFB2gVOV78s60HabQQCLcBGAsYHQ/s590/banner%2B%25281%2529%2B%25281%2529.jpg', 'publish', 'open', '2020-11-06 03:06:34', 0),
(4159, 1, '2020-11-01 15:35:34', '<p style=\"text-align: center;\"><strong>Purchase Proof:</strong></p>\r\n<img class=\"aligncenter\" src=\"https://1.bp.blogspot.com/-7fPju7F0p-c/X6ouTlR2JLI/AAAAAAAABFM/H6cHU4G32Rgc8au6OJzu-Hz6N_r4aY8rQCLcBGAsYHQ/s2340/PicsArt_11-10-11.36.02.jpg\" alt=\"\" width=\"644\" height=\"262\" />\r\n\r\nBimber WordPress Theme is a design for viral magazines that helps you to launch a viral website that is completely functioning in no longer than 24 hours. It comes with strong buttons for sharing; famous hot, trending listings and multiple ad positions. This in a kit that’s lightweight and easy to use. You just have to launch today and go viral every day!\r\n\r\nBimber’s WordPress theme has several demos for shared viral content such as charts, polling, quizzes, news breaks, memes, gifs, gags, social bookmarks, video, open lists, freebies, celebrities news & gossip. Inspired by popular websites such as BuzzFeed, 9GAG, Reddit, Hacker News, Bored Panda, and their clones on YouTube.\r\n<ul>\r\n <li>100% responsive design</li>\r\n <li>Retina ready</li>\r\n <li>Microdata, rich snippets support</li>\r\n <li>Translation ready</li>\r\n <li>Cross-browser compatibility</li>\r\n <li>SEO optimized</li>\r\n <li>Compatible with SEO plugins</li>\r\n <li>Optimized for Google PageSpeed</li>\r\n <li>Full RTL support (right-to-left languages like Arabic or Hebrew)</li>\r\n <li>Support for multi page articles</li>\r\n <li>Compatible with caching plugins (WP Super Cache and W3 Total Cache)</li>\r\n <li>Custom Facebook Widget</li>\r\n <li>and so much more… Click Live Demo to read complete theme features</li>\r\n</ul>\r\n<strong>Proof of purchase</strong>\r\n<figure class=\"wp-block-image is-resized\"></figure>\r\n \r\n\r\n ', 'Bimber– Viral Magazine WordPress Theme', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-l01kfST23Xs/X56TV29zqHI/AAAAAAAAAo4/s1QQfR80JNoN-v7mO7NhMM5hgP58tveJwCLcBGAsYHQ/s590/Bimber-1.png', 'publish', 'open', '2021-04-20 21:09:36', 0),
(4488, 1, '2020-02-26 06:19:34', '', 'Premium Support (1 Year)', '', '', 'publish', 'open', '2021-07-25 16:42:52', 0),
(4572, 1, '2021-02-26 15:54:32', '<del>Access to New Releases</del>', '', '', '', 'draft', 'open', '2021-02-26 15:54:32', 0),
(4663, 1, '2021-02-27 02:10:25', 'Flutter is an open-source web device development SDK developed by Google. Used to create apps for Android and iOS, as well as being the main way of developing applications for Google Fuchsia, Flutter widgets integrate all crucial platform distinctions such as scrolling, searching, icons and fonts to provide maximum native performance to both iOS and Android.\r\n\r\nTikStar is a TikTok Clone & Short Video Straming Mobile app template. TikStar developed using Flutter. That means that UI is compatible for both Android and iOS. In this app Animation added, clean code, well formated, easy to understand and much more. I don’t have word for describe. So, please install our android demo app and check all features by your self.\r\n\r\n ', 'TikTok Clone App Template in Flutter | Multi Language | TikStar', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-KGz4zq1qetU/YEHBKMZrLZI/AAAAAAAAC-0/_vHpKWEemS0V1F7DgYzY74xg5XRoZXWPACLcBGAsYHQ/s1180/screenshot.jpg', 'publish', 'open', '2021-03-05 05:28:00', 0),
(4674, 1, '2021-02-27 02:36:39', 'Flutter is an open-source web device development SDK developed by Google. It is used to create apps for Android and iOS, as well as being the main tool for developing applications for Google Fuchsia. Flutter widgets integrate all important platform variations such as scrolling, searching, icons and fonts to provide maximum native performance to both iOS and Android.\r\n\r\n ', 'Flutter - TikTok Clone | Triller Clone & Short Video Streaming Mobile App for Android & iOS', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-rMrIG7ioYi4/YEG-siEvxXI/AAAAAAAAC-s/p1fv6wJqOTorAHGyie4xe9vOqihToZt4ACLcBGAsYHQ/s1180/screenshot.jpg', 'publish', 'open', '2021-04-28 11:28:20', 0),
(4676, 1, '2021-02-27 02:45:44', '<h2><img src=\"https://1.bp.blogspot.com/-GAoetKDc-AY/YGqKoooPZAI/AAAAAAAADHM/NoMUl1LL0EgUtW7MeOr4mxDUH-QQzMt_wCLcBGAsYHQ/s2048/IMG_20210404_235810_auto_x2%2B%25281%2529.png\" /></h2>\r\n<h2 id=\"item-description__product-features\"><strong>Product Features</strong></h2>\r\n<h4 id=\"item-description__multiple-restaurants-directory\">MULTIPLE RESTAURANTS DIRECTORY</h4>\r\nThe product includes support for multiple restaurants where the end-user can choose from a directory of restaurants and order food from them. Each restaurant has a different menu of food items to order from.\r\n<h4 id=\"item-description__geolocation-amp-google-maps-support\">GEOLOCATION & GOOGLE MAPS SUPPORT</h4>\r\nAll restaurants can be viewed on a Google Maps so the end-users can browse restaurants on a map and get directions to navigate to them. Based on the customer’s location, they will see all the nearby restaurants delivering to their location and all the food items that are available for ordering.\r\n<h4 id=\"item-description__light-or-dark-theme-support\">LIGHT OR DARK THEME SUPPORT</h4>\r\nYou can choose from a light or dark theme for your end-user application. It is really easy to switch the theme.\r\n<h4 id=\"item-description__easy-to-brand-amp-customize\">EASY TO BRAND & CUSTOMIZE</h4>\r\nIt is extremely easy and convenient to rebrand the app and customize the theme of the app as per your needs. You can launch an app with your own branding. You can easily change the app color theme, logos and the icons with minimal effort.\r\n<h4 id=\"item-description__payments-gateway-integrations\">PAYMENTS GATEWAY INTEGRATIONS</h4>\r\nThe app supports integrations with all major payment gateways such as Stripe, Razorpay, PayPal. The app also supports Cash On Delivery (COD) Payments upon order pickups.\r\n\r\nPush Notifications FCM (Firebase Cloud Messaging) App Push Notifications have been integrated in different areas of the app.\r\n<ul>\r\n <li>The customer is notified via push notification upon any change in order status by the restaurant owner or manager</li>\r\n <li>The delivery boy gets a notification when the restaurant manager assigns an order to him.</li>\r\n <li>Restaurant owner/manager gets a desktop/mobile notification when the customer places an order with the restaurant.</li>\r\n</ul>\r\n<h4 id=\"item-description__configure-email-servers\">CONFIGURE EMAIL SERVERS</h4>\r\nYou can connect the product suite with an email server – SMTP, Mailgun or Sparkpost and accordingly send emails about order and delivery notifications.\r\n<h4 id=\"item-description__multi-languages-support-including-ltr-amp-rtl\">MULTI-LANGUAGES SUPPORT (INCLUDING LTR & RTL)</h4>\r\nThe app and the admin panel supports multiple languages including RTL (Right To Left) languages. Now you can build your food delivery app in Arabic, Hebrew, Farsi, Urdu or any other language that is written from right to left.\r\n<h4 id=\"item-description__multi-currency-support\">MULTI-CURRENCY SUPPORT</h4>\r\nThe product supports multiple currencies. You can create your own currency and then the entire product suite will be changed as per the currency selected.\r\n<h4 id=\"item-description__discounts-amp-coupons\">DISCOUNTS & COUPONS</h4>\r\nThe restaurant manager/owner can add coupon codes, run promotional offers on their food items. Two types of discount coupons are supported- fixed and percent. An expiry date can also be added to the coupon codes.\r\n<h4 id=\"item-description__easy-login-amp-authentication\">EASY LOGIN & AUTHENTICATION</h4>\r\nThere are easy login and authentication options included in the product.\r\n<ul>\r\n <li><strong>Customer Login</strong>: Customers can create an account using a mobile app or using a web admin panel. All customers can upgrade to the restaurant owner role by just requesting on the admin panel (Admin needs to verify the request).</li>\r\n <li><strong>Manager Login</strong>: Manager can sign in to their account on the admin panel or mobile app (Mobile app is not included in this item).</li>\r\n <li><strong>Admin Login</strong>: Admin can login to the admin panel</li>\r\n <li><strong>Driver/Delivery Boy Login</strong>: Driver can create an account using mobile app and login on the admin panel or mobile app (not included in this item).</li>\r\n</ul>\r\nAll these roles can use social authentication (available only on admin panel) or email and password, they can reset their password by providing the email address to get the reset link\r\n<h4 id=\"item-description__intuitive-amp-user-friendly-animations\">INTUITIVE & USER FRIENDLY ANIMATIONS</h4>\r\nThe app has intuitive and user friendly animations built-in within it. These animations intend to provide a smooth app usage experience to the end clients. The animations include – Hero Animations, Parallax Animations, Sliding & Swiping animations.\r\n<h4 id=\"item-description__help-amp-support\">HELP & SUPPORT</h4>\r\nThe admin and the manager can add frequently asked questions and their answers to help customers to use the app correctly. FAQs can be added as FAQ Category and then FAQs.\r\n<h4 id=\"item-description__favorites-foods\">FAVORITES FOODS</h4>\r\nEach end-user can add any food to his wishlist to fast access to this meal in the future. This is a useful feature to allow customers to favorite their frequently ordered food items and order them without searching.\r\n<h4 id=\"item-description__tracking-orders\">TRACKING ORDERS</h4>\r\nAfter the customer places an order, they can track the status of the order on a timeline, also he can cancel the order if the order is not prepared.\r\n<h4 id=\"item-description__reporting-dashboards\">REPORTING DASHBOARDS</h4>\r\nRestaurant Managers/Admins can view a reporting dashboard with a summary of orders, earnings, restaurants and more.\r\n<h4 id=\"item-description__custom-fields\">CUSTOM FIELDS</h4>\r\nAll entities such as users, foods, restaurants, categories, etc. in the application can be easily extended by adding custom fields to the entity. For example, a second mobile number can be added to the user entity/table.\r\n<h4 id=\"item-description__food-review-amp-rating\">FOOD REVIEW & RATING</h4>\r\nCustomers can write a review about the food and rate them. Admins/restaurant managers can view the customer reviews & ratings, edit them or delete them.\r\n<h4 id=\"item-description__export-print-feature\">EXPORT/PRINT FEATURE</h4>\r\nExport and Print Features are available on all sections related to Food, Customer List, Order List, Restaurant List, Cuisines, FAQs, etc.\r\n<h4 id=\"item-description__media-amp-file-manager\">MEDIA & FILE MANAGER</h4>\r\nThe admin and restaurant manager can easily manage their files and images uploaded on the admin panel. Media files can be uploaded in different categories such as Avatar, App Logo, Image & more. You can upload single or multiple media files using our drag and drop upload feature.\r\n<h4 id=\"item-description__mobile-app-configuration\">MOBILE APP CONFIGURATION</h4>\r\nAdmin can easily configure the theme, language, default distance unit, Google Maps Key from the admin panel. Under themes, you can configure the theme for both dark and light themes.\r\n<h4 id=\"item-description__driver-management\">DRIVER MANAGEMENT</h4>\r\nDriver Management Module allows managing all drivers in a single view. You can track the earnings, delivery fee %, number of orders for each driver. The profile of the driver can also be managed from the admin panel.\r\n\r\n ', 'Food Delivery Flutter + PHP Laravel Admin Panel', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-2aPuQGklNew/YEG9zfrrUVI/AAAAAAAAC-k/RRLBJZ0QBBMD3wGiyDH72iU5I-PEspC0gCLcBGAsYHQ/s1180/screenshot.jpg', 'publish', 'open', '2021-04-05 09:39:05', 0),
(4678, 1, '2021-02-27 02:55:35', '', 'Quiz Online - Android App Source code', '', 'https://1.bp.blogspot.com/-YXB6JRCoNLE/YD8TBG0nKsI/AAAAAAAAC8s/zqUF0nn00BERUc3kIyUlVV6M-DZSufSIACLcBGAsYHQ/s1180/promo.jpg', 'publish', 'open', '2021-03-03 04:40:33', 0),
(4683, 1, '2020-07-27 08:44:58', '<strong>Bluerack</strong> a modern,clean,unique,professional and fully responsive Web Hosting Template.It looks perfect on all major browsers, tablets and smartphones.You can add unlimited layouts or edit whatever you want. It’s all up to you.It is fully customized and compatible with the latest WHMCS version, which means that our WHMCS Template is 100% the same with the HTML version, you can also import all html layouts, you can import pricing tables or anything that you like from HTML version.\r\n\r\nBluerack is fully responsive and 100% compatible to all large, medium, small or extra small devices. You are free to add or edit everything, it won’t break anything.\r\n<h3 id=\"item-description__item-features\">Item Features:</h3>\r\n<ul>\r\n <li>Fully customized WHMCS Template included</li>\r\n <li>Custom WHMCS Pricing tables</li>\r\n <li>Illustration images included – Free to use on your project</li>\r\n <li>3 different Homepages</li>\r\n <li>3 Different pricing tables</li>\r\n <li>Unique Pages and layouts</li>\r\n <li>Ultra Modern and Professional Design</li>\r\n <li>Very easy to customize</li>\r\n <li>Fully Responsive</li>\r\n <li>Professional Megamenu</li>\r\n <li>Unlimited layouts</li>\r\n <li>Unlimited free support – 5 star support review</li>\r\n <li>You will not wait more than 10 minutes for the answer (EU Time)</li>\r\n</ul>\r\n<h4 id=\"item-description__sources-and-licenses\">SOURCES AND LICENSES</h4>\r\n<ul>\r\n <li>Images: Unsplash and Pexels</li>\r\n <li>Icons: Fontawesome Icons and Flaticon</li>\r\n <li>Bootstrap</li>\r\n <li>jQuery</li>\r\n <li>AOS Animation library</li>\r\n <li>Bootsnav</li>\r\n <li>Email validator</li>\r\n <li>Animate.css</li>\r\n</ul>', 'Bluerack - Modern and Professional Hosting Template with WHMCS', '', 'https://1.bp.blogspot.com/-C5Qze_UKrsU/YDoG2gpfcFI/AAAAAAAAC8M/4pYtlU636VoUDG_lNDO1E7xZBeDzft5aQCLcBGAsYHQ/s590/theme_preview.__large_preview.jpeg', 'publish', 'open', '2021-04-02 04:39:15', 0),
(4854, 1, '2021-03-02 15:50:52', 'Bluerack a modern,clean,unique,professional and fully responsive Web Hosting Theme.It looks perfect on all major browsers, tablets and smartphones.You can add unlimited layouts or edit whatever you want. It’s all up to you.It is fully customized and compatible with the latest WHMCS version, which means that our WHMCS Template is 100% the same with the HTML version, you can also import all html layouts, you can import pricing tables or anything that you like from HTML version. Bluerack is fully responsive and 100% compatible to all large, medium, small or extra small devices. You are free to add or edit everything, it won’t break anything.\r\n\r\nEvery business is different, that’s why we have done a deep research to build a best WordPress Theme for Web hosting industries.\r\n\r\nBluerack – Hosting Business WordPress Theme comes with all necessary features for your online presence like portfolio,blog, testimonial and personal profile page etc. Bluerack will be the best choice for individuals, startup Industries and corporates.', 'Bluerack - Modern Hosting WordPress Theme with WHMCS', '', 'https://1.bp.blogspot.com/-7jYTvnvwqYI/YD5eSiqo5OI/AAAAAAAAC8g/wIdDMX9qgYIoXVrQhQUThCJmLXMgQX1AgCLcBGAsYHQ/s1180/bluerank-preview.__large_preview.jpg', 'publish', 'open', '2021-04-17 06:21:20', 0),
(4861, 1, '2020-01-03 08:36:05', 'In the form of a WordPress Plugin, wpDataTables is a versatile sensitive Tables, Spreadsheets, and Charts Data Manager.\r\n\r\nPlease contact us if you have any questions about the high price or if your support is about to expire so that we can provide you with comprehensive answers and details, as well as suggest currently available alternatives and special offers.\r\n<h3 id=\"item-description__manual-upgrade-procedure-when-a-new-version-is-released\">MANUAL UPGRADE PROCEDURE (when a new version is released)</h3>\r\n<ol>\r\n <li>Go to your FTP and open WordPress plugins folder.</li>\r\n <li>Delete the old wpDataTables version folder.</li>\r\n <li>Upload the new version of wpDataTables.</li>\r\n <li>Go to WP-admin panel, open Plugins section.</li>\r\n <li>Deactivate wpDataTables, and then activate it again.</li>\r\n</ol>', 'wpDataTables - Tables and Charts Manager for WordPress', '', 'https://1.bp.blogspot.com/-3Vwb08VAGqA/YD9JYk5ID8I/AAAAAAAAC80/qWn_Fkm6BSsQ-0VgC7QXcB_18MWE4IE2QCLcBGAsYHQ/s0/Main%2BBanner%2Bfor%2BwpDataTables%2Bplugin_feb.jpg.jpg', 'publish', 'open', '2021-04-02 04:42:35', 0),
(4864, 1, '2021-03-03 11:49:00', 'Astra is a beautiful WordPress theme that is quick, completely customizable, and suitable for a blog, personal portfolio, business website, and WooCommerce storefront. It is extremely light (less than 50KB on the frontend) and extremely fast. Astra is designed with SEO in mind, with Schema.org code embedded and Native AMP support, ensuring that search engines love your site. It has exclusive features and models.\r\n\r\nIt has unique features and templates that make it compatible with all page builders, such as Elementor, Beaver Creator, Visual Composer, SiteOrigin, and Divi. Other features include: # WooCommerce Ready # Sensitive # RTL & Translation Ready # Extendable with premium addons # Regularly updated # Built, Created, Maintained, and Supported by Brainstorm Force Are you looking for the right foundation theme?\r\n\r\n ', 'Astra Pro addon : Astra Pro WordPress theme', '', 'https://1.bp.blogspot.com/-77xL6WV6dO0/YD92P-4VE8I/AAAAAAAAC88/GriIhL5Dg989I_NhWCjYa7OqXiS2o2KJQCLcBGAsYHQ/s1200/astra-pro.jpg', 'publish', 'open', '2021-04-25 18:47:55', 0),
(4866, 1, '2021-03-03 12:35:00', '<div class=\"theme-description entry-summary\">\r\n\r\nGeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the new block editor (Gutenberg), which gives you more control over creating your content.\r\n\r\nIf you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS and is translated into over 25 languages by our amazing community of users. A few of our many features include microdata integration, 9 widget areas, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover) and navigation color presets. Learn more and check out our powerful premium version at https://generatepress.com\r\n\r\n</div>\r\n<div class=\"theme-tags\"></div>', 'GeneratePress Premium Modules', '', 'https://1.bp.blogspot.com/-uaobVJSsERc/YD-BrLWQYlI/AAAAAAAAC9E/dIFNoYGPJMUt4Vc2fjP3aKOdSpXH-c3AQCLcBGAsYHQ/s1280/video.jpg', 'publish', 'open', '2021-04-29 09:54:45', 0),
(4877, 1, '2021-03-04 12:21:12', 'Ekommart is all in one WordPress theme of eCommerce. If you have already designed a niche for your single product company, you can choose the most appropriate theme from these single product WordPress themes. You can use the template for toys & children, electronics & computers, food & grocery, equipment & pieces, beauty & health, clothes, watch & jewellery, home & furniture, the marketplace, etc.\r\n\r\nIt comes with 23+ useful pre-built homepages (03 new ones updated) that can be installed in one click. Built using the latest web technologies like HTML5, CSS3 is ready to upgrade your company to a new level. In order to boost its success, ekommart is packed with features that will help you deliver your product efficiently. Its support for WPML plugin & RTL improves the pages of your site.', 'ekommart - All-in-one eCommerce WordPress Theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-j4wsTfQGt0Y/YEDQA-79aAI/AAAAAAAAC9o/OQsig44MZpsnKlTWqsNDtTvGXaLsu0U6wCLcBGAsYHQ/s1180/01_preview.__large_preview.jpg', 'publish', 'open', '2021-04-04 11:11:22', 0),
(4879, 1, '2021-03-04 12:29:52', 'WP AMP is a premium WordPress plugin that provides support for Accelerated Mobile Pages (AMP) for WooCommerce. With this plugin, it just takes a few clicks to make your website mobile.\r\n\r\nAMP HTML is an open-source Google project that aims to provide mobile-optimized content that can be uploaded anywhere instantly. Read more about AMP here at www.ampproject.org.\r\n<h2 id=\"item-description__wp-amp-enables-you-to\">WP AMP enables you to:</h2>\r\n<ul>\r\n <li>Include all content types and archives in your mobile website.</li>\r\n <li>Embed images, videos, audios and iframes.</li>\r\n <li>Fully customize the standard design or create a totally new one.</li>\r\n <li>Track visitors with Google Analytics, Google Tag Manager, Yandex.Metrika and Facebook Pixel.</li>\r\n <li>Work with Yoast SEO, All in One SEO Pack, The SEO Framework, SEO Ultimate.</li>\r\n <li>Integrate AMP with WooCommerce to sell on mobile.</li>\r\n <li>Earn some extra money by adding AdSense and DoubleClick advertising to AMP pages.</li>\r\n</ul>\r\n ', 'WP AMP — Accelerated Mobile Pages for WordPress and WooCommerce', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-s3xcpnsFkpc/YEDSLQwTpKI/AAAAAAAAC9w/xKE1O6O8_BkkBhqHeiut6QvM-0LFjEAfgCLcBGAsYHQ/s1180/01_preview.__large_preview.jpg', 'publish', 'open', '2021-05-28 17:15:11', 0),
(4882, 1, '2021-03-04 12:38:13', 'WPSyncSheets For WooCommerce (formally WooSheets) plugin sync with your website’s WooCommerce Orders to Google Spreadsheet and manage your orders easily into single Google Spreadsheet.\r\n\r\n<strong>Manage Orders</strong> – It can quickly manage all of your orders with a single Google Spreadsheet to help your business run smoothly. Inventory Orders can be managed using Google Spreadsheet.\r\n\r\n<strong>New Spreadsheets & Sheets</strong> – When a user selects the Build New Spreadsheet with Name choice in the settings tab, it will automatically create a new spreadsheet and sheets based on the order status.\r\n\r\n<strong>Order Status Reports</strong> – It generates the normal WooCommerce order status sheets automatically. Based on the order status, it will save new orders in Google Spreadsheet.\r\n\r\n<strong>Order Wise Row Data</strong> – A new alternative called Order Wise Row Data has been added. The user can easily manage the orders inside the sheet based on the order row details.\r\n\r\n<strong>Freeze Header</strong> – With the page choice set, the user can easily freeze the header row (first row) of the sheet.\r\nAuto Order ID / Edit Orders – Users can easily edit orders from the admin side, and the changes will be reflected automatically in the Google spreadsheets. It is simple to update and set based on the order id of all orders.\r\n\r\n<strong>Multi-Language Support</strong> – This plugin supports three languages: French, German, and Chinese.\r\n\r\n<strong>Orders Synchronization</strong> – “Click to Sync” will automatically sync all current orders according to the order status sheets. It can also deal with current WooCommerce orders.\r\n\r\nhttps://gpldog.com/file/foodbakery-food-delivery-restaurant-directory-wordpress-theme/', 'WPSyncSheets For WooCommerce - Manage WooCommerce Orders with Google Spreadsheet', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-Tk-lDnR7azI/YEDUh7hq1zI/AAAAAAAAC94/jcu0_ukp408RB1_yEwFrSbttQjGfkiekgCLcBGAsYHQ/s1180/01_preview.__large_preview.jpg', 'publish', 'open', '2021-04-14 07:59:08', 0),
(4885, 1, '2021-03-04 16:05:27', 'Support Board is a WordPress plugin that lets you simplify customer contact with artificial intelligence-driven bots and a chat framework that is integrated with the most-used channels. Save time and use the apps that you already know and love. Communicate directly to the customers in Slack. Connect the dialogue and use rich messages on the fly.', 'Chat - Support Board - WordPress Chat Plugin', ' \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-hWw6o5TYHVk/YEEEq6sKwYI/AAAAAAAAC-A/aU0bSuYbuuIZdhLgm_INifIKx_h8FIvIwCLcBGAsYHQ/s1180/preview.jpg', 'publish', 'open', '2021-04-04 11:10:18', 0),
(4999, 1, '2021-03-04 18:10:42', 'WooCommerce\'s core checkout method covers all the basics required to place an order, but what if you want to accept tips, provide gift wrapping, or let customers add a gift message to their order? That\'s where the WooCommerce Checkout Add-ons come in! With Checkout Add-ons, you can add free or paid options to your check-out page.\r\n\r\nYou can add several different types of fields based on your add-on type – text fields, radio buttons, file uploads, and more!\r\n\r\nHere are just a few ways that you can improve your checkout with Checkout Add-Ons:\r\n<ul>\r\n <li>Accept order tips, using percentage-based fees</li>\r\n <li>Offer upsell or free services like shipping insurance, company stickers / swag, or rush handling</li>\r\n <li>Add gift options, such as messages, gift wrap options, and gift receipts</li>\r\n</ul>\r\n \r\n\r\n ', 'WooCommerce Checkout Add-Ons', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-w_ryLEBnjqg/YEEiL6QCfVI/AAAAAAAAC-I/KDNyqXc_QAkV8JiOu5CHZjzHHjvsPkfYwCLcBGAsYHQ/s1248/Header-Checkout-Add-Ons-updated.png', 'publish', 'open', '2021-04-04 11:00:48', 0),
(5002, 1, '2021-03-04 18:35:45', 'A gift card makes life simpler for both the client and the individual who earns it. This is why gift cards have become more and more common, to such an extent that 98% of shops – and not just virtual shops – use them to raise sales volumes and to make customers loyal.\r\n\r\n \r\n\r\n ', 'YITH WOOCOMMERCE GIFT CARDS Plugin', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-cvBXaZs0DNM/YEEnhxsPdSI/AAAAAAAAC-Q/0hYYevv7i0oREy-wFDl_ozHJk3E3xUGuwCLcBGAsYHQ/s1008/gift-card_landing-image.jpg', 'publish', 'open', '2021-04-04 10:59:00', 0),
(5030, 1, '2021-03-05 02:07:32', 'The OceanWP theme is ideal for your project. It allows you to build almost every kind of website, including blogs, portfolios, company websites, and WooCommerce storefronts, with a beautiful and professional design. Quick, sensitive, RTL & translation ready, best SEO practises, unique WooCommerce conversion features, and much more.\r\n\r\nYou can also change the settings on tablet and smartphone to ensure that your site looks great on all devices. Work with prominent page builders such as Elementor, Beaver Builder, Brizy, Visual Composer, Divi, SiteOrigin, and others. His extensible codebase would appeal to developers, making it easy to customise and extend. Elementor and WooCommerce\'s best mate. Are you looking for a theme that can be used for a variety of purposes? You\'ve come to the right place!\r\n\r\n ', 'oceanWP Pro wordpress theme', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-FAKqTdZ0opY/YEGRJKtKXtI/AAAAAAAAC-c/9Iomce3PMlkvoAqNFU05F9vZEFkLycflACLcBGAsYHQ/s1200/screenshot.jpg', 'publish', 'open', '2021-04-04 10:57:50', 0),
(5117, 1, '2021-03-05 06:04:39', 'Galaxy Funder is a crowdfunding system that allows you to keep the money you raise. Check out our Universe Funder Plugin if you\'re searching for an All or Nothing Crowdfunding System.\r\n\r\nGalaxy Funder is a feature-rich Keep What You Raise Crowdfunding System designed on top of WooCommerce. It\'s a WooCommerce Plugin Extension. You can use Galaxy Funder to build your own Crowdfunding platform or to add Crowdfund Campaigns.\r\n\r\nPlease note that Galaxy Funder operates on the Shop Page in the following way: you won\'t see a contribution field for the user to enter the contribution sum on the Shop Page, but you will be connected to the Single Product Page, where the user will make the contribution.\r\n\r\n ', 'Galaxy Funder - WooCommerce Crowdfunding System', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-7c7qxHFA6GY/YEHJyUDQawI/AAAAAAAAC-8/S1_cRqZ_8G4XB6wQKSn_vSo6a_uuo6MsgCLcBGAsYHQ/s1180/screenshot.jpg', 'publish', 'open', '2021-04-02 09:44:31', 0),
(5125, 1, '2021-03-05 06:27:31', 'WooCommerce Frontend Manager – Delivery will going to give you the most easiest and smooth way to manage your order item(s) shipment and delivery using your own group of delivery persons. Vendors will have their own group of delivery persons.', 'WOOCOMMERCE FRONTEND MANAGER – DELIVERY', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-MAwpUy0Mh8Y/YEHOCntjB_I/AAAAAAAAC_E/fsuSIK3O7lwEUiw4w91UnmBOB0oW4NH7wCLcBGAsYHQ/s1200/gpldog-Screenshot.png', 'publish', 'open', '2021-04-03 09:53:25', 0),
(5151, 1, '2021-03-06 01:48:37', 'Maxhost is a professionally built web hosting and corporate business WordPress theme that allows you to create a fully functioning professional website in under half an hour. It includes WHMCS templates (compatible with versions 8.1, 8.0, 7.10, and 7.9), WooCommerce v5.0, Revolution Slider, Visual Composer Page Builder, Aweber, Mega Menu, and Elementor Widgets, among other powerful features.\r\n\r\nYou can now use the drag-and-drop page builders Elementor or Visual Composer (WP Bakery), which are both quick and easy to use, making it simple to create and organise page templates in real time. It means you can experiment with the look and feel of your site when seeing a live preview before making any adjustments.\r\n\r\n ', 'MaxHost - Web Hosting, WHMCS and Corporate Business WordPress Theme with WooCommerce', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-ZKz60-fmA90/YELfQZGfbII/AAAAAAAAC_k/w7JSBXkTiwAV-xMPYtC1jhf_TNdOjox0gCLcBGAsYHQ/s1180/screenshot.jpg', 'publish', 'open', '2021-04-03 22:42:06', 0),
(5190, 1, '2021-03-06 11:32:46', '1 Year Lifetime Free Update;\r\nSecured & Scanned by McAfee;\r\nQuality checked by GPLdog;\r\n100% Refund Guaranteed;\r\nThese Products are Already Activated, You don’t need any License Key to Use Them;\r\nThe Products are Officially Purchased from the Original Store.', '', ' \r\n\r\n ', '', 'draft', 'open', '2021-03-06 11:32:46', 0),
(5237, 1, '2021-03-07 11:59:26', 'That\'s the nature of the business: each customer is different from the other and is well aware of your pricing policies and your way of dealing with them, they always want more and if you don\'t grant them, they\'ll get frustrated and move on to your competitors.\r\n\r\nHow many different types of customers do you have?\r\n\r\nSome of them want to be treated differently from others because they buy a lot of products every month, those who want to be privileged because they\'re old-fashioned customers, and so on.\r\n\r\nBut how could you possibly give privileges to each of your customers, knowing that each of you has different needs?\r\n\r\nOur YITH Automatic Role Changer for WooCommerce handles this job while working alongside your needs and your customers.\r\n\r\nAfter installing it, you will be able, for example, to assign a specific user role to all those who purchase a specific product, or to assign a VIP role to those who exceed a certain purchase amount, or even to do so for a specific time frame.\r\n\r\n ', 'Yith Automatic role changer for WooCommerce', ' \r\n\r\n ', 'https://1.bp.blogspot.com/-G9vMRSimxiM/YES_qv8M4CI/AAAAAAAAC_0/E4UMlVVly3UTNr9olk68ULzqwYKYnr4LgCLcBGAsYHQ/s2048/YITH-WooCommerce-Automatic-Role-Changer.png', 'publish', 'open', '2021-04-03 08:14:16', 0),
(5241, 1, '2021-03-07 12:10:36', 'Selling products with dedicated access is a great opportunity to increase your earnings: large companies such as Udemy or Treehouse are living proof and achieve a huge volume of sales every year with this business model. Their income is intended to grow, given the increasing number of people looking for their products.', 'YITH WooCommerce Membership Plugin', ' \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-BYnTixAAvHo/YETDg2aCMZI/AAAAAAAADAE/T0_SUOoEK8s8_xKxt_KlyT9SET4A_HOogCLcBGAsYHQ/s1008/screenshot.jpg', 'publish', 'open', '2021-05-06 07:20:43', 0),
(5289, 1, '2021-03-07 15:47:06', 'Did you know that people read refund policies before purchasing a product?\r\n\r\nBasically, if the website grants a refund for the product due to legitimate reasons, such as malfunctions, glitches, etc., the purchasers will be more determined to complete their orders. They\'re going to feel reassured.\r\n\r\nAnd that\'s awesome because the conversion rate has increased enormously.\r\n\r\nBut do you know what happens when we deliver a tough procedure to get refunds? Users will lose confidence in your business and will most likely look elsewhere for their potential purchases.\r\n\r\nWooCommerce\'s simple refund mechanism is not very easy to deal with, and contact between buyers and sellers is not specifically applied, which can be an increasing concern for your customers and maybe a major one.\r\n\r\n \r\n\r\n ', 'YITH WooCommerce Advanced Refund System', ' \r\n\r\n \r\n\r\n ', 'https://1.bp.blogspot.com/-FqU5XBF6HZk/YET1SqGy1UI/AAAAAAAADAM/zBM5G8PJyRMrMEPnVvrWrnBdoigEttqPQCLcBGAsYHQ/s1008/screenshot.jpg', 'publish', 'open', '2021-04-02 17:19:54', 0),
(5295, 1, '2021-03-07 16:31:16', 'Many studies conducted on the most successful e-commerce stores have shown that effective selling tactics significantly boost profits, demonstrating that even estimates are not indicative of a truly great sale success. One of the most popular marketing tactics is to suggest goods that consumers are likely to purchase together.\r\n\r\nThe right cross-selling strategy in your shop is critical because it has a direct impact on conversion rates.\r\nProducts that are suggested as \"frequently purchased together\" are actually even more attractive, and consumers who see them will already be interested. Conversion rates are extremely high in this manner.\r\n\r\n ', 'YITH WooCommerce Frequently Bought Together', '', 'https://1.bp.blogspot.com/-3qY9pOHlmzU/YEnwFyxHKeI/AAAAAAAADCE/1kB4fx13ycMYtMM6GKuO6Pzm0m7zNuZ3gCLcBGAsYHQ/s1008/00_cons.__large_preview.jpg', 'publish', 'open', '2021-04-02 17:14:30', 0),
(5298, 1, '2021-03-07 16:49:41', 'OVOO is a user-friendly, efficient, and versatile Live TV and Movie Portal CMS with an advanced video content management system. It\'s easy to use and set up. It was designed to offer movie buffs and movie site owners a unique experience. To keep track of the ISP requirements, we created ovoo, a multipurpose video CMS. For a c, this framework was designed with advanced modules and a slew of other powerful features.\r\n\r\nFor full video website management, this application was designed with advanced modules and many more powerful features. It also includes CSS3, HTML5, and the Bootstrap 3 Framework, which make it possible to use any platform with semantic accuracy and a highly customizable PHP (CodeIgniter) programme.', 'OVOO - Live TV & Movie Portal CMS with Membership System', '', 'https://codecanyon.img.customer.envatousercontent.com/files/303076202/Cover%20v3.2_590x300.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=8c04284bbb3932ae757b0204dff6acf7', 'publish', 'open', '2021-05-09 13:54:04', 0),
(5302, 1, '2021-03-07 17:23:50', 'Tijarah is the ultimate woocommerce WordPress theme for creating an online store or marketplace. Tijarah Theme helps you to set up your own marketplace, similar to Amazon, eBay, Etsy, Themeforest, or CreativeMarket, in just a few hours. If you want to sell your models, artwork, tutorials, music, ebooks, stock photography, or stock video, the site is a good place to start.\r\n\r\nTijarah is the place to go if you want to sell models, artwork, tutorials, music, ebooks, stock photography, stock footage, themes, plugins, code snippets, software, or digital services.\r\nYou can not only sell your own goods, but you can also build a multi-vendor marketplace for others to sell theirs. Tijarah also supports you in using multi-vendor solutions.', 'Tijarah - Digital Marketplace WooCommerce Theme', '', 'https://1.bp.blogspot.com/-joAJPKavNG4/YEUL5NGACNI/AAAAAAAADAs/YhlsLtN_j6YK5RWJf9ZiEzP8gHW2BN5rgCLcBGAsYHQ/s1180/screenshot-gpldog.jpg', 'publish', 'open', '2021-04-02 04:38:31', 0),
(5339, 1, '2021-03-11 03:33:03', '<p style=\"text-align: right;\">Diamond City (DiCi) Jewelry and Watch Theme is a beautiful and modern WordPress theme designed for jewellery stores and craftsmen. It has been influenced by the best works of both mainstream and indie jewellery manufacturers and has been produced with regard to all major contemporary trends in web design.\r\nThe theme is very sensitive to look good on all devices: large desktop screens, regular desktop screens, laptops.</p>\r\nThe theme is very sensitive to look good on all devices: large desktop screens, regular desktop screens, tablets, tables, and mobile phones. DiCi will make a perfect theme for an online jewellery store, a beautiful watch theme, and a decent multi-purpose web theme in general.\r\n\r\nDiamond City <strong>Jewelry WordPress theme</strong> is based on WooCommerce plugin for shop functionality. <strong>WooCommerce</strong> has a huge ecosystem of compatible plugins, payment gateways, and solutions. It’s a number one selection if you run a WordPress e-commerce store.', 'DiCi - Jewelry Shop WordPress Theme', '', 'https://1.bp.blogspot.com/-XQG4qcFbDmk/YEmOf0VPt5I/AAAAAAAADB0/rQfcLizz90MJCdi0SkVaqzPfxAWupAmgQCLcBGAsYHQ/s885/01_banner.png', 'publish', 'open', '2021-07-02 22:07:18', 0),
(5344, 1, '2021-03-11 10:04:46', 'WPML is a WordPress plugin. Simply put, plugins expand the basic WordPress CMS features. In our case, WPML renders WordPress multilingual.\r\n\r\nWPML allows writers to write content in various languages and translate content. It also provides advanced translation management features and a professional content translation gui.\r\n\r\nNo technical or programming skills are needed to use WPML. Site administrators can install and transform their site on a multilingual basis, without any coding. WPML provides a full API for integration with other plugins and translation systems. This way, developers can easily use WPML and transform their products into multilingual ones.', 'WPML- The WordPress Multilingual Plugin', '', 'https://1.bp.blogspot.com/-8x4HntoVxX0/YEnq_d4Cg9I/AAAAAAAADB8/dLfgIkzbxx4vPF54-ISCbyPrjXmKwCJjQCLcBGAsYHQ/s951/00_cons.__large_preview.jpg', 'publish', 'open', '2021-04-03 22:46:10', 0),
(5356, 1, '2021-03-16 10:32:53', '<div class=\"col-12 col-lg-8\">\r\n<div class=\"introheader\">\r\n\r\nTurn WordPress into a fully functional dating website in minutes with this powerful WordPress Dating theme. Create your own dating website similar to Match.com, OkCupid and be your own boss - it\'s quick and easy, get started today.\r\n\r\n</div>\r\n</div>\r\n<div class=\"col-12 col-lg-4\">\r\n<div class=\"sidebar_content\">\r\n<div class=\"demo_side\">\r\n<div class=\"ppt_license_selection\">\r\n<div class=\"ppt_license_license-type\">\r\n<div class=\"col-12 col-md-6\">\r\n<div>\r\n<ul>\r\n <li>Popular Features</li>\r\n <li>Built-in Membership System & Recurring Payments</li>\r\n <li>Built-in Private Chat & Ajax Chatroom</li>\r\n <li>Online Now Button!</li>\r\n <li>Send Virtual Gift!</li>\r\n <li>Image, Video & YouTube!</li>\r\n <li>Custom Profile Fields</li>\r\n <li>Advanced Ajax Search & Custom Search Filtering</li>\r\n <li>Dedicated Members Area</li>\r\n <li>Custom Emails & Verififcation System</li>\r\n <li>Built-in Invoice & Tax System</li>\r\n <li>Responsive Design</li>\r\n <li>Mobile-Friendly View</li>\r\n <li>Powerful Management Tools</li>\r\n <li>500+ Admin Area Features.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>', 'Premium press Dating WordPress theme', '', 'https://1.bp.blogspot.com/--BLNaQCbhmI/YFCJzH3jNMI/AAAAAAAADCg/ajeoMOMOkPoUJLXo5Dk8aHrU3FWFTXk_ACLcBGAsYHQ/s708/da-top.jpg', 'publish', 'open', '2021-07-17 12:39:16', 0),
(5365, 1, '2021-03-17 16:00:00', 'Turn your WooCommerce website into a selling machine using one-click sales funnels with frictionless checkout, custom thank you pages, global checkout replacement, and more…\r\n\r\nCartFlows is the best and easiest way to sell products and services on your website. With our library of done for you, one-click sales funnels, that literally sell your products and services for you.\r\n<h3>CARTFLOWS IS PERFECT FOR</h3>\r\n<ul>\r\n <li><strong>Selling Online Courses</strong></li>\r\n <li><strong>Selling Event Tickets</strong></li>\r\n <li><strong>Selling Services</strong></li>\r\n <li><strong>Selling Info Product</strong></li>\r\n <li><strong>Selling Physical Products</strong></li>\r\n <li><strong>Selling Via Dropshipping</strong></li>\r\n <li><strong>Selling Anything Really</strong></li>\r\n</ul>', 'CartFlows Pro– Create High Converting Sales Funnels For WordPress', '', 'https://1.bp.blogspot.com/-bVr-fZFAX7s/YFInqYsbH6I/AAAAAAAADCo/RVsuqgrmNj0DAyij52byyoutrFigMPjMwCLcBGAsYHQ/s1200/00_cons.__large_preview.jpg', 'publish', 'open', '2021-04-30 15:03:05', 0);
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(5370, 1, '2021-03-17 20:44:24', 'FoodBakery WordPress Restaurant Theme is a full solution for listing single or multiple restaurants. The FoodBakery theme offers restaurant owners membership opportunities and membership packages from which they can control their restaurants\' Menus, Bookings, Teams, Memberships, and Payments. Restaurant owners can register under the theme \"Restaurant\" and collaborate to develop their businesses.\r\n\r\nFoodBakery Multiple Restaurant system has a simple and easy to use Merchant / Restaurants dashboard where restaurants can easily signup via social logins and manage their restaurants, create menus, manage orders and bookings, handle memberships, manage teams, profits, withdrawals, statements, and account settings such as password change, etc. An all-inclusive online restaurant management scheme.', 'FoodBakery | Food Delivery Restaurant Directory WordPress Theme', '', 'https://1.bp.blogspot.com/-gHm7O_SrGqs/YFJpu22LwGI/AAAAAAAADC8/2x3JJYjIwV0xN6ZEJrnXaOjZ9OQOtVpngCLcBGAsYHQ/s885/00_cons.__large_preview.jpg', 'publish', 'open', '2021-04-02 09:56:06', 0),
(5373, 1, '2021-03-18 13:49:12', 'KiviCare is a powerful clinic and patient management plugin. It is designed for physicians and hospitals to manage numerous doctor appointments and clinic experiences. It enables you to schedule, monitor, and track patient appointments for physicians. Add holidays, a receptionist, appointment reminders, and email alerts for physicians. Keeping privacy in mind, each d', 'Kivicare Pro - Clinic & Patient Management System EHR', '', 'https://1.bp.blogspot.com/-W6ypXF5kLfk/YFNZn4X_B-I/AAAAAAAADDU/BXFb2p5bscMtXs6maF2MmBguRAqQGZ0vgCLcBGAsYHQ/s885/01_banner.png', 'publish', 'open', '2021-04-02 04:42:25', 0),
(5376, 1, '2021-03-19 03:55:48', 'Polylang is the most common multilingual plugin in the WordPress directory, with over 500,000 instals.\r\n\r\nYou write your blogs, sites, groups, and post tags as usual, and then assign each of them a language. The translation is optional, whether it is in the default language or not.\r\n<ul>\r\n <li>You are free to use as many languages as you want. RTL scripts can be used. WordPress language packs are downloaded and modified automatically.</li>\r\n <li>Blogs, websites, media, categories, post tags, menus, and so on can all be translated. Custom post forms, custom taxonomies, sticky posts and post formats, RSS feeds, and all WordPress default widgets are all supported.\r\nThe language is defined by either the text or the language code.</li>\r\n <li>The orginal content, categories, post tags as well as some other metas can be automatically copied when adding a new post or page translation . Two posts can even be synchronized to appear the same in different languages.</li>\r\n <li>A customizable language switcher is provided as a widget or in the nav menu.</li>\r\n</ul>', 'Polylang Pro - The Most Popular Multilingual WordPress Plugin', '', 'https://1.bp.blogspot.com/-11RTVGxyje0/YFQf1qEAEFI/AAAAAAAADDc/wPBjTaC6krMWzZMixAGuw6tavZ-vydC2wCLcBGAsYHQ/s1083/01_banner.png', 'publish', 'open', '2021-07-03 11:50:05', 0),
(5379, 1, '2020-09-01 01:21:54', 'What the plugin does\r\n\r\nTurn your WooCommerce installation into an easy to use and powerful cash register for each type of store or business.\r\n\r\nHow you can benefit from it:\r\n\r\nYou can sync your store point of sale with orders, customers and product listings of your online shop and vice versa. You’ll have full control over your business.\r\n\r\nYou can create a virtual cash register for any business activity (shop, pub, gym and so on) without buying a physical device and save on the expensive yearly subscriptions of the traditional point of sale tools and services.\r\n\r\nYou can use the virtual cash register on any computer, on touch screens and in any new generation web <del>bro</del>\r\n\r\n<hr />\r\n\r\nwser.', 'YITH POINT OF SALE FOR WOOCOMMERCE (POS)', '', 'https://yithemes.com/wp-content/uploads/2020/01/Plugin-POS-WooCommerce06.png', 'publish', 'open', '2021-04-02 04:42:35', 0),
(5403, 1, '2021-03-23 11:23:29', 'Exertio is a premium WordPress theme that allows you to build and launch a website for freelancing services and project posting. With a commission-based scheme, you can create a site similar to Freelance.com, Fiverr, or Upwork. Your users can build free Employer and freelancer accounts in less than a minute.\r\n\r\nExertio is a fully-featured and extremely strong Marketplace WordPress theme created specifically for service-based business owners looking to expand their online presence. If your company is small or large and fully functional, this advanced freelancing WordPress theme can assist you in creating a fully feature-packed website.\r\n\r\nWe created the Exertio Theme with excellent code quality and design requirements in mind. Our team designed and created this theme based on market analysis to ensure that it meets the needs of consumers searching for the best marketplace website. It provides the best possible user experience for end users.', 'Exertio - Freelance Marketplace WordPress Theme', '', 'https://1.bp.blogspot.com/-HTK7n98KTGg/YFnPGS_SjxI/AAAAAAAADEA/BbvEJCS4k24wEwgEN5zf8YGKB9uKIxTswCLcBGAsYHQ/s885/preview.__large_preview.jpg', 'publish', 'open', '2021-04-03 22:30:49', 0),
(5413, 1, '2021-03-25 04:18:51', 'Smart Hospital is a modern and comprehensive hospital automation software that can be used in almost any hospital or medical institution, from patient OPD visits to operations and pathology tests, among other things. It has 25+ modules and an 8-user panel (Super Admin, Admin, Doctor, Accountant, Pathologist, Radiologist, Receptionist, and Patient).\r\n\r\n<strong>Check whats new in major version 3.0 -</strong>\r\n<ul>\r\n <li>Added Zoom Live Consultation module</li>\r\n <li>Added Zoom Live Staff Meeting</li>\r\n <li>Added Pathology Test Report</li>\r\n <li>Added Radiology Test Report</li>\r\n <li>Added Symptoms selection</li>\r\n <li>Added Balance Report</li>\r\n <li>Added Multi Language active support</li>\r\n <li>Added Prescription Notification</li>\r\n <li>Added Discharge Summary</li>\r\n <li>Added Balance Reports</li>\r\n <li>Added 5 new Payment Gateways (Instamojo, Paystack, Razorpay, Paytm and Midtrans)</li>\r\n <li>Added One Click Updater</li>\r\n <li>Added Mobile App support (Android mobile app release is expected till end of September)</li>\r\n <li>Added Charge Type CRUD</li>\r\n <li>Added Asynchronous Datatable loading</li>\r\n <li>Disabled Discharged Patient edit</li>\r\n</ul>', 'Smart Hospital : Hospital Management System', '', 'https://1.bp.blogspot.com/-CiTZfieEEHA/YFwOzzZwJzI/AAAAAAAADEI/M6LMvQ-TZcAQrcfge40818g2TDeKM0XMACLcBGAsYHQ/s885/preview.__large_preview.jpg', 'publish', 'open', '2021-03-25 04:18:51', 0),
(5420, 1, '2021-03-25 20:51:21', 'Consultix is a powerful and fully mobile responsive corporate, consulting, industry, and financial services WordPress theme that is jam-packed with features. It is suitable for small to medium-sized web businesses and organisations that specialise in consulting, corporate, business, financial services, legal advice, wealth & tax consultancy, and so on. It includes 20 Homepage demos.\r\n\r\nConsultix – Radiant Themes Customizer powers this strictly business corporate consulting WordPress Theme. We painstakingly created the core of our WP consulting theme by soliciting all possible input from our clients, and we have put all into the development of this dynamic business theme. This corporate theme includes the all-powerful drag-and-drop page builder. It is extremely adaptable.\r\n\r\nWith the WordPress Live Customizer, you can change the look of your website in real-time by adding your own logo, changing colours (background, font), and much more. You can also use the strong Revolution Slider included with the corporate consulting theme to quickly make spectacular slides with animated effects.', 'Consultix - Business Consulting WordPress Theme', '', 'https://1.bp.blogspot.com/-1VkwFb7-Aao/YFz3qQVf3dI/AAAAAAAADEY/GXq2EkU4Xk4ofPvZa263zRvxJCbefE9WwCLcBGAsYHQ/s885/01_consultix.__large_preview.jpg', 'publish', 'open', '2021-04-03 22:26:23', 0),
(5422, 1, '2021-03-25 21:01:38', 'Consultio is the ideal WordPress theme for consulting, finance, and business. Consultio is ideally fit for corporate websites such as Consultioial Adviser, Accountant, Consulting Companies, insurance, loan, tax assistance, investment business, and so on. This is a business theme that is beneficial for corporate businesses and consulting firms\' online presence.\r\n<h3 id=\"item-description__features-overview\">Features Overview</h3>\r\n<ul>\r\n <li><strong>Drag and drop page – Elementor:</strong>\r\nFast, intuitive and smart page Consultio will make your customization fast and easy. You layout will be ready for publishing in a minute!</li>\r\n</ul>\r\n<ul>\r\n <li><strong>Demo content included :</strong>\r\nConsultio is ready to use from the box. Quickly install it via FTP or WordPress and after you activate it you can load demo content. Then you can add your own content on already designed pages.</li>\r\n</ul>\r\n<ul>\r\n <li><strong>One click installation :</strong>\r\nInstall Consultio with our powerful one click installer. Get your site up and running in no time! Quick, easy and rocket fast!</li>\r\n</ul>\r\n<ul>\r\n <li><strong>Responsive & retina ready :</strong>\r\nLook of your website on mobile devices is very important these days. So we made sure Consultio looks great both on mobile, desktop and retina screens!</li>\r\n</ul>\r\n<ul>\r\n <li><strong>WPML & Translation Ready:</strong>\r\nConsultio is compatible with most popular WordPress plugin that supports creation of multilingual layouts. Translate your website to any language with WPML!</li>\r\n</ul>\r\n<ul>\r\n <li><strong>Advanced typography options :</strong>\r\nChoose any of the Google web fonts library through powerful theme options panel! Now you can set a unique style for your brand!</li>\r\n</ul>\r\n<ul>\r\n <li><strong>Compatible with Contact form 7 and Multi Step Pro :</strong>\r\nConsultio is compatible with the most powerful and most popular custom contact forms WordPress widget! create your own forms in seconds!</li>\r\n</ul>\r\n<ul>\r\n <li><strong>Powerful framework :</strong>\r\nConsultio is based on most popular, well established, powerful vafpress theme options framework!</li>\r\n</ul>\r\n<ul>\r\n <li><strong>Detailed documentation :</strong>\r\nExtensive documentation plus great video guides on how to setup and customize Consultio will make your customisations super easy and fast!</li>\r\n</ul>\r\n<ul>\r\n <li><strong>Crossbrowser compatibility :</strong>\r\nConsultio looks great among all major browsers including IE10+.</li>\r\n</ul>', 'Consultio - Consulting Corporate WordPress Theme', '', 'https://1.bp.blogspot.com/-DujMnPti5us/YFz5B-LQ9aI/AAAAAAAADEg/iL1anwrFSCAIF-r_2aF73MolNmntl1s2QCLcBGAsYHQ/s1232/01_Consultio-Preview.png', 'publish', 'open', '2021-04-03 22:23:53', 0),
(5424, 1, '2021-03-25 21:06:45', 'Consultant The Responsive WordPress theme has fantastic features and templates. Advisor is ideally suited for corporate websites such as Financial Advisor, Accountant, Consulting Companies, insurance, loan, tax assistance, Investment Firms, and Software Firms. It is a company template that can be used to represent a Corporate Business, Financial Firms, and IT Agencies online. It is a totally sensitive theme.\r\n\r\nIt is a fully sensitive theme that has been reviewed on all major mobile devices. It comes with an endless number of possibilities that will make it easier for you to help site growth. It comes with powerful theme options that allow you to change the majority of the style with just a few clicks. While the included Visual Composer allows you to create a website with only drag and drop.\r\n\r\nThe theme is fully translation ready and ready for you to personalise according to your culture. We\'ve also included a revolution slider, so you can start making eye-catching sliders right away. You can also choose from a variety of templates available on slider exchange. Above all, if you have any problems or layout issues, we are just an email away. Don\'t put it off any longer – launch or upgrade your startup today.', 'Advisor | Consulting, Business, Finance WordPress Theme', '', 'https://1.bp.blogspot.com/-ksi87kEA1es/YFz69w9DAOI/AAAAAAAADEo/uuweWUQD_o0wRuB70jyUJMp2rAnyFjErwCLcBGAsYHQ/s885/01_consultix.__large_preview.jpg', 'publish', 'open', '2021-04-03 22:22:03', 0),
(5520, 1, '2021-03-28 20:35:50', 'Your customers need PDF invoices – sometimes it’s needed by law, sometimes it’s easier for them to import PDFs into their booking system. Our WooCommerce PDF Invoice plugin allows you and your customers to solve this problem automatically. Your users can instantly receive invoice PDFs attached to their order addresses, thank you page, and order information with a few clicks.\r\n\r\nAs an added bonus, you can now generate invoice numbers for your orders. You can change the invoice id formatting however you want.\r\n\r\nFurthermore, as an administrator, you can change the layout as you see fit: add a header, address blocks, custom invoice texts, photographs, a logo, HTML, or whatever you want. Display taxes correctly, including the tax rate, and use our unique preview feature to see the generated tax.', 'WooCommerce PDF Invoices & Packing Slips', '', 'https://1.bp.blogspot.com/-toHIlmL2l0Y/YGDnP8ThCBI/AAAAAAAADFI/91JauvJEzw4MWz83jvkgD4dSeNV_1Uj2ACLcBGAsYHQ/s885/WooCommerce%2BPDF%2BInvoices%2B%2526%2BPacking%2BSlips.jpg', 'publish', 'open', '2021-05-03 11:29:58', 0),
(5574, 1, '2021-03-31 05:04:28', 'Industrial is a business WordPress style. It focuses on developing websites for industrial, manufacturing, and factory companies. WPBakery Page Creator (formerly Visual Composer), Revolution slider, WooCommerce support, and an advanced admin panel were all included. You can use as many colors as you want and build as many templates as you want. It is suitable for any form of industrial or manufacturing sector. You can\'t go wrong with any of those features and our excellent service. Building your ideal WordPress theme would be a joy; why wait any longer? Get it now!\r\n<h2 id=\"item-description__what-you-get\">WHAT YOU GET:</h2>\r\n<ul>\r\n <li><a href=\"https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431\">WPBakery Page Builder (formerly Visual Composer)</a></li>\r\n <li><a href=\"https://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380?s_rank=2\">Revolution slider</a></li>\r\n <li>Unlimited sidebars</li>\r\n <li>Unlimited colors</li>\r\n <li>Easy one-click update</li>\r\n <li><a href=\"https://www.woothemes.com/woocommerce/\" rel=\"nofollow\">WooCommerce</a> support</li>\r\n <li>Advanced admin panel</li>\r\n <li><a href=\"https://wordpress.org/plugins/contact-form-7/\" rel=\"nofollow\">Contact Form 7</a></li>\r\n <li><a href=\"https://wpml.org/\" rel=\"nofollow\">WPML compatible</a></li>\r\n <li><a href=\"https://wordpress.org/plugins/loco-translate/\" rel=\"nofollow\">Loco Translate</a> localization compatible</li>\r\n <li>Fullwidth and boxed layouts</li>\r\n <li>4 predefined color schemes</li>\r\n <li>100% Responsive</li>\r\n <li>RTL supported</li>\r\n <li>Font Awesome icons integrated</li>\r\n <li>Extended documentation</li>\r\n <li>3 blog types</li>\r\n <li>Video tutorials</li>\r\n <li>And much more!</li>\r\n</ul>', 'Industrial - Factory Business WordPress Theme', '', 'https://1.bp.blogspot.com/-DkEvoowxCL4/YGQCIsIxtQI/AAAAAAAADFk/eaaCgo8DmBcMoXoh-5La_Chk6Aclx2CZACLcBGAsYHQ/s885/preview_wp.__large_preview.jpg', 'publish', 'open', '2021-04-03 22:29:02', 0),
(5592, 1, '2021-03-31 10:16:13', '<strong>Simple Perfect and Customizable</strong>\r\n\r\nSimple ionic 5 mobile app for WooCommerce. Easily customizable into any theme.\r\n\r\n<strong>Dynamic Design</strong>\r\n\r\nManage home design from admin panel easily. create hundreds of layout with simple settings. Give your customer a unique feeling every day.\r\n\r\n<strong>Dynamic Blocks</strong>\r\n\r\nAdd banners or categories or products blocks from admin panel. Link banner to the category or product or post.\r\n\r\n<strong>Future update with new themes</strong>\r\n\r\nAdding new layout design with future updates\r\n<strong>The online app builder tool</strong>\r\n\r\nQuickly build an android app using online toll. Build your android app without any technical skill\r\n<strong>WooCommerce Points and Rewards</strong>\r\n\r\nSupports WooCommerce Points and Rewards plugin <a href=\"https://woocommerce.com/products/woocommerce-points-and-rewards/?aff=7531\" rel=\"nofollow\">https://woocommerce.com/products/woocommerce-points-and-rewards/?aff=7531</a> Customer can view Reward points balance and history of transactions. Points can be redeemed for a discount at checkout', 'Ionic 5 WooCommerce marketplace mobile app - Dokan Multivendor', '', 'https://1.bp.blogspot.com/-qF2iJ2H2CoA/YGRLZwHHJPI/AAAAAAAADFs/IOTKeOLG4Wo3CY4U_Z6iMz4e7H5ghuhCACLcBGAsYHQ/s1180/Preview_inline.jpg', 'publish', 'open', '2021-03-31 10:16:14', 0),
(5627, 1, '2021-04-02 09:58:04', '<h2 id=\"item-description__great-new-features\"><strong>All Features</strong></h2>\r\n<ol>\r\n <li>Doctor Database</li>\r\n <li>Prescription Management</li>\r\n <li>Appointment Management</li>\r\n <li>Human Resource Database</li>\r\n <li>9 Types Of Login Access (Super Admin, Admin, Doctor, Patient, Nurse, Accountant, Pharmacist, Laboratorist, Receptionist)</li>\r\n <li>Hospital Accounting</li>\r\n <li>Financial Reporting</li>\r\n <li>Invoicing</li>\r\n <li>Pharmacy Management</li>\r\n <li>SMS Management</li>\r\n <li>Dynamic Language</li>\r\n <li>Multi Language English, French, Italian, Portuguese , Spanish</li>\r\n <li>Frontend Website</li>\r\n <li>Schedule Management for Doctors</li>\r\n <li>Payment Gateway</li>\r\n <li>Email Module</li>\r\n <li>Notice Module</li>\r\n <li>Quantity in Pos</li>\r\n <li>Dynamic medicine selection during prescription creation</li>\r\n <li>New dashboard</li>\r\n <li>Patient Timeline</li>\r\n <li>Template for Lab report creation</li>\r\n <li>Easy Process to Translate Into any Language</li>\r\n <li>Patient Medical History</li>\r\n <li>Patient Medical Files Archive</li>\r\n <li>Prescription</li>\r\n <li>Patient Payment History</li>\r\n <li>User Activity Report</li>\r\n <li>Doctor’s Commission calculator for Diagnosis Reference</li>\r\n <li>Stripe payment Gateway</li>\r\n <li>Twilio sms Gateway</li>\r\n <li>Table responsiveness in all device</li>\r\n <li>Server side tables for Appointment, Prescription and some other tables</li>\r\n <li>Auto Email and SMS template</li>\r\n <li>Prescription re-design.</li>\r\n <li>Popup patient history on click calendar appointments</li>\r\n <li>CodeIgniter 3.1.10</li>\r\n <li>Fontawesome 5</li>\r\n <li>Telehealth</li>\r\n</ol>', 'Multi Hospital - Hospital Management System (Saas App)', '', 'https://1.bp.blogspot.com/-zglsL5JssSc/YGbqaEFwBoI/AAAAAAAADGE/hJS_xoC5ax0DBNRkibv53E28rkskMRYwgCLcBGAsYHQ/s1180/inline_preview%2B%25281%2529.jpg', 'publish', 'open', '2021-06-02 15:56:05', 0),
(5631, 1, '2021-04-02 11:59:10', 'The smartest woocommerce frontend vendor store/shop manager is WooCommerce Frontend Manager. The best WooCommerce Frontend Product Manager you\'ve ever seen. The most common woocommerce multi-vendor marketplace plugins include Vendor Dashboard for Dokan, WC Marketplace, WC Vendors, and WooCommerce Product, Vendors. WP Job Manager compatibility with WooCommerce Bookings, WooCommerce Appointments, WooCommerce Rental & Bookings Scheme, WooCommerce Subscription, ACF, and Listings. Some of the many colorful feathers of the wings include Knowledgebase, Notification, Direct Messaging, and PDF Invoice.\r\n<div class=\"grve-container\">\r\n<div class=\"grve-row grve-bookmark\">\r\n<div class=\"wpb_column grve-column-1 vc_custom_1519207915695\">\r\n<div class=\"grve-element grve-text\">\r\n\r\n<strong><em>You are going to experience a long list of exclusive plugin compatibility and most interestingly all this will even work for your multi-vendor store as well. None of these plugins or any of the multi-vendor plugins has the support of these. Just relax, WCFM Ultimate will be going to do all these for you.</em></strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>', 'WCFM - WooCommerce Frontend Manager - Ultimate', '', 'https://1.bp.blogspot.com/-mmXvHaJRE0E/YGcGPHsvzEI/AAAAAAAADGM/oVliRVrvIMIXBxT1QLt3kvFQfwzypUJ9QCLcBGAsYHQ/s1362/1563305786120.png', 'publish', 'open', '2021-05-06 19:35:19', 0),
(5712, 1, '2021-04-03 15:39:36', 'WooCommerce PDF Invoice is the most professional and feature-rich invoicing extension available, and it includes premium support. For those who take their company seriously.\r\nInvoicing extensions are not ordinary extensions; documentation must conform to accounting requirements and legislation, and the extension itself must be highly dependable, as a single error will result in additional costs later on.\r\n\r\nWith this in mind, we spent countless hours studying accounting principles and creating a product we can proudly call the most skilled WooCommerce invoicing extension in the world.', 'WooCommerce PDF Invoice by Codecanyon', '', 'https://1.bp.blogspot.com/-YDQ-b2LfShY/YGg95r-AOHI/AAAAAAAADGg/OB8JhBZrQlAOOBXVk-DBg6iVKAs1j50UQCLcBGAsYHQ/s1180/img.jpg', 'publish', 'open', '2021-04-03 22:03:04', 0),
(5791, 1, '2021-04-06 14:44:04', 'B2BKing is a full WooCommerce solution for operating a Wholesale, B2B, hybrid B2B+B2C, or Private Membership shop.\r\n\r\nB2BKing manages everything, from simple B2B features like hiding rates for guest users to advanced features like tiered pricing models, tax exemptions, VAT handling, and multiple buyers on account. B2BKing does it all, from expanded company registration and separate B2B/B2C registration forms to custom billing areas, an invoice payment gateway, and negotiated pricing deals.', 'B2BKing - The Ultimate WooCommerce B2B & Wholesale Plugin', '', 'https://1.bp.blogspot.com/-AQxmCk32Ip8/YGwk5KrpS4I/AAAAAAAADHw/xU-5UcOuM6c-lgIpUVrkhwSgYPaQqeutwCLcBGAsYHQ/s1180/BannerNou.jpg', 'publish', 'open', '2021-04-06 14:44:06', 0),
(6033, 1, '2021-04-11 21:49:40', 'Jack Well – powerful, responsive & trendy Political WordPress theme. It is a splendid solution for politician, modern political leader, activist, election campaign, contemporary political. It also acts with blogs for social movements, political parties or individual candidates, political reviews, and non-profit organisations.\r\n\r\nIt covers important topics: <strong>human rights</strong>, <strong>charity</strong>, volunteers, president, parliament, government, <strong>fundraising</strong>, <strong>policy</strong>, events conference, voter’s testimonials, politics, political tasks, missions and priorities. Also it is great for: <strong>political blog</strong>, social blog, political news and <strong>political magazine</strong>.', 'Jack Well | Elections Campaign & Political WordPress Theme', '', 'https://1.bp.blogspot.com/-iMDAN9m3D14/YHMhDQXXbpI/AAAAAAAADIQ/huEUQZM6fJYMtYcMgk9kwc5EFPnPD5xKACLcBGAsYHQ/s590/01_JackWell.__large_preview.jpg', 'publish', 'open', '2021-06-29 19:51:20', 0),
(6035, 1, '2021-04-11 21:54:46', 'Libero is an excellent solution for all kinds of law firm, law, and lawyer websites. All the elements, formats, and options that every law firm\'s website would ever need – beautifully packaged in a single box.\r\n\r\nLibero is a premium theme designed for all forms of law websites, with plenty of powerful choices and versatile law-specific elements and formats to ensure a smooth website building experience.\r\n\r\nIf you\'re looking for a fast and easy way to build a law firm landing page, a personal website for a lawyer, or some other law-related website, Libero will help.', 'Libero - Lawyer and Law Firm Theme', '', 'https://themeforest.img.customer.envatousercontent.com/files/160929133/00_preview.__large_preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=a197f5136134812591e7c003d632bfae', 'publish', 'open', '2021-04-23 23:36:48', 0),
(6073, 1, '2021-04-13 21:46:15', '', '', '<p><br data-mce-bogus=\"1\"></p>', '', 'draft', 'open', '2021-04-13 21:46:15', 0),
(6160, 1, '2021-04-16 14:51:41', 'Let your customers book reservations, appointments or rentals on their own – no phone calls needed. Save yourself time and fill up your calendar by having your platform do the work for you.\r\n\r\nWhatever choices you wish, bookings make it possible for your customers:\r\n\r\nSet out options for a class, an appointment or a guided tour such as fixed times\r\nLet clients pick the best times by providing them with the versatility to book the range they need, including inspecting a hotel.\r\nYou can also block time as unbuchable for either option, allowing you time to deal with other priorities and to create buffers between reservations to ensure that the schedule works for you.\r\n\r\nHave your time-space as unique as you want – the expansion makes reservations in days, hours, and even minutes.', 'WooCommerce Bookings- Booking and Reservations WordPress Plugin', '', 'https://embed-fastly.wistia.com/deliveries/4d31b191240f3913f2c3a62b8964953f469d3d37.webp', 'publish', 'open', '2021-04-16 15:14:19', 0),
(6183, 1, '2021-04-17 12:39:23', 'WordPress a multi-purpose magazine for online journals, news, blogs and publishing companies.\r\nFor news magazines, on-line journals, travel websites, food recipes blogs, fashion magazines, personal blogs, or editorials and reviews, NewsPlus is an excellent option. It comes equipped with built-in support for plugins such as BuddyPress, bbPress forum, WooCommerce, TablePress, WPML etc.\r\n\r\nNewsPlus includes smooth and modern design, backed up by best SEO practises, quick page speed ratings, schema microdata and code. This all-inclusive WordPress magazine theme supports publicity spots at the best sites and posts that help you make strong revenue from Google AdSense.', 'NewsPlus - News and Magazine WordPress theme (With License key)', '', 'https://themeforest.img.customer.envatousercontent.com/files/316033552/screenshots/01_preview.__large_preview.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=a30a03a002df78580ea21373045713cb', 'publish', 'open', '2021-04-25 11:58:20', 0),
(6189, 1, '2021-04-17 17:37:27', '', 'UpVote - Social Bookmarking WordPress Theme', '', '', 'draft', 'open', '2021-04-17 17:37:27', 0),
(6191, 1, '2021-04-17 17:59:02', 'UpVote is ideal if you want to use WordPress to build sites like Reddit, Hacker News, Growth Hackers, and other similar sites.\r\n\r\nUpVote theme is driven by a custom-build plugin that will allow registered users to send url (in UpVote we named it story) and the theme will automatically fetch the post title, featured image and description from the connection, as long as the url support Open Graph.\r\n\r\nUsers can register to UpVote using WordPress default registration form or simply login using Facebook and Twitter oauth. They will later submit new storey (url) or vote on existing stories.', 'UpVote - Social Bookmarking WordPress Theme', '', 'https://themeforest.img.customer.envatousercontent.com/files/187701750/preview/01_preview.__large_preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=6d05c779065c02f34d82859656965d1c', 'publish', 'open', '2021-04-17 18:21:37', 0),
(6203, 1, '2021-04-18 07:51:20', '<ul>\r\n <li>No footer copyright</li>\r\n</ul>\r\nBest Outcome Blogger Template is a magazine-styled multi-niche blogger that was created specifically for blogs that publish exam and result-related material. This theme is completely customizable and suits every screen size or device. It is also based on Blogger\'s most recent design framework, which allows you to modify and customize things directly from the layout or customizer. This theme is ideally suited for creating exam blogs, result blogs, admit cards, exam schedules, answer keys, model articles, and so on. Often suitable for a career site, job portal, job news, web marketing, affiliate marketing, reseller blog, niche, authority, howto, events, and so on. This theme has a lovely colour scheme of blah blah blah blah blah blah blah.\r\n\r\nThis theme has a lovely colour scheme of black, white, and red, with multi-color featured entries. Responsive, White, Ads Ready, SEO Ready, Fast Loading, Browser Compatibility Ready for Breadcrumb Navigation, Drop Down Menu, Email Subscription Widget, 3 Columns, Technology Multi-Color, Social Bookmark Ready, WordPress Adapted 1 Right Sidebar, Elegant, News Company, Organization, Organization, Organization, Organization, Organization, Organization, Organization, Organization, Organization, Organization, Organization, Organization, Organization WhatsApp Collaboration, Google, AMP, 2 Columns, Yellow, Blue, Green, Violet', 'Sarkari result clone Blogspot Template', '', 'https://1.bp.blogspot.com/-uXGSThSL35k/YHvrJjTdv9I/AAAAAAAADIw/wJ12ujQeN4UDwzoEaAp4SfwkELFhV0NfQCLcBGAsYHQ/s1420/job.PNG', 'publish', 'open', '2021-04-18 13:49:26', 0),
(6222, 1, '2021-04-19 18:14:14', 'Adforest Classified ads app is one of the most popular and up-to-date classified apps for Android, built to help you develop your company. You can handle product listings for your ad posting company using our mobile classifieds app. It is the best-classified apps with amazing handy features such as Multi-Currency front end Added, Bad Word Filter, AD Expiry Limits, Ad Status, Google map integration, Location or Price base search, plus the user can contact seller/buyer with massaging system and many other outstanding features that most mobile classifieds apps do not support. Simply buy the Classifieds app, install the extension, make the improvements you want, and your app is ready to use.\r\n\r\nAdForest is a premium graded Android native app that works with a WordPress plugin and is extremely versatile. We designed the AdForest classified android native app with great thought and consideration in order to make AdForest a full classified solution. We handcrafted this app with a heavy emphasis on typography, usability, and overall user experience in mind. It takes very little time to set up and is very simple to customise. There is also a WordPress theme available for it.', 'AdForest - Classified Native Android App', '', 'https://codecanyon.img.customer.envatousercontent.com/files/333186824/01-theme-preview.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=efce059583e14630ed04c2c8c0175ca3', 'publish', 'open', '2021-04-19 18:14:15', 0),
(6533, 1, '2021-04-26 08:27:47', 'HappyAddons is the pioneer of adding exclusive problem-solving features. Also we have added premium quality Widgets in the Elementor Library. Reasons for choosing Happyaddons over any other Elementor Addons:\r\n<ul>\r\n <li>You Can Create Advanced Data Table,</li>\r\n <li>Facility to Add Text Stroke or Outline to Elementor Typography</li>\r\n <li>Manage Your Event Calendars,</li>\r\n <li>Design Your Woocommerce Sites,</li>\r\n <li>Copy and Paste All of Your Elements Within Cross-Domain,</li>\r\n <li>Masking Your Images Into Different Shapes Within the Elementor Editing Panel,</li>\r\n <li>Flexibility to Create Advance Background Parallax for Your Elementor Site,</li>\r\n <li>Exclusive Blog Archive Page Designing Capability,</li>\r\n <li>500+ Readymade Elementor Template Kits to Use,</li>\r\n <li>Moreover, You Can Copy Happyaddons Demo Contents Directly from Our <a href=\"https://demo.happyaddons.com/\" rel=\"nofollow ugc\">demo site</a> and much more.</li>\r\n <li>Officially recommended by Elementor Page Builder! We are now listed on their <a href=\"https://elementor.com/addons/\" rel=\"nofollow ugc\">official addons page</a>.</li>\r\n <li>This Elementor Page Builder Addon is the latest addition in the list of <a href=\"https://wedevs.com/\" rel=\"nofollow ugc\">weDevs</a> premium product library. <strong>weDevs is famous for reliable after sales service</strong>.</li>\r\n</ul>\r\nThe Happy Elementor Addons ships not only with some unique premium features but also with premium widgets. The premium features are 100% unique and exclusive and the premium widgets are there to give you professional assistance to craft any design of your webpage.\r\n<h3><strong>UNIQUE PRO FEATURES OF HAPPY ADDONS TO WATCH OUT FOR</strong></h3>\r\nThe premium (PRO) features of Happy Addons truly make it stand out from all the other Elementor add-ons out there right now. You will get the below mentioned much talked about standout premium features in the PRO version of Happy Addons:', 'Happy Addons for Elementor (Pro)', '', 'https://happyaddons.com/wp-content/uploads/2021/03/ha-fb-ad-1024x591.jpg', 'publish', 'open', '2021-04-26 08:51:51', 0),
(6567, 1, '2021-04-28 05:27:30', 'Kadence Theme is a lightweight but full-featured WordPress theme that makes it easier than ever to create beautiful, fast-loading, and open websites. It includes an easy-to-use drag-and-drop header and footer builder that allows you to create any kind of header in minutes. It includes a large library of beautiful starter templates that are simple to customize using our intelligent global font and color controls. You can easily create impressive eCommerce websites, course websites, business websites, and more thanks to comprehensive integration with the most common 3rd party plugins.', 'Kadence Theme Pro', '', 'https://1.bp.blogspot.com/-YIZYkQ4OTio/YIijmB6hOtI/AAAAAAAADLQ/XWgW53uUQZUAbP8g2BDVjsHIHh5vP7nhwCLcBGAsYHQ/s800/kt-header-builder-mockup-finaltest.png', 'publish', 'open', '2021-05-05 07:19:37', 0),
(6582, 1, '2021-04-28 12:29:14', '<strong>Android Studio includes a native Android app.</strong>\r\nTictic / TikTik is an Android app for making and sharing short videos. The customizable social video app allows you to create your own trending video sharing site complete with video dubbing tools, different filters, social media integrations, and more. Create your own Tik Tok / Musical.ly / Dubsmash clone today!\r\n\r\n<strong>Characteristics</strong>\r\nSign in / Sign up Your users can register for the app using their phone number, email address, or social media accounts. These credentials can be used to access the software.\r\n\r\nNewsfeed: The news feed is continually updated based on the user\'s followers and following to highlight the latest posts from other users, top viewed posts in the city, and is designed for maximum user engagement rate.\r\nPick your favorite tracks or upload your own from the admin panel for our custom video dubbed post with your own song or audio set.\r\nDubbing and Video Selfie: Capture custom music-dubbed video selfie posts or performances – On our customizable Tik Tok clone, users can choose from a variety of choices to help them become mini internet stars themselves.\r\nVideo-Sharing: On the TikTok clone, you can share your dubbed video or media with other users or on other social networks.', 'TicTic - Android media app for creating and sharing short videos', '', 'https://s3.envato.com/files/326881753/tik%20tik%20icon%20design-01%20(1).jpg', 'publish', 'open', '2021-04-28 12:29:49', 0),
(6586, 1, '2021-04-28 23:21:27', 'Sabai Directory is a premium WordPress business directory plugin. The plugin allows you to build community-driven local business directories similar to Yelp.com, Google+ Places, or Yahoo! Local.\r\n\r\nNew: In May 2018, we launched Directories Pro, a directory plugin focused on custom post types and taxonomies with much more features than Sabai Directory. If you are fresh, we strongly advise you to use Directories Pro rather than Sabai Directory.', 'Sabai Directory - Business directory plugin for WordPress', '', 'https://codecanyon.img.customer.envatousercontent.com/files/53746909/sabaidirectory1.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=0b090afc4c9e81fde3b147ee94ba729d', 'publish', 'open', '2021-04-30 23:53:50', 0),
(6598, 1, '2021-04-29 13:47:46', 'The masterClass WordPress theme is an excellent WordPress theme for creating a Learning Management System. Since the evolution of LMS in WordPress, many themes have been published, but none of them are as feature-rich as MasterClass. You have a plethora of choices for customizing, styling and publishing your online courses. You can also take online classes via a Zoom meeting.\r\n\r\nTophive introduces robust theme customization support, as well as a plethora of features. Here are several choices for customizing the theme\'s header and footer. You may also use the customizer to change the look of the theme\'s dynamic pages. Customizer also includes a drag-and-drop header, footer, and mega menu builder.\r\n\r\nFurthermore, inside the MasterClass Customizer, you can style inner page sidebars, typography, colours, spacing, and more. So it\'s not just a casual Customizer; it\'s more than you\'ve ever loved.\r\n<h3>LMS stands for Learning Management System.</h3>\r\nWith the aid of MasterClass, you can make your LearnPress even more strong. You may be wondering how this is even possible.\r\nSo, in the Masterclass theme, the entire LearnPress LMS has been updated, and we have made it more effective by introducing rich features that were previously just a dream. You will not be required to buy any additional plugins. Among these characteristics are:', 'MasterClass - LMS & Education WordPress Theme', '', 'https://themeforest.img.customer.envatousercontent.com/files/331919115/preview.__large_preview.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=a4d771dac1051e3e9200188f198a0b75', 'publish', 'open', '2021-07-25 12:36:29', 0),
(6614, 1, '2021-04-30 11:38:34', 'This will not be your first time looking for a directory theme, but it will be your last. Since Listify has everything you might possibly want or need.\r\n\r\nMany of the websites you visit, whether you realise it or not, are operated by directories.\r\n\r\nWhen looking to buy a home, real estate websites show listings.\r\nWhen you go to buy a car, car websites show listings.\r\nWhen you choose a restaurant, ratings sites show listings.\r\nWhen you book a holiday, travel websites will show listings.\r\nYour website will be stunning. Let\'s face it: while most of those sites are extremely functional, many of them aren\'t very visually appealing. That is why the attractive ones are so common.\r\n\r\n<strong>Get Started Right Away</strong>\r\nIf you need to create a reservation system quickly, we have integrations to the best booking services in the industry. We currently endorse Open Table, Resurva, and WooCommerce Bookings.\r\n\r\nYou enter your account details, and our theme connects the systems. The end result will be the fastest and most visually appealing reservation site you\'ve ever built.\r\n\r\n<strong>Google is going to adore you.</strong>\r\nHave you ever found that when Google returns results for searches, there are sometimes scores next to listings and sometimes there aren\'t? We won\'t bore you with schema specifics, but we can assure you that your site will appear correctly due to the way Listify was coded. Google will adore you, as will your potential clients.\r\n\r\n ', 'Listify - Directory WordPress Theme', '', 'https://themeforest.img.customer.envatousercontent.com/files/298016626/01_large_preview.__large_preview.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=da447f19ffe08dce503df2b64f88a7e0', 'publish', 'open', '2021-04-30 11:38:39', 0),
(6688, 1, '2021-04-30 22:59:13', 'Reco is a theme excellent for magazines, blog, digital freebies, mockups and others. It is super light and was made with multiple techniques to achieve excellent Scores on Google, also we keep in mind the code quality and SEO. This fast theme it is easy to use and customize. Includes 9 customs widgets and a powerful theme options panel to make easier the administration. Reco has AMP and RTL support and it is multilanguage, includes: Turkish, Russian, French, Spanish and English.', 'Reco - Minimal Theme for Freebies', '', 'https://themeforest.img.customer.envatousercontent.com/files/257101059/01.__large_preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=14025b7743ea21bb1cbbc31e1f87ded6', 'draft', 'open', '2021-04-30 22:59:13', 0),
(6689, 1, '2021-04-30 23:05:01', 'Reco is a theme excellent for magazines, blog, digital freebies, mockups and others. It is super light and was made with multiple techniques to achieve excellent Scores on Google, also we keep in mind the code quality and SEO. This fast theme it is easy to use and customize. Includes 9 customs widgets and a powerful theme options panel to make easier the administration. Reco has AMP and RTL support and it is multilanguage, includes:\r\n\r\nTurki\r\n\r\nsh,\r\n\r\nRussian, French, Spanish and English.', 'Reco - Minimal Theme for Freebies', '', 'https://themeforest.img.customer.envatousercontent.com/files/257101059/01.__large_preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=14025b7743ea21bb1cbbc31e1f87ded6', 'publish', 'open', '2021-04-30 23:43:54', 0),
(6741, 1, '2021-05-05 07:55:19', '<h4>Settings:</h4>\r\n<ul>\r\n <li>Image background</li>\r\n <li>Link</li>\r\n <li>Link target</li>\r\n <li>Hover image animation (static, zoom, slide, b&w and blur)</li>\r\n <li>Overlay color</li>\r\n <li>Initial overlay opacity</li>\r\n <li>Hover overlay opacity</li>\r\n <li>Inner border color</li>\r\n <li>Inner border width</li>\r\n <li>Inner border opacity</li>\r\n <li>Title and Subtitle align horizontally</li>\r\n <li>Title and Subtitle align vertically</li>\r\n <li>Title</li>\r\n <li>Title color</li>\r\n <li>Title background (and background opacity)</li>\r\n <li>Title size (desktop, tablet and mobile)</li>\r\n <li>Title font-family (includes Google fonts) – font weight, font style</li>\r\n <li>Title letter spacing</li>\r\n <li>Title padding</li>\r\n <li>Title margin</li>\r\n <li>Subtitle</li>\r\n <li>Subtitle color</li>\r\n <li>Subtitle background (and background opacity)</li>\r\n <li>Subtitle size (desktop, tablet and mobile)</li>\r\n <li>Subtitle font-family (includes Google fonts) – font weight, font style</li>\r\n <li>Subtitle letter spacing</li>\r\n <li>Subtitle padding</li>\r\n <li>Subtitle Margin</li>\r\n <li>Divider</li>\r\n <li>Divider width</li>\r\n <li>Divider Color</li>\r\n <li>Divider Style</li>\r\n</ul>', 'Kadence Blocks Pro', '', 'https://1.bp.blogspot.com/-q4EG3_7Tzl8/YJIBqQlN31I/AAAAAAAADL4/MM6jhpQO6H44gbI3AzO9LFjXvTwK6tqaACLcBGAsYHQ/s590/Kadence-Theme.jpg', 'publish', 'open', '2021-08-26 14:48:59', 0),
(6786, 1, '2021-05-08 09:31:59', 'Betube is the most strong and largest Responsive Video WordPress theme designed specifically for video websites. Betube brings you the latest design in Video Website trends with stunning complete and fixed width page templates that ooze with elegance and charm, you will have a ground breaking fully functional video website within minutes of purchase.\r\n\r\nBetube is the answer to your questions when it comes to building a safe and future-proof online marketplace with sleek full-page sliders and advanced features. You can embed videos from all major video websites, such as YouTube, DailyMotion, Vimeo, Hulu, and others.', 'Betube Video WordPress Theme', '', 'https://themeforest.img.customer.envatousercontent.com/files/335468202/preview.__large_preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=94c98607d81897e8a89f2aa8c36aaf79', 'publish', 'open', '2021-05-08 21:19:00', 0),
(6840, 1, '2021-05-13 07:55:13', '<h2 id=\"item-description__essentials-features\"><strong>Essentials Features</strong></h2>\r\n<ul>\r\n <li>The only theme that fully support <strong>WPBakery</strong> and <strong>Elementor (Free version)</strong> page builders.</li>\r\n <li><strong>37+ Full demos.</strong></li>\r\n <li><strong>665+ templates.</strong></li>\r\n <li><strong>70+ Premium Elements.</strong></li>\r\n <li><strong>40+ Premium premade Essentials pages.</strong></li>\r\n <li><strong>16+ Premium Popup templates.</strong></li>\r\n <li><strong>35+ Premium Header templates.</strong></li>\r\n <li><strong>38+ Premium Footer templates.</strong></li>\r\n <li>Super clean design.</li>\r\n <li>One click advanced demo importer.</li>\r\n <li>Header builder with 30+ included Headers.</li>\r\n <li>Footer builder with 35+ included Footer templates.</li>\r\n <li>WPBakery plugin included for free <strong>(SAVE $64).</strong></li>\r\n <li>Slider Revolution included for free <strong>(SAVE $29).</strong></li>\r\n <li>Master Slider included for free <strong>(SAVE $24).</strong></li>\r\n <li>WooCommerce Ready.</li>\r\n <li>WooCommerce products wishlist.</li>\r\n <li>WooCommerce Shopping cart.</li>\r\n <li>WooCommerce products preview popup.</li>\r\n <li>Visual Popup builder.</li>\r\n <li>Automatic & Exit popups to increase conversion.</li>\r\n <li>Shape builder and animated Dividers.</li>\r\n <li>Built in website banners.</li>\r\n <li>Dynamic templates.</li>\r\n <li>Global Dynamic styles.</li>\r\n <li>Eye catching built-in elements animations.</li>\r\n <li>Particles builder.</li>\r\n <li>Sticky Mobile Header.</li>\r\n <li>Exclusive new Stories Element.</li>\r\n <li>WPML Ready.</li>\r\n <li>Polylang Ready.</li>\r\n <li>Awesome Mega menus.</li>\r\n <li>Built in cookies banner.</li>\r\n <li>640+ Premium icons included.</li>\r\n <li>Contact Form 7 Support.</li>\r\n <li>990+ Google fonts and external online embed fonts.</li>\r\n <li>Blog reading progress bar.</li>\r\n <li>Advanced Google maps styles.</li>\r\n <li>Live search suggestions + cool search animations.</li>\r\n <li>Easy Editing for Builder’s elements.</li>\r\n <li>Unlimited Colors & Unlimited Possibilities.</li>\r\n <li>Responsive images adaptable to screen sizes.</li>\r\n <li>4 Portfolio Layouts.</li>\r\n <li>SEO ready with built-in social shading feature.</li>\r\n <li>Beautiful 404 page.</li>\r\n <li>Intuitive theme options.</li>\r\n <li>Fully responsive.</li>\r\n <li>Automatic updates.</li>\r\n <li>New Features and Demos in future updates.</li>\r\n <li>Extensive knowledge Base.</li>\r\n</ul>', 'Essentials | Multipurpose WordPress Theme', '', 'https://themeforest.img.customer.envatousercontent.com/files/337034881/screenshots-v2/00_cover.__large_preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=ca2302316005b778083aff92782f40d0', 'publish', 'open', '2021-07-15 15:15:12', 0),
(6925, 1, '2021-05-28 08:59:51', 'With our fully complete WordPress E-commerce, you can create your own online store. Cartsy is a user-friendly WooCommerce theme that will meet all of your online company requirements. Begin selling anything and everything right now.\r\n<h3>Features</h3>\r\n<h3>Product Search With Algolia Support / Native Search.</h3>\r\nOur E-Commerce theme is equipped with product search and filters to find what you want. Feel the magic of search with Algolia with both free & premium model. You can use algolia free for upto 10,000 search requests. We have also added Native search for our customers.\r\n<div class=\"MobileAuthstyle__TextArea-sc-1vmqmpo-2 jNeIMt\">\r\n<h3>WooCommerce Firebase Mobile OTP Authentication!</h3>\r\nAllow users to login/register simply with their mobile number by our Firbase Mobile OTP Authentication Plugin. No more password or email required. Keep track of your customer using their mobile number by this $4 worth <a href=\"https://gpldog.com/file/firemobile-wordpress-woocommerce-firebase-mobile-otp-authentication/\" target=\"_blank\" rel=\"noopener\">plugin</a>, provided free with the theme.\r\n<h3>WPML & RTL Support!</h3>\r\nWith Cartsy, we have provided full support of WPML & RTL for all grid and content. You can build your entire site with your local language and connect with your people.\r\n<h3>Mobile App Like Navigation!</h3>\r\nNow mobile is the key to browsing. For smooth browsing experience in mobile devices, we implement a mobile app like navigation, to provide a mobile app like experience to the customers when they visit the site from mobile.\r\n\r\n \r\n\r\n \r\n\r\n</div>', 'Cartsy - SuperFast WordPress WooCommerce Theme', '', 'https://redq.io/landing/_next/static/images/videobanner-f89a4571332d59f30cf6c2981e49cabc.jpg', 'publish', 'open', '2021-07-28 15:12:26', 0),
(6927, 1, '2021-05-28 09:06:08', 'Users of FireMobile can login/register using only their mobile number. There is no longer any need for a password or an email address. You can easily use this plugin in your WordPress or WooCommerce store to track your customers\' mobile numbers.\r\n<h3>Why is FireMobile so popular?</h3>\r\nThis plugin provides a very stable and nearly free WordPress two-factor authentication solution. It is a very quick and secure plugin that comes with an easy installation instructions and a video instructional (Check setup section).\r\n\r\nThis plugin uses Firebase phone authentication. Firebase’s phone number sign-in request quota is high enough(20k/month) that most apps won’t be affected. However, if you need to sign in a very high volume of users with phone authentication, you might need to upgrade your pricing plan.', 'FireMobile- WordPress & WooCommerce firebase mobile OTP authentication', '', 'https://codecanyon.img.customer.envatousercontent.com/files/310109514/preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=79ebafd0cfee24dc6249959cae263c83', 'publish', 'open', '2021-05-28 09:06:08', 0);
INSERT INTO `products` (`id`, `product_author`, `publish_date`, `product_content`, `product_title`, `product_excerpt`, `product_image`, `product_status`, `comment_status`, `product_modified`, `comment_count`) VALUES
(6935, 1, '2021-05-28 17:22:22', '', 'Filmora video editor (Win) - Lifetime valedity', '', 'https://1.bp.blogspot.com/-Nab6j5nnSYQ/YLDZK0OoE_I/AAAAAAAADNA/VkOyAhiIdeIEB47k6FpvtTpcHPnVujCxQCLcBGAsYHQ/s1632/Capture.PNG', 'publish', 'open', '2021-05-28 17:24:09', 0),
(7663, 1, '2021-07-19 21:38:42', 'Vinkmag is a multi-concept, one-of-a-kind WordPress theme designed for news organizations, tour-travel websites, business magazines, food recipes, cryptocurrency news, health magazines, technology blogs, and any other sort of publishing or review site.\r\n\r\nTwitter Bootstrap 4, SASS, Slick Slide, Owl Carousel, Video Popup, Beautiful Tab, Gallery, and more are included. Vinkmag is a strong All-in-One WordPress Theme that will improve your experience.\r\n\r\nVinkmag includes the strong Unyson theme. It also includes Elementor, the most powerful drag and drop visual page builder. It has a lot of cool features including an image section, a video section, a color area, an endless Google font part, a carousel, a video popup, a beautiful tab, a gallery, and more.\r\n\r\nThe Vinkmag theme is entirely responsive. It looks great on a wide range of monitors and resolutions, from desktops to tablets, iPads, iPhones, and other small mobile devices. The upturn is genuinely SEO-friendly.', 'Vinkmag - AMP Newspaper Magazine WordPress Theme', '', 'https://s3.envato.com/files/307905667/preview/00_preview.png', 'publish', 'open', '2021-07-19 21:54:12', 0),
(7759, 1, '2021-07-26 11:45:04', 'Doccure offers a system for scheduling appointments online for your patients. It is also known as Multiple Clinic Booking for doctor appointments, and it has many features to offer patients who are looking for a specific doctor or specialist. This template contains information about the city so that the user can find the nearest clinic and doctor. It categorises the information based on the clinic services. The data includes details about doctors, clinics, images, and so on. The user is given the option to rate and comment on the clinic.', 'Doccure - Doctor Appointment Booking Management System Template (Practo Clone) (Laravel)', '', 'https://themeforest.img.customer.envatousercontent.com/files/320050906/Doccure%20laravel%20preview%20banner.__large_preview.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=fb977c64326dbf358a7c62ef40419da4', 'publish', 'open', '2021-07-26 11:45:05', 0),
(7963, 1, '2021-08-24 18:29:38', '<h3 id=\"item-description__cargo-pro\"><strong>Cargo Pro</strong></h3>\r\nIt is a software designed for companies that handle packages to monitor the logistics of storage and cargo handling to their final destination and managing employees and drivers so you can track all of your company.\r\n\r\nThis system is based on <strong>Laravel</strong>, the advantage of this software is that it is a web system, allowing it to be accessed from a PC, Tablet or Smartphone possessing an Internet connection and a webservices api’s ready (only for cargo mobile applications, until now we don’t have documenation for them).\r\n\r\nThe client have the ability to login and request or track his packages.\r\n<h4 id=\"item-description__features\">FEATURES</h4>\r\n<ul>\r\n <li><strong>SMS Notificaitions: </strong>ready to be integrated with your account on clickatell directly to send sms for whatever you needs.</li>\r\n <li><strong>Dynamic Workflow: </strong>in every step you can choose which one will receive the notification and what he can do too</li>\r\n <li><strong>Multilingual System: </strong>you can add any language you need and have the ability to translate it directly from your dashbaord</li>\r\n <li><strong>Multi Currency: </strong>you can add any currency you need directly from your dashbaord</li>\r\n <li>alot more …</li>\r\n</ul>', 'Cargo Pro - Courier System', '', 'https://codecanyon.img.customer.envatousercontent.com/files/347714248/preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=449e5902bfc98853c504eea1c765b0ca', 'publish', 'open', '2021-08-25 10:18:33', 0),
(7988, 1, '2021-08-27 17:28:39', 'Shella – premium, responsive, fashion Shopify theme. Our team puts years of web development experience into Shella theme. It includes same features as other themes at themeforest, plus some unique features which you can find only at Shella theme. Builder, true collection filter, fashion icons, etc. Enjoy Shella theme <img title=\" :)\" src=\"https://themeforest.net/images/smileys/happy.png\" alt=\" :)\" />', 'Shella - Multipurpose Shopify theme, fastest with the banner builder', '', 'https://themeforest.img.customer.envatousercontent.com/files/352817556/screens-v4.11.0-black-30off.__large_preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=da1b1441da8db6f6087659871d097080', 'publish', 'open', '2021-09-06 19:04:33', 0),
(7994, 1, '2021-08-28 17:35:34', 'JetEngine is a must-have Elementor plugin that allows you to create new post kinds, taxonomies, and add Elementor-built templates for custom post types and taxonomy words. It comes with a set of dynamic listing widgets for presenting dynamic material, as well as the ability to create grid and listing layouts for custom posts and terms utilising the most advanced query methods.\r\n\r\nWithout utilising CSS or PHP, you may create custom post kinds and custom meta information. With Elementor\'s dynamic content widgets, you\'ll be able to add new custom posts, taxonomies, and templates without having to dig into the database or learn to code.\r\nYou\'ll be able to complete even the most complex tasks with JetEngine.', 'JetEngine - Adding & Editing Dynamic Content with Elementor', '', 'https://1.bp.blogspot.com/-sTd5se9RdLM/YSolvtZFvvI/AAAAAAAADP4/QnNXoFi1esg8xbmF0AR6C2QItnp6oAtWQCLcBGAsYHQ/s1349/download-JetEngine-%25E2%2580%2593-everything-for-adding-editing-dynamic-content-with-Elementor.png', 'publish', 'open', '2021-08-28 17:35:43', 0),
(7998, 1, '2021-08-29 15:30:15', 'Digiqole is a Simple, Easy to Use WordPress Theme for Newsportal, Magazine site, Small Company, and Business News. This amazing News Magazine theme built with Bootstrap4 framework, Elementor Builder, Unique home variations for a perfect News Magazine Website.\r\n\r\nDigiqole also comes with 20+ News Blocks such as News Tab, News Slider, News List, News Video block, News Carousel etc. Also, we have support for RTL News and RTL Magazine Site. You will get <strong>Dark Mode</strong> and eye-catching home variation to get the best feel of a News/Magazine Website.', 'Digiqole - News Magazine WordPress Theme', '', 'https://themeforest.img.customer.envatousercontent.com/files/336392036/theme_preview.__large_preview.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=5dfb83db6add17fed176582bb51a3949', 'publish', 'open', '2021-08-29 15:33:28', 0),
(8005, 1, '2021-08-31 12:40:02', 'In just a few simple steps, you can post over 1,000 APKs. You may now upload APK articles in three simple steps instead of wasting time copying and pasting. In just a few days, you can have a website similar to Moddroid.com. Now is the time to create an APK-related website.\r\n\r\nModdroid Themes is a WordPress Plugin and Themes that makes it simple and quick to submit APKs. You won\'t have to hunt for another theme because Moddroid already includes a unique theme with a pleasing design.\r\n\r\nWe\'ve spent a lot of time experimenting with trial and error in order to build Moddroid products that come with everything you need, from plugins to themes, so you don\'t have to waste time looking for themes that fit your needs.', 'Moddroid Themes Premium', '', 'https://exthem.es/wp-content/uploads/edd/2021/03/demo-websites-moddroid.png', 'publish', 'open', '2021-09-01 00:49:47', 0),
(8019, 1, '2021-09-04 20:22:14', 'PILLAR, A VERSATILE MULTI-PURPOSE WORDPRESS THEME FOR MODERN STARTUPS, ALLOWS YOU TO BUILD PAGES FAST.\r\nTommus\' newest Responsive WordPress Theme, Pillar, comes with over 110 ready-to-use example pages and over 160 sections for multi-page and one-page WordPress websites and landing pages. Use SEO-friendly markup to convert visitors. Pillar is the only viable option; wrap your content with it, and your visitors will be grateful. Pillar is built on Bootstrap, the world\'s most popular responsive website framework, so you\'ll feel right at home utilising a familiar grid structure to construct everything from responsive corporate sites and landing pages to personal resume and masonry portfolio sites with buttery-smooth transitions.', 'Pillar - Multipurpose Multi-Concept Responsive WordPress Theme', '', 'https://themeforest.img.customer.envatousercontent.com/files/231048686/1.__large_preview.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=532b7edd67a7539c3bd70d119dd43eb7', 'publish', 'open', '2021-09-04 20:22:15', 0),
(8026, 1, '2021-09-05 00:19:07', 'FooEvents for WooCommerce, Sell access to your events, venues, and bookable services like a pro!\r\n\r\nRemove the middle man and sell an unlimited number of custom branded tickets from your own WordPress website without having to pay any ticket fees or commission. Get full control over your ticket sales process and customer data with the safest and most flexible event and ticketing solution available.', 'FooEvents for WooCommerce', '', 'https://www.fooevents.com/wp-content/uploads/2020/08/fooevents-zoom-01.png', 'publish', 'open', '2021-09-05 00:19:07', 0),
(8051, 1, '2021-09-07 23:12:16', 'Academy Lms is a marketplace script for online learning. Here students and teachers are combined together for sharing knowledge through a structured course-based system. Teachers or instructors can create an unlimited number of courses, video lessons and documents according to their expertise and students can enroll in these courses and make themselves skilled anytime and from anywhere.\r\nSo start selling your courses by installing ACADEMY and make your online business today.', 'Academy Learning Management System', '', 'https://codecanyon.img.customer.envatousercontent.com/files/353609611/banner_5.2.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=d44acd8f8088eaaa158f7dadcf8908ae', 'publish', 'open', '2021-09-10 13:57:14', 0),
(8062, 1, '2021-09-10 13:08:55', 'TMail is a feature-rich, easy-to-use, fast, and mobile-ready temporary email system. TMail takes only 4 minutes to setup on your server. Here\'s a link to a video lesson on how to set up TMail: https://youtu.be/2sBYzkJQ24s\r\n<h2 id=\"item-description__requirements\">Requirements</h2>\r\nBelow are server requirements. Usually, all major hosting providers covers each and every requirement specified below.\r\n<ul>\r\n <li>Server Requirements\r\n<ul>\r\n <li>PHP >= 7.4</li>\r\n <li>MySQL >= 5.1</li>\r\n <li>OpenSSL PHP Extension</li>\r\n <li>PDO PHP Extension</li>\r\n <li>Mbstring PHP Extension</li>\r\n <li>Tokenizer PHP Extension</li>\r\n <li>XML PHP Extension</li>\r\n <li>Ctype PHP Extension</li>\r\n <li>JSON PHP Extension</li>\r\n <li>BCMath PHP Extension</li>\r\n <li>IMAP PHP Extension</li>\r\n <li>iconv PHP Extension</li>\r\n <li>ZIP PHP Extension</li>\r\n <li>Fileinfo PHP Extension</li>\r\n <li>Set allow_url_fopen = ON</li>\r\n</ul>\r\n</li>\r\n <li>Email with IMAP Support</li>\r\n <li><strong>Default Email Forwarder (Catch all Email)</strong></li>\r\n <li>IMAP search ability</li>\r\n <li>Everything which requires Laravel 8 to run</li>\r\n <li>Enabled symlink function</li>\r\n</ul>', 'TMail - Multi Domain Temporary Email System', '', 'https://codecanyon.img.customer.envatousercontent.com/files/330855889/Banner.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=2d3bc2ffaa87f27409be1f973aff072b', 'publish', 'open', '2021-09-10 13:08:59', 0),
(8065, 1, '2021-09-10 13:13:13', 'Pharmacare is a pharmacy software which is responsive Modern design for any kind of pharmacy. This pharmacy software is actually used for pharmacy data management.', 'Pharmacare - Pharmacy Software Made Easy', '', 'https://codecanyon.img.customer.envatousercontent.com/files/324324985/inline_preview_image-pharmacare.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=9fd243cff1e2751ce3ba978b6cc42081', 'publish', 'open', '2021-09-10 13:36:26', 0),
(8073, 1, '2021-09-10 13:46:54', 'Grow is a customer relationship management software that also includes project management capabilities. Grow combines many of the features you\'ll need into a single, easy-to-use programme. Tasks, bills, leads, estimations, and much more are among them.', 'Grow CRM - Laravel Project Management', '', 'https://codecanyon.img.customer.envatousercontent.com/files/351489433/Banner.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=c9951d6890f3bc856d59ace4053b7b00', 'publish', 'open', '2021-09-10 13:46:56', 0),
(8075, 1, '2021-09-10 14:11:22', 'Ultimate SMS is a Bulk SMS Marketing Application that is powerful, adaptable, and easy to use. It\'s also a one-stop shop for all of your SMS marketing needs. It\'s simple to use and set up.\r\n\r\nPlease contact [email protected] if you need assistance.\r\n\r\nIf you have any difficulties upgrading your application, please contact us at [email protected]. Alternatively, if you prefer, we may do it for you. We\'ll be using a one-click upgrade mechanism from now on.\r\n\r\nLocalhost, local machine, and remote desktop support are not provided by Codeglen.\r\n\r\nIf you wish to use Ultimate SMS, you\'ll need to buy an SMS gateway API from a company like Twilio, Nexmo, or Plivo. There are now around 20 SMS gateway APIs available.', 'Ultimate SMS - Bulk SMS Application For Marketing', '', 'https://codecanyon.img.customer.envatousercontent.com/files/333509906/Featured%20Image.png?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=d24108259fb64109d0d1634ca85c36dc', 'publish', 'open', '2021-09-10 14:13:31', 0),
(8090, 1, '2021-09-14 17:09:49', 'WhatsIPs is an IP address Lookup PHP Laravel Script and geolocation system based on IP addresses. Monthly limit of 50,000 queries is provided for free. It is compatible with both IPV4 and IPV6. The system also displays the ISP name, Hostname, Proxy Information, Continent, Country & Region Information, latitude & longitude, and other information. It is a ready-to-use script or tool for making money that is furnished, ready to use, SEO ready, Google Adsense and Custom Ads ready, and referral/affiliate links ready. You can quickly construct a website or online tools like whatismyip by simply installing this script on your server and earning money by displaying Google or Custom Ads and referral/affiliate links. It comes with a sophisticated admin panel to help you manage your site.', 'WhatsIPs | IP Address Lookup PHP Script', '', 'https://codecanyon.img.customer.envatousercontent.com/files/344029453/inline-preview-image.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=4ffb79443a4a860078c392d8bf8f8777', 'publish', 'open', '2021-10-04 17:30:48', 0),
(8097, 1, '2021-09-18 09:57:03', '<strong>Fabsam Online Exam and Learning Management System</strong> – features are growing with every release, you will get some new features & bugs fixed. Following are the core features of Online Exam and Learning Management System:', 'Online Exam and Learning Management System', '', 'https://codecanyon.img.customer.envatousercontent.com/files/337658403/ems-cover-image.jpg?auto=compress%2Cformat&q=80&fit=crop&crop=top&max-h=8000&max-w=590&s=0b02ba0ff4dcdd4c28cd4139c071fcbf', 'publish', 'open', '2021-09-18 10:09:41', 0);
-- --------------------------------------------------------
--
-- Table structure for table `product_meta`
--
CREATE TABLE `product_meta` (
`product_id` bigint(20) NOT NULL,
`sku` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
`virtual` tinyint(1) DEFAULT 0,
`downloadable` tinyint(1) DEFAULT 0,
`min_price` decimal(19,4) DEFAULT NULL,
`max_price` decimal(19,4) DEFAULT NULL,
`onsale` tinyint(1) DEFAULT 0,
`stock_quantity` double DEFAULT NULL,
`stock_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock',
`rating_count` bigint(20) DEFAULT 0,