2689 lines
6.1 MiB
SQL
2689 lines
6.1 MiB
SQL
|
|
--
|
|||
|
|
-- Table structure for table `wp_users`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_users`;
|
|||
|
|
CREATE TABLE `wp_users` (
|
|||
|
|
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`user_login` varchar(60) NOT NULL DEFAULT '',
|
|||
|
|
`user_pass` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`user_nicename` varchar(50) NOT NULL DEFAULT '',
|
|||
|
|
`user_email` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`user_url` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`user_status` int(11) NOT NULL DEFAULT '0',
|
|||
|
|
`display_name` varchar(250) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`ID`),
|
|||
|
|
KEY `user_email` (`user_email`(100)),
|
|||
|
|
KEY `user_nicename` (`user_nicename`(50)),
|
|||
|
|
KEY `user_login_key` (`user_login`(60))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_users`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_users` VALUES (1,'admin','$P$BJMwQn0qLUJX6UIh2TSZpZojOEdpR6.','admin','admin@localhost.com','http://localhost:8882','2025-02-05 20:57:18','',0,'admin');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_usermeta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_usermeta`;
|
|||
|
|
CREATE TABLE `wp_usermeta` (
|
|||
|
|
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`meta_key` varchar(255) DEFAULT NULL,
|
|||
|
|
`meta_value` longtext,
|
|||
|
|
PRIMARY KEY (`umeta_id`),
|
|||
|
|
KEY `meta_key` (`meta_key`(100)),
|
|||
|
|
KEY `user_id` (`user_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_usermeta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','admin');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (2,1,'first_name','');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (3,1,'last_name','');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (4,1,'description','');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (5,1,'rich_editing','true');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (6,1,'syntax_highlighting','true');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (7,1,'comment_shortcuts','false');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (8,1,'admin_color','fresh');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (9,1,'use_ssl',0);
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (10,1,'show_admin_bar_front','true');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (11,1,'locale','');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (12,1,'wp_capabilities','a:1:{s:13:"administrator";b:1;}');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (13,1,'wp_user_level',10);
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (14,1,'dismissed_wp_pointers','');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (15,1,'show_welcome_panel',1);
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (16,1,'session_tokens','a:2:{s:64:"ec543f003993b920e4b094bec7152a0c9c63f85397485a87e756cd1541d3e347";a:3:{s:10:"expiration";i:1738961841;s:2:"ip";s:9:"127.0.0.1";s:5:"login";i:1738789041;}s:64:"c312eb673f28004d5a9111f607e6dc180264b1f91964614f6c8caf70f0a4d789";a:3:{s:10:"expiration";i:1739998857;s:2:"ip";s:9:"127.0.0.1";s:5:"login";i:1738789257;}}');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (17,1,'wp_user-settings','libraryContent=browse');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (18,1,'wp_user-settings-time',1738789261);
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (19,1,'wp_dashboard_quick_press_last_post_id',5);
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (20,1,'community-events-location','a:1:{s:2:"ip";s:9:"127.0.0.0";}');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (21,1,'_woocommerce_tracks_anon_id','woo:HloXf0RmzGNI9R15LIR9COo6');
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (22,1,'wc_last_active',1738713600);
|
|||
|
|
INSERT INTO `wp_usermeta` VALUES (23,1,'jetpack_tracks_anon_id','jetpack:aQon63UvgZ0E9hjXtKTBdfRK');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_termmeta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_termmeta`;
|
|||
|
|
CREATE TABLE `wp_termmeta` (
|
|||
|
|
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`meta_key` varchar(255) DEFAULT NULL,
|
|||
|
|
`meta_value` longtext,
|
|||
|
|
PRIMARY KEY (`meta_id`),
|
|||
|
|
KEY `meta_key` (`meta_key`(100)),
|
|||
|
|
KEY `term_id` (`term_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_terms`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_terms`;
|
|||
|
|
CREATE TABLE `wp_terms` (
|
|||
|
|
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`slug` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`term_group` bigint(10) NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`term_id`),
|
|||
|
|
KEY `name` (`name`(100)),
|
|||
|
|
KEY `slug` (`slug`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_terms`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (2,'simple','simple',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (3,'grouped','grouped',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (4,'variable','variable',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (5,'external','external',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (6,'exclude-from-search','exclude-from-search',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (7,'exclude-from-catalog','exclude-from-catalog',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (8,'featured','featured',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (9,'outofstock','outofstock',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (10,'rated-1','rated-1',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (11,'rated-2','rated-2',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (12,'rated-3','rated-3',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (13,'rated-4','rated-4',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (14,'rated-5','rated-5',0);
|
|||
|
|
INSERT INTO `wp_terms` VALUES (15,'Uncategorized','uncategorized',0);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_term_taxonomy`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_term_taxonomy`;
|
|||
|
|
CREATE TABLE `wp_term_taxonomy` (
|
|||
|
|
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`taxonomy` varchar(32) NOT NULL DEFAULT '',
|
|||
|
|
`description` longtext NOT NULL DEFAULT '',
|
|||
|
|
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`count` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`term_taxonomy_id`),
|
|||
|
|
KEY `taxonomy` (`taxonomy`(32)),
|
|||
|
|
UNIQUE KEY `term_id_taxonomy` (`term_id`, `taxonomy`(32))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_term_taxonomy`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (2,2,'product_type','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (3,3,'product_type','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (4,4,'product_type','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (5,5,'product_type','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (6,6,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (7,7,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (8,8,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (9,9,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (10,10,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (11,11,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (12,12,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (13,13,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (14,14,'product_visibility','',0,0);
|
|||
|
|
INSERT INTO `wp_term_taxonomy` VALUES (15,15,'product_cat','',0,0);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_term_relationships`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_term_relationships`;
|
|||
|
|
CREATE TABLE `wp_term_relationships` (
|
|||
|
|
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`term_order` int(11) NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`object_id`, `term_taxonomy_id`),
|
|||
|
|
KEY `term_taxonomy_id` (`term_taxonomy_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_term_relationships`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_term_relationships` VALUES (1,1,0);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_commentmeta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_commentmeta`;
|
|||
|
|
CREATE TABLE `wp_commentmeta` (
|
|||
|
|
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`meta_key` varchar(255) DEFAULT NULL,
|
|||
|
|
`meta_value` longtext,
|
|||
|
|
PRIMARY KEY (`meta_id`),
|
|||
|
|
KEY `meta_key` (`meta_key`(100)),
|
|||
|
|
KEY `comment_id` (`comment_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_comments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_comments`;
|
|||
|
|
CREATE TABLE `wp_comments` (
|
|||
|
|
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`comment_author` tinytext NOT NULL DEFAULT '',
|
|||
|
|
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`comment_content` text NOT NULL DEFAULT '',
|
|||
|
|
`comment_karma` int(11) NOT NULL DEFAULT '0',
|
|||
|
|
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
|
|||
|
|
`comment_agent` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
|
|||
|
|
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`comment_ID`),
|
|||
|
|
KEY `comment_author_email` (`comment_author_email`(100)),
|
|||
|
|
KEY `comment_parent` (`comment_parent`),
|
|||
|
|
KEY `comment_date_gmt` (`comment_date_gmt`),
|
|||
|
|
KEY `comment_approved_date_gmt` (`comment_approved`(20), `comment_date_gmt`),
|
|||
|
|
KEY `comment_post_ID` (`comment_post_ID`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_comments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2025-02-05 20:57:19','2025-02-05 20:57:19','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href="https://gravatar.com/">Gravatar</a>.',0,1,'','comment',0,0);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_links`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_links`;
|
|||
|
|
CREATE TABLE `wp_links` (
|
|||
|
|
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`link_url` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`link_name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`link_image` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`link_target` varchar(25) NOT NULL DEFAULT '',
|
|||
|
|
`link_description` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
|
|||
|
|
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
|
|||
|
|
`link_rating` int(11) NOT NULL DEFAULT '0',
|
|||
|
|
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`link_rel` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`link_notes` mediumtext NOT NULL DEFAULT '',
|
|||
|
|
`link_rss` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`link_id`),
|
|||
|
|
KEY `link_visible` (`link_visible`(20))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_options`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_options`;
|
|||
|
|
CREATE TABLE `wp_options` (
|
|||
|
|
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`option_name` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`option_value` longtext NOT NULL DEFAULT '',
|
|||
|
|
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
|
|||
|
|
PRIMARY KEY (`option_id`),
|
|||
|
|
KEY `autoload` (`autoload`(20)),
|
|||
|
|
UNIQUE KEY `option_name` (`option_name`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_options`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_options` VALUES (1,'siteurl','http://localhost:8882','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (2,'home','http://localhost:8882','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (3,'blogname','Php assessment','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (4,'blogdescription','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (5,'users_can_register',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (6,'admin_email','admin@localhost.com','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (7,'start_of_week',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (8,'use_balanceTags',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (9,'use_smilies',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (10,'require_name_email',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (11,'comments_notify',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (12,'posts_per_rss',10,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (13,'rss_use_excerpt',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (14,'mailserver_url','mail.example.com','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (15,'mailserver_login','login@example.com','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (16,'mailserver_pass','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (17,'mailserver_port',110,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (18,'default_category',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (19,'default_comment_status','open','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (20,'default_ping_status','open','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (21,'default_pingback_flag',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (22,'posts_per_page',10,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (23,'date_format','F j, Y','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (24,'time_format','g:i a','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (25,'links_updated_date_format','F j, Y g:i a','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (26,'comment_moderation',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (27,'moderation_notify',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (28,'permalink_structure','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (29,'rewrite_rules','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (30,'hack_file',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (31,'blog_charset','UTF-8','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (32,'moderation_keys','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (33,'active_plugins','a:8:{i:0;s:51:"google-listings-and-ads/google-listings-and-ads.php";i:1;s:19:"jetpack/jetpack.php";i:2;s:55:"kliken-ads-pixel-for-meta/kliken-ads-pixel-for-meta.php";i:3;s:21:"mailpoet/mailpoet.php";i:4;s:46:"tiktok-for-business/tiktok-for-woocommerce.php";i:5;s:45:"woocommerce-payments/woocommerce-payments.php";i:6;s:45:"woocommerce-services/woocommerce-services.php";i:7;s:27:"woocommerce/woocommerce.php";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (34,'category_base','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (35,'ping_sites','http://rpc.pingomatic.com/','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (36,'comment_max_links',2,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (37,'gmt_offset',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (38,'default_email_category',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (39,'recently_edited','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (40,'template','twentytwentyfive','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (41,'stylesheet','twentytwentyfive','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (42,'comment_registration',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (43,'html_type','text/html','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (44,'use_trackback',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (45,'default_role','subscriber','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (46,'db_version',58975,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (47,'uploads_use_yearmonth_folders',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (48,'upload_path','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (49,'blog_public',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (50,'default_link_category',2,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (51,'show_on_front','posts','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (52,'tag_base','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (53,'show_avatars',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (54,'avatar_rating','G','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (55,'upload_url_path','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (56,'thumbnail_size_w',150,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (57,'thumbnail_size_h',150,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (58,'thumbnail_crop',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (59,'medium_size_w',300,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (60,'medium_size_h',300,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (61,'avatar_default','mystery','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (62,'large_size_w',1024,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (63,'large_size_h',1024,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (64,'image_default_link_type','none','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (65,'image_default_size','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (66,'image_default_align','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (67,'close_comments_for_old_posts',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (68,'close_comments_days_old',14,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (69,'thread_comments',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (70,'thread_comments_depth',5,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (71,'page_comments',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (72,'comments_per_page',50,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (73,'default_comments_page','newest','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (74,'comment_order','asc','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (75,'sticky_posts','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (76,'widget_categories','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (77,'widget_text','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (78,'widget_rss','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (79,'uninstall_plugins','a:1:{s:45:"woocommerce-services/woocommerce-services.php";a:2:{i:0;s:17:"WC_Connect_Loader";i:1;s:16:"plugin_uninstall";}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (80,'timezone_string','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (81,'page_for_posts',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (82,'page_on_front',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (83,'default_post_format',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (84,'link_manager_enabled',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (85,'finished_splitting_shared_terms',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (86,'site_icon',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (87,'medium_large_size_w',768,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (88,'medium_large_size_h',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (89,'wp_page_for_privacy_policy',3,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (90,'show_comments_cookies_opt_in',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (91,'admin_email_lifespan',1754341037,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (92,'disallowed_keys','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (93,'comment_previously_approved',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (94,'auto_plugin_theme_update_emails','a:0:{}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (95,'auto_update_core_dev','enabled','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (96,'auto_update_core_minor','enabled','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (97,'auto_update_core_major','enabled','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (98,'wp_force_deactivated_plugins','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (99,'wp_attachment_pages_enabled',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (100,'initial_db_version',58975,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (101,'wp_user_roles','a:7:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:123:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;s:18:"manage_woocommerce";b:1;s:24:"view_woocommerce_reports";b:1;s:12:"edit_product";b:1;s:12:"read_product";b:1;s:14:"delete_product";b:1;s:13:"edit_products";b:1;s:20:"edit_others_products";b:1;s:16:"publish_products";b:1;s:21:"read_private_products";b:1;s:15:"delete_products";b:1;s:23:"delete_private_products";b:1;s:25:"delete_published_products";b:1;s:22:"delete_others_products";b:1;s:21:"edit_private_products";b:1;s:23:"edit_published_products";b:1;s:20:"manage_product_terms";b:1;s:18:"edit_product_terms";b:1;s:20:"delete_product_terms";b:1;s:20:"assign_product_terms";b:1;s:15:"edit_shop_order";b:1;s:15:"read_shop_order";b:1;s:17:"delete_shop_order";b:1;s:16:"edit_shop_orders";b:1;s:23:"edit_others_shop_orders";b:1;s:19:"publish_shop_orders";b:1;s:24:"read_private_shop_orders";b:1;s:18:"delete_shop_orders";b:1;s:26:"delete_private_shop_orders";b:1;s:28:"delete_published_shop_orders";b:1;s:25:"delete_others_shop_orders";b:1;s:24:"edit_private_shop_orders";b:1;s:26:"edit_published_shop_orders";b:1;s:23:"manage_shop_order_terms";b:1;s:21:"edit_shop_order_terms";b:1;s:23:"delete_shop_order_terms";b:1;s:23:"assign_shop_order_terms";b:1;s:16:"edit_shop_coupon";b:1;s:16:"read_shop_coupon";b:1;s:18:"delete_shop_coupon";b:1;s:17:"edit_shop_coupons";b:1;s:24:"edit_others_shop_coupons";b:1;s:20:"publish_shop_coupons";b:1;s:25:"read_private_shop_coupons";b:1;s:19:"delete_shop_coupons";b:1;s:27:"delete_private_shop_coupons";b:1;s:29:"delete_published_shop_coupons";b:1;s:26:"delete_others_shop_coupons";b:1;s:25:"edit_private_shop_coupons";b:1;s:27:"edit_published_shop_coupons";b:1;s:24:"manage_shop_coupon_terms";b:1;s:22:"edit_shop_coupon_terms";b:1;s:24:"delete_shop_coupon_terms";b:1;s:24:"assign_shop_coupon_terms";b:1;s:28:"mailpoet_access_plugin_admin";b:1;s:24:"mailpoet_manage_settings";b:1;s:24:"mailpoet_manage_features";b:1;s:22:"mailpoet_manage_emails";b:1;s:27:"mailpoet_manage_subscribers";b:1;s:21:"mailpoet_manage_forms";b:1;s:24:"mailpoet_manage_segments";b:1;s:27:"mailpoet_manage_automations";b:1;s:20:"mailpoet_manage_help";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:38:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"le
|
|||
|
|
INSERT INTO `wp_options` VALUES (102,'fresh_site',0,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (103,'user_count',1,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (104,'widget_block','a:6:{i:2;a:1:{s:7:"content";s:19:"<!-- wp:search /-->";}i:3;a:1:{s:7:"content";s:154:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->";}i:4;a:1:{s:7:"content";s:227:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {"displayAvatar":false,"displayDate":false,"displayExcerpt":false} /--></div><!-- /wp:group -->";}i:5;a:1:{s:7:"content";s:146:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->";}i:6;a:1:{s:7:"content";s:150:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->";}s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (105,'sidebars_widgets','a:4:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:3:{i:0;s:7:"block-2";i:1;s:7:"block-3";i:2;s:7:"block-4";}s:9:"sidebar-2";a:2:{i:0;s:7:"block-5";i:1;s:7:"block-6";}s:13:"array_version";i:3;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (106,'cron','a:22:{i:1738792957;a:1:{s:26:"action_scheduler_run_queue";a:1:{s:32:"0d04ed39571b55704c122d726248bbac";a:3:{s:8:"schedule";s:12:"every_minute";s:4:"args";a:1:{i:0;s:7:"WP Cron";}s:8:"interval";i:60;}}}i:1738793143;a:1:{s:32:"woocommerce_cancel_unpaid_orders";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1738793146;a:1:{s:20:"jetpack_clean_nonces";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1738793147;a:1:{s:33:"wc_admin_process_orders_milestone";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1738793288;a:1:{s:29:"wc_admin_unsnooze_admin_notes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1738796240;a:1:{s:34:"wp_privacy_delete_old_export_files";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1738800000;a:1:{s:27:"woocommerce_scheduled_sales";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1738800343;a:2:{s:24:"woocommerce_cleanup_logs";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:31:"woocommerce_cleanup_rate_limits";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1738811143;a:1:{s:28:"woocommerce_cleanup_sessions";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1738832240;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1738832255;a:1:{s:21:"wp_update_user_counts";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1738832747;a:1:{s:45:"woocommerce_marketplace_cron_fetch_promotions";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1738875440;a:2:{s:30:"wp_site_health_scheduled_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}s:32:"recovery_mode_clean_expired_keys";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1738875659;a:2:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:25:"delete_expired_transients";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1738875667;a:1:{s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1738875943;a:1:{s:14:"wc_admin_daily";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1738875946;a:1:{s:20:"jetpack_v2_heartbeat";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1738875953;a:2:{s:33:"woocommerce_cleanup_personal_data";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:30:"woocommerce_tracker_send_event";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:8
|
|||
|
|
INSERT INTO `wp_options` VALUES (107,'widget_pages','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (108,'widget_calendar','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (109,'widget_archives','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (110,'widget_media_audio','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (111,'widget_media_image','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (112,'widget_media_gallery','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (113,'widget_media_video','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (114,'widget_meta','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (115,'widget_search','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (116,'widget_recent-posts','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (117,'widget_recent-comments','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (118,'widget_tag_cloud','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (119,'widget_nav_menu','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (120,'widget_custom_html','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (121,'_transient_wp_core_block_css_files','a:2:{s:7:"version";s:5:"6.7.1";s:5:"files";a:540:{i:0;s:23:"archives/editor-rtl.css";i:1;s:27:"archives/editor-rtl.min.css";i:2;s:19:"archives/editor.css";i:3;s:23:"archives/editor.min.css";i:4;s:22:"archives/style-rtl.css";i:5;s:26:"archives/style-rtl.min.css";i:6;s:18:"archives/style.css";i:7;s:22:"archives/style.min.css";i:8;s:20:"audio/editor-rtl.css";i:9;s:24:"audio/editor-rtl.min.css";i:10;s:16:"audio/editor.css";i:11;s:20:"audio/editor.min.css";i:12;s:19:"audio/style-rtl.css";i:13;s:23:"audio/style-rtl.min.css";i:14;s:15:"audio/style.css";i:15;s:19:"audio/style.min.css";i:16;s:19:"audio/theme-rtl.css";i:17;s:23:"audio/theme-rtl.min.css";i:18;s:15:"audio/theme.css";i:19;s:19:"audio/theme.min.css";i:20;s:21:"avatar/editor-rtl.css";i:21;s:25:"avatar/editor-rtl.min.css";i:22;s:17:"avatar/editor.css";i:23;s:21:"avatar/editor.min.css";i:24;s:20:"avatar/style-rtl.css";i:25;s:24:"avatar/style-rtl.min.css";i:26;s:16:"avatar/style.css";i:27;s:20:"avatar/style.min.css";i:28;s:21:"button/editor-rtl.css";i:29;s:25:"button/editor-rtl.min.css";i:30;s:17:"button/editor.css";i:31;s:21:"button/editor.min.css";i:32;s:20:"button/style-rtl.css";i:33;s:24:"button/style-rtl.min.css";i:34;s:16:"button/style.css";i:35;s:20:"button/style.min.css";i:36;s:22:"buttons/editor-rtl.css";i:37;s:26:"buttons/editor-rtl.min.css";i:38;s:18:"buttons/editor.css";i:39;s:22:"buttons/editor.min.css";i:40;s:21:"buttons/style-rtl.css";i:41;s:25:"buttons/style-rtl.min.css";i:42;s:17:"buttons/style.css";i:43;s:21:"buttons/style.min.css";i:44;s:22:"calendar/style-rtl.css";i:45;s:26:"calendar/style-rtl.min.css";i:46;s:18:"calendar/style.css";i:47;s:22:"calendar/style.min.css";i:48;s:25:"categories/editor-rtl.css";i:49;s:29:"categories/editor-rtl.min.css";i:50;s:21:"categories/editor.css";i:51;s:25:"categories/editor.min.css";i:52;s:24:"categories/style-rtl.css";i:53;s:28:"categories/style-rtl.min.css";i:54;s:20:"categories/style.css";i:55;s:24:"categories/style.min.css";i:56;s:19:"code/editor-rtl.css";i:57;s:23:"code/editor-rtl.min.css";i:58;s:15:"code/editor.css";i:59;s:19:"code/editor.min.css";i:60;s:18:"code/style-rtl.css";i:61;s:22:"code/style-rtl.min.css";i:62;s:14:"code/style.css";i:63;s:18:"code/style.min.css";i:64;s:18:"code/theme-rtl.css";i:65;s:22:"code/theme-rtl.min.css";i:66;s:14:"code/theme.css";i:67;s:18:"code/theme.min.css";i:68;s:22:"columns/editor-rtl.css";i:69;s:26:"columns/editor-rtl.min.css";i:70;s:18:"columns/editor.css";i:71;s:22:"columns/editor.min.css";i:72;s:21:"columns/style-rtl.css";i:73;s:25:"columns/style-rtl.min.css";i:74;s:17:"columns/style.css";i:75;s:21:"columns/style.min.css";i:76;s:33:"comment-author-name/style-rtl.css";i:77;s:37:"comment-author-name/style-rtl.min.css";i:78;s:29:"comment-author-name/style.css";i:79;s:33:"comment-author-name/style.min.css";i:80;s:29:"comment-content/style-rtl.css";i:81;s:33:"comment-content/style-rtl.min.css";i:82;s:25:"comment-content/style.css";i:83;s:29:"comment-content/style.min.css";i:84;s:26:"comment-date/style-rtl.css";i:85;s:30:"comment-date/style-rtl.min.css";i:86;s:22:"comment-date/style.css";i:87;s:26:"comment-date/style.min.css";i:88;s:31:"comment-edit-link/style-rtl.css";i:89;s:35:"comment-edit-link/style-rtl.min.css";i:90;s:27:"comment-edit-link/style.css";i:91;s:31:"comment-edit-link/style.min.css";i:92;s:32:"comment-reply-link/style-rtl.css";i:93;s:36:"comment-reply-link/style-rtl.min.css";i:94;s:28:"comment-reply-link/style.css";i:95;s:32:"comment-reply-link/style.min.css";i:96;s:30:"comment-template/style-rtl.css";i:97;s:34:"comment-template/style-rtl.min.css";i:98;s:26:"comment-template/style.css";i:99;s:30:"comment-template/style.min.css";i:100;s:42:"comments-pagination-numbers/editor-rtl.css";i:101;s:46:"comments-pagination-numbers/editor-rtl.min.css";i:102;s:38:"comments-pagination-numbers/editor.css";i:103;s:42:"comments-pagination-numbers/editor.min.css";i:104;s:34:"comments-pagination/editor-rtl.css";i:105;s:38:"comments-pagination/editor-rtl.min.css";i:106;s:30:"comments-pagination/editor.css";
|
|||
|
|
INSERT INTO `wp_options` VALUES (125,'auth_key','cVZ u2!]cgKXE88_[wKM]Q3ohkR-!JEoF*wo]_X^obtYk4bex/}[ ]HftwJ2V3QK','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (126,'auth_salt','3L@|1b7YE^Q/LqmH^&n@/`>S0S/cC+ZCM/~p-Xl5P.0P381PI=jGMnNZ|h>~jZ{%','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (127,'logged_in_key','E4(b@Gj-^EI*o(F]e-Z%[JFrhcDKkhHHWNiIc{y+J9GfUJg!vu()_R.%b:XZzc{h','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (128,'logged_in_salt','@8WdA0ezg<|%)%;%zNlFS&=]A?K`:RiGsx$g5Hn(LmyD_:=E^]PuP=$IRe[ap(Zc','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (129,'theme_mods_twentytwentyfive','a:1:{s:18:"custom_css_post_id";i:-1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (130,'_transient_wp_styles_for_blocks','a:2:{s:4:"hash";s:32:"d596183f39e89768a0c5cecc079e97a6";s:6:"blocks";a:52:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:0:"";s:12:"core/columns";s:769:":root :where(.wp-block-columns-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-columns-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-flow) > *{margin-block-start: var(--wp--preset--spacing--50);margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-columns-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-constrained) > *{margin-block-start: var(--wp--preset--spacing--50);margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-flex){gap: var(--wp--preset--spacing--50);}:root :where(.wp-block-columns-is-layout-grid){gap: var(--wp--preset--spacing--50);}";s:14:"core/pullquote";s:306:":root :where(.wp-block-pullquote){font-size: var(--wp--preset--font-size--xx-large);font-weight: 300;line-height: 1.2;padding-top: var(--wp--preset--spacing--30);padding-bottom: var(--wp--preset--spacing--30);}:root :where(.wp-block-pullquote p:last-of-type){margin-bottom: var(--wp--preset--spacing--30);}";s:32:"c48738dcb285a3f6ab83acff204fc486";s:106:":root :where(.wp-block-pullquote cite){font-size: var(--wp--preset--font-size--small);font-style: normal;}";s:11:"core/avatar";s:57:":root :where(.wp-block-avatar img){border-radius: 100px;}";s:12:"core/buttons";s:665:":root :where(.wp-block-buttons-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-buttons-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-flow) > *{margin-block-start: 16px;margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > *{margin-block-start: 16px;margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-flex){gap: 16px;}:root :where(.wp-block-buttons-is-layout-grid){gap: 16px;}";s:9:"core/code";s:427:":root :where(.wp-block-code){background-color: var(--wp--preset--color--accent-5);color: var(--wp--preset--color--contrast);font-family: var(--wp--preset--font-family--fira-code);font-size: var(--wp--preset--font-size--medium);font-weight: 300;padding-top: var(--wp--preset--spacing--40);padding-right: var(--wp--preset--spacing--40);padding-bottom: var(--wp--preset--spacing--40);padding-left: var(--wp--preset--spacing--40);}";s:24:"core/comment-author-name";s:169:":root :where(.wp-block-comment-author-name){color: var(--wp--preset--color--accent-4);font-size: var(--wp--preset--font-size--small);margin-top: 5px;margin-bottom: 0px;}";s:32:"c0002c260f8238c4212f3e4c369fc4f7";s:143:":root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button))){color: var(--wp--preset--color--accent-4);text-decoration: none;}";s:32:"1e7c38b45537b325dbbbaec17a301676";s:112:":root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:20:"core/comment-content";s:178:":root :where(.wp-block-comment-content){font-size: var(--wp--preset--font-size--medium);margin-top: var(--wp--preset--spacing--30);margin-bottom: var(--wp--preset--spacing--30);}";s:17:"core/comment-date";s:127:":root :where(.wp-block-comment-date){color: var(--wp--preset--color--contrast);font-size: var(--wp--preset--font-size--small);}";s:32:"c83ca7b3e52884c70f7830c54f99b318";s:114:":root :where(.wp-block-comment-date a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}";s:22:"core/comment-edit-link";s:90:":root :where(.wp-block-comment-edit-link){font-size: var(--wp--preset--font-size--small);}";s:32:"41d70710612536a90e368c12bcb0efea";s:119:":root :where(.wp-block-comment-edit-link a:where(:not(.wp-eleme
|
|||
|
|
INSERT INTO `wp_options` VALUES (131,'nonce_key','<NV~&:ry4SM.t^!2FlhOHB!}TMf1]5lXnhDSYeTW[Vl(p-pG1CYE7M lzs5RjOC%','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (132,'nonce_salt','6U:~Xy:B<y@w0v3H +k >7iX?y]V.*LZ*~%I&HiCH8ynKa+e0;+rK:8%SkJgdyZ9','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (133,'_site_transient_timeout_theme_roots',1738790900,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (134,'_site_transient_theme_roots','a:3:{s:16:"twentytwentyfive";s:7:"/themes";s:16:"twentytwentyfour";s:7:"/themes";s:17:"twentytwentythree";s:7:"/themes";}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (135,'_site_transient_update_themes','O:8:"stdClass":5:{s:12:"last_checked";i:1738790142;s:7:"checked";a:3:{s:16:"twentytwentyfive";s:3:"1.0";s:16:"twentytwentyfour";s:3:"1.3";s:17:"twentytwentythree";s:3:"1.6";}s:8:"response";a:0:{}s:9:"no_update";a:3:{s:16:"twentytwentyfive";a:6:{s:5:"theme";s:16:"twentytwentyfive";s:11:"new_version";s:3:"1.0";s:3:"url";s:46:"https://wordpress.org/themes/twentytwentyfive/";s:7:"package";s:62:"https://downloads.wordpress.org/theme/twentytwentyfive.1.0.zip";s:8:"requires";s:3:"6.7";s:12:"requires_php";s:3:"7.2";}s:16:"twentytwentyfour";a:6:{s:5:"theme";s:16:"twentytwentyfour";s:11:"new_version";s:3:"1.3";s:3:"url";s:46:"https://wordpress.org/themes/twentytwentyfour/";s:7:"package";s:62:"https://downloads.wordpress.org/theme/twentytwentyfour.1.3.zip";s:8:"requires";s:3:"6.4";s:12:"requires_php";s:3:"7.0";}s:17:"twentytwentythree";a:6:{s:5:"theme";s:17:"twentytwentythree";s:11:"new_version";s:3:"1.6";s:3:"url";s:47:"https://wordpress.org/themes/twentytwentythree/";s:7:"package";s:63:"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip";s:8:"requires";s:3:"6.1";s:12:"requires_php";s:3:"5.6";}}s:12:"translations";a:0:{}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (137,'recovery_keys','a:0:{}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (138,'_site_transient_update_core','O:8:"stdClass":4:{s:7:"updates";a:1:{i:0;O:8:"stdClass":10:{s:8:"response";s:6:"latest";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-6.7.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-6.7.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip";s:7:"partial";s:0:"";s:8:"rollback";s:0:"";}s:7:"current";s:5:"6.7.1";s:7:"version";s:5:"6.7.1";s:11:"php_version";s:6:"7.2.24";s:13:"mysql_version";s:5:"5.5.5";s:11:"new_bundled";s:3:"6.7";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1738790133;s:15:"version_checked";s:5:"6.7.1";s:12:"translations";a:0:{}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (143,'finished_updating_comment_type',1,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (144,'_site_transient_timeout_browser_41770e408d453f0e18b6cf535e220c84',1739394065,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (145,'_site_transient_browser_41770e408d453f0e18b6cf535e220c84','a:10:{s:4:"name";s:6:"Chrome";s:7:"version";s:9:"132.0.0.0";s:8:"platform";s:7:"Windows";s:10:"update_url";s:29:"https://www.google.com/chrome";s:7:"img_src";s:43:"http://s.w.org/images/browsers/chrome.png?1";s:11:"img_src_ssl";s:44:"https://s.w.org/images/browsers/chrome.png?1";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;s:6:"mobile";b:0;}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (146,'_site_transient_timeout_php_check_a6ad5a66c38cbd590ff8a399d3bf1882',1739394066,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (147,'_site_transient_php_check_a6ad5a66c38cbd590ff8a399d3bf1882','a:5:{s:19:"recommended_version";s:3:"7.4";s:15:"minimum_version";s:6:"7.2.24";s:12:"is_supported";b:1;s:9:"is_secure";b:1;s:13:"is_acceptable";b:1;}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (149,'can_compress_scripts',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (150,'_site_transient_timeout_community-events-1aecf33ab8525ff212ebdffbb438372e',1738832474,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (151,'_site_transient_community-events-1aecf33ab8525ff212ebdffbb438372e','a:4:{s:9:"sandboxed";b:0;s:5:"error";N;s:8:"location";a:1:{s:2:"ip";s:9:"127.0.0.0";}s:6:"events";a:0:{}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (152,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3',1738832475,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (153,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:6:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:52:"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:8:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:59:"The latest news about WordPress and the WordPress community";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 13 Jan 2025 08:55:30 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:40:"https://wordpress.org/?v=6.8-alpha-59761";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"image";a:1:{i:0;a:6:{s:4:"data";s:11:"\n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:3:"url";a:1:{i:0;a:5:{s:4:"data";s:29:"https://s.w.org/favicon.ico?2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:26:"https://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:5:"width";a:1:{i:0;a:5:{s:4:"data";s:2:"32";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:6:"height";a:1:{i:0;a:5:{s:4:"data";s:2:"32";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:57:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:4:{s:0:"";a:6:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"Joost/Karim Fork";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:43:"https://wordpress.org/news/2025/01/jkpress/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sat, 11 Jan 2025 02:06:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:4:"Meta";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:35:"https://wordpress.org/news/?p=18394";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:319:"Making great software, great product that stands the test of time and not just survives but thrives through monumental technological shifts is incredibly hard. That challenge is part of the reason I love doing it. There is never a dull day, and the reward of seeing the code you wrote used by the most amazing […]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:
|
|||
|
|
INSERT INTO `wp_options` VALUES (154,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3',1738832475,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (155,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3',1738789275,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (156,'_site_transient_wp_plugin_dependencies_plugin_data','a:1:{s:11:"woocommerce";a:35:{s:4:"name";s:11:"WooCommerce";s:4:"slug";s:11:"woocommerce";s:7:"version";s:5:"9.6.1";s:6:"author";s:48:"<a href="https://woocommerce.com">Automattic</a>";s:14:"author_profile";s:41:"https://profiles.wordpress.org/woothemes/";s:12:"contributors";a:49:{s:10:"automattic";a:3:{s:7:"profile";s:42:"https://profiles.wordpress.org/automattic/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/73edc627541112a447e978843cf72f516bdbf6350e7cbac10016c71ab1b8c8a1?s=96&d=monsterid&r=g";s:12:"display_name";s:10:"Automattic";}s:11:"woocommerce";a:3:{s:7:"profile";s:43:"https://profiles.wordpress.org/woocommerce/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/c7781a3c13bcc86b57064b9539ec22da52fd5ef1902fbc020d0a4a8595b14ea0?s=96&d=monsterid&r=g";s:12:"display_name";s:11:"WooCommerce";}s:10:"mikejolley";a:3:{s:7:"profile";s:42:"https://profiles.wordpress.org/mikejolley/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/8295774fc174b6a5b9bd960709949f4de88cd0b8708d711dc5b6676693d41432?s=96&d=monsterid&r=g";s:12:"display_name";s:11:"Mike Jolley";}s:11:"jameskoster";a:3:{s:7:"profile";s:43:"https://profiles.wordpress.org/jameskoster/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/94b5473c03a46cb204f0a868dfe65f8199ef483242814ec1bcaf6770ba90d203?s=96&d=monsterid&r=g";s:12:"display_name";s:12:"James Koster";}s:14:"claudiosanches";a:3:{s:7:"profile";s:46:"https://profiles.wordpress.org/claudiosanches/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/ac91c7d73bb4501567ab3790755bf001d53dac8d1f4311a2480a5fb62dfb180c?s=96&d=monsterid&r=g";s:12:"display_name";s:15:"Claudio Sanches";}s:13:"rodrigosprimo";a:3:{s:7:"profile";s:45:"https://profiles.wordpress.org/rodrigosprimo/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/1dc85457417601db220b14e7fa96c842700fbd1cceecd21d65306c26fffb92cc?s=96&d=monsterid&r=g";s:12:"display_name";s:13:"Rodrigo Primo";}s:15:"peterfabian1000";a:3:{s:7:"profile";s:47:"https://profiles.wordpress.org/peterfabian1000/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/c25372df076206b9fe44dddd7ec6af6ba427d3fe2a457fa301fcb9cf90b23ddd?s=96&d=monsterid&r=g";s:12:"display_name";s:12:"Peter Fabian";}s:7:"vedjain";a:3:{s:7:"profile";s:39:"https://profiles.wordpress.org/vedjain/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/eb19da24784b2f86d310a213b60c903b0a5464a6c725cf5fcabfd274383337c4?s=96&d=monsterid&r=g";s:12:"display_name";s:15:"Vedanshu - a11n";}s:8:"jamosova";a:3:{s:7:"profile";s:40:"https://profiles.wordpress.org/jamosova/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/5822965b924eb5a03e31a6280844976334cc16e7917e9c41e1ce5b6aed5054a8?s=96&d=monsterid&r=g";s:12:"display_name";s:13:"Julia Amosova";}s:16:"obliviousharmony";a:3:{s:7:"profile";s:48:"https://profiles.wordpress.org/obliviousharmony/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/67851e0deeb2c6a7a4c238cf45c0e9694a919e2c5e02706c5852e67c4ad279c9?s=96&d=monsterid&r=g";s:12:"display_name";s:16:"obliviousharmony";}s:9:"konamiman";a:3:{s:7:"profile";s:41:"https://profiles.wordpress.org/konamiman/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/ee97f225bf5be24cd3c3b04990b9fc3dfc67a2c9aaea418ec2bdd32e164ed9b1?s=96&d=monsterid&r=g";s:12:"display_name";s:23:"Néstor Soriano Vilchez";}s:8:"sadowski";a:3:{s:7:"profile";s:40:"https://profiles.wordpress.org/sadowski/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/cee318a6ec06e747df7f70f274da4e0cf4adba60c59e12d660d0f5a6ba78658a?s=96&d=monsterid&r=g";s:12:"display_name";s:8:"sadowski";}s:8:"wpmuguru";a:3:{s:7:"profile";s:40:"https://profiles.wordpress.org/wpmuguru/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/23afb25faac780cb6ec9533b2ac9e5daedf7a1faf444b41db471b9529701f87e?s=96&d=monsterid&r=g";s:12:"display_name";s:11:"Ron Rennick";}s:5:"royho";a:3:{s:7:"profile";s:37:"https://profiles.wordpress.org/royho/";s:6:"avatar";s:120:"https://secure.gravatar.com/avatar/1beda14f19fa93030ba2c66359dc270286820af6c667cdfeb4e87
|
|||
|
|
INSERT INTO `wp_options` VALUES (157,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9',1738832479,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (158,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:6:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:61:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:84:"WPTavern: #155 – Anthony Jackson on Trying to Figure Out His Way in the Tech World";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:48:"https://wptavern.com/?post_type=podcast&p=187096";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:98:"https://wptavern.com/podcast/155-anthony-jackson-on-trying-to-figure-out-his-way-in-the-tech-world";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:53794:"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, trying to figure out a way through the tech world.</p>\n\n\n\n<p>If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wp tavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Anthony Jackson.</p>\n\n\n\n<p>Anthony is a true technophile whose journey has been shaped by a constant pursuit of understanding new technologies.</p>\n\n\n\n<p>From a young age, Anthony’s curiosity about technology laid the foundation for a lifetime of exploration. Starting from modest beginnings in computer repair, he steadily transitioned into the world of WordPress, and the complexities of server management.</p>\n\n\n\n<p>This episode really is a story, the story of trying new things, being creative, and always following curiosity wherever it may lead.</p>\n\n\n\n<p>Anthony talks about his early experiences describing the moment computers first sparked his interest, and the subsequent path he charted in the technology space. Despite hurdles and frustrations, particularly with initial web development and WordPress hosting, his story is a testament to determination and resilience.</p>\n\n\n\n<p>As you’ll hear, Anthony learned the ropes of many technologies from grappling with CSS for website customization, to exploring cloud comput
|
|||
|
|
INSERT INTO `wp_options` VALUES (159,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9',1738832480,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (160,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9',1738789280,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (161,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b',1738832480,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (162,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2025/01/jkpress/''>Joost/Karim Fork</a></li><li><a class=''rsswidget'' href=''https://wordpress.org/news/2025/01/wordpress-themes-need-more-weird-a-call-for-creative-digital-homes/''>WordPress Themes Need More Weird: A Call for Creative Digital Homes</a></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wptavern.com/podcast/155-anthony-jackson-on-trying-to-figure-out-his-way-in-the-tech-world''>WPTavern: #155 – Anthony Jackson on Trying to Figure Out His Way in the Tech World</a></li><li><a class=''rsswidget'' href=''https://gutenbergtimes.com/getting-ready-for-wordcamp-asia-2025-in-manila-philippines/''>Gutenberg Times: Getting ready for WordCamp Asia 2025 in Manila, Philippines</a></li><li><a class=''rsswidget'' href=''https://dothewoo.io/blog/woo-gets-a-fresh-new-look-and-a-bold-product-direction/''>Do The Woo Community: Woo Gets a Fresh New Look and a Bold Product Direction</a></li></ul></div>','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (163,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a',1738800080,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (164,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:"stdClass":100:{s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";i:6787;}s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";i:4872;}s:4:"post";a:3:{s:4:"name";s:4:"post";s:4:"slug";s:4:"post";s:5:"count";i:2799;}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";i:2694;}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";i:2101;}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";i:2000;}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";i:1939;}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";i:1812;}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";i:1595;}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";i:1592;}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";i:1579;}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";i:1546;}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";i:1512;}s:8:"facebook";a:3:{s:4:"name";s:8:"facebook";s:4:"slug";s:8:"facebook";s:5:"count";i:1507;}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";i:1453;}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";i:1318;}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";i:1316;}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";i:1195;}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";i:1179;}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";i:1174;}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";i:1160;}s:10:"e-commerce";a:3:{s:4:"name";s:10:"e-commerce";s:4:"slug";s:10:"e-commerce";s:5:"count";i:1037;}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";i:1029;}s:7:"payment";a:3:{s:4:"name";s:7:"payment";s:4:"slug";s:7:"payment";s:5:"count";i:1007;}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";i:994;}s:5:"block";a:3:{s:4:"name";s:5:"block";s:4:"slug";s:5:"block";s:5:"count";i:969;}s:9:"analytics";a:3:{s:4:"name";s:9:"analytics";s:4:"slug";s:9:"analytics";s:5:"count";i:967;}s:9:"gutenberg";a:3:{s:4:"name";s:9:"gutenberg";s:4:"slug";s:9:"gutenberg";s:5:"count";i:942;}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";i:912;}s:6:"slider";a:3:{s:4:"name";s:6:"slider";s:4:"slug";s:6:"slider";s:5:"count";i:912;}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";i:905;}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";i:903;}s:4:"form";a:3:{s:4:"name";s:4:"form";s:4:"slug";s:4:"form";s:5:"count";i:895;}s:15:"payment-gateway";a:3:{s:4:"name";s:15:"payment gateway";s:4:"slug";s:15:"payment-gateway";s:5:"count";i:866;}s:9:"elementor";a:3:{s:4:"name";s:9:"elementor";s:4:"slug";s:9:"elementor";s:5:"count";i:857;}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";i:823;}s:6:"search";a:3:{s:4:"name";s:6:"search";s:4:"slug";s:6:"search";s:5:"count";i:820;}s:6:"editor";a:3:{s:4:"name";s:6:"editor";s:4:"slug";s:6:"editor";s:5:"count";i:792;}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";i:782;}s:4:"menu";a:3:{s:4:"name";s:4:"menu";s:4:"slug";s:4:"menu";s:5:"count";i:761;}s:12:"contact-form";a:3:{s:4:"name";s:12:"contact form";s:4:"slug";s:12:"contact-form";s:5:"count";i:758;}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";i:755;}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";i:740;}s:5:"embed";a:3:{s:4:"name";s:5:"embed";s:4:"slug";s:5:"embed";s:5:"count";i:724;}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";i:706;}s:8:"category";a:3:{s:4:"name";s:8:"
|
|||
|
|
INSERT INTO `wp_options` VALUES (168,'action_scheduler_hybrid_store_demarkation',6,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (169,'schema-ActionScheduler_StoreSchema','7.0.1738789537','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (170,'schema-ActionScheduler_LoggerSchema','3.0.1738789537','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (173,'woocommerce_newly_installed','no','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (174,'woocommerce_schema_version',920,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (175,'woocommerce_store_address','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (176,'woocommerce_store_address_2','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (177,'woocommerce_store_city','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (178,'woocommerce_default_country','US:CA','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (179,'woocommerce_store_postcode','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (180,'woocommerce_allowed_countries','all','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (181,'woocommerce_all_except_countries','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (182,'woocommerce_specific_allowed_countries','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (183,'woocommerce_ship_to_countries','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (184,'woocommerce_specific_ship_to_countries','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (185,'woocommerce_default_customer_address','base','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (186,'woocommerce_calc_taxes','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (187,'woocommerce_enable_coupons','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (188,'woocommerce_calc_discounts_sequentially','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (189,'woocommerce_currency','NGN','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (190,'woocommerce_currency_pos','left','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (191,'woocommerce_price_thousand_sep',',','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (192,'woocommerce_price_decimal_sep','.','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (193,'woocommerce_price_num_decimals',2,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (194,'woocommerce_shop_page_id',7,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (195,'woocommerce_cart_redirect_after_add','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (196,'woocommerce_enable_ajax_add_to_cart','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (197,'woocommerce_placeholder_image',6,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (198,'woocommerce_weight_unit','kg','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (199,'woocommerce_dimension_unit','cm','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (200,'woocommerce_enable_reviews','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (201,'woocommerce_review_rating_verification_label','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (202,'woocommerce_review_rating_verification_required','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (203,'woocommerce_enable_review_rating','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (204,'woocommerce_review_rating_required','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (205,'woocommerce_manage_stock','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (206,'woocommerce_hold_stock_minutes',60,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (207,'woocommerce_notify_low_stock','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (208,'woocommerce_notify_no_stock','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (209,'woocommerce_stock_email_recipient','admin@localhost.com','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (210,'woocommerce_notify_low_stock_amount',2,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (211,'woocommerce_notify_no_stock_amount',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (212,'woocommerce_hide_out_of_stock_items','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (213,'woocommerce_stock_format','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (214,'woocommerce_file_download_method','force','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (215,'woocommerce_downloads_redirect_fallback_allowed','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (216,'woocommerce_downloads_require_login','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (217,'woocommerce_downloads_grant_access_after_payment','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (218,'woocommerce_downloads_deliver_inline','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (219,'woocommerce_downloads_add_hash_to_filename','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (220,'woocommerce_downloads_count_partial','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (222,'woocommerce_attribute_lookup_direct_updates','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (223,'woocommerce_attribute_lookup_optimized_updates','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (224,'woocommerce_product_match_featured_image_by_sku','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (225,'woocommerce_prices_include_tax','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (226,'woocommerce_tax_based_on','shipping','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (227,'woocommerce_shipping_tax_class','inherit','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (228,'woocommerce_tax_round_at_subtotal','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (229,'woocommerce_tax_classes','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (230,'woocommerce_tax_display_shop','excl','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (231,'woocommerce_tax_display_cart','excl','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (232,'woocommerce_price_display_suffix','','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (233,'woocommerce_tax_total_display','itemized','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (234,'woocommerce_enable_shipping_calc','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (235,'woocommerce_shipping_cost_requires_address','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (236,'woocommerce_ship_to_destination','billing','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (237,'woocommerce_shipping_debug_mode','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (238,'woocommerce_enable_guest_checkout','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (239,'woocommerce_enable_checkout_login_reminder','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (240,'woocommerce_enable_delayed_account_creation','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (241,'woocommerce_enable_signup_and_login_from_checkout','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (242,'woocommerce_enable_myaccount_registration','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (243,'woocommerce_registration_generate_password','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (244,'woocommerce_registration_generate_username','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (245,'woocommerce_erasure_request_removes_order_data','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (246,'woocommerce_erasure_request_removes_download_data','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (247,'woocommerce_allow_bulk_remove_personal_data','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (248,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (249,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (250,'woocommerce_delete_inactive_accounts','a:2:{s:6:"number";s:0:"";s:4:"unit";s:6:"months";}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (251,'woocommerce_trash_pending_orders','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (252,'woocommerce_trash_failed_orders','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (253,'woocommerce_trash_cancelled_orders','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (254,'woocommerce_anonymize_completed_orders','a:2:{s:6:"number";s:0:"";s:4:"unit";s:6:"months";}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (255,'woocommerce_email_from_name','Php assessment','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (256,'woocommerce_email_from_address','admin@localhost.com','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (257,'woocommerce_email_header_image','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (258,'woocommerce_email_base_color','#720eec','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (259,'woocommerce_email_background_color','#f7f7f7','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (260,'woocommerce_email_body_background_color','#ffffff','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (261,'woocommerce_email_text_color','#3c3c3c','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (262,'woocommerce_email_footer_text','{site_title} — Built with {WooCommerce}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (263,'woocommerce_email_footer_text_color','#3c3c3c','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (264,'woocommerce_merchant_email_notifications','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (265,'woocommerce_cart_page_id',8,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (266,'woocommerce_checkout_page_id',9,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (267,'woocommerce_myaccount_page_id',10,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (268,'woocommerce_terms_page_id','','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (269,'woocommerce_force_ssl_checkout','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (270,'woocommerce_unforce_ssl_checkout','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (271,'woocommerce_checkout_pay_endpoint','order-pay','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (272,'woocommerce_checkout_order_received_endpoint','order-received','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (273,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (274,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (275,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (276,'woocommerce_myaccount_orders_endpoint','orders','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (277,'woocommerce_myaccount_view_order_endpoint','view-order','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (278,'woocommerce_myaccount_downloads_endpoint','downloads','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (279,'woocommerce_myaccount_edit_account_endpoint','edit-account','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (280,'woocommerce_myaccount_edit_address_endpoint','edit-address','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (281,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (282,'woocommerce_myaccount_lost_password_endpoint','lost-password','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (283,'woocommerce_logout_endpoint','customer-logout','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (284,'woocommerce_api_enabled','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (285,'woocommerce_allow_tracking','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (286,'woocommerce_show_marketplace_suggestions','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (287,'woocommerce_custom_orders_table_enabled','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (288,'woocommerce_analytics_enabled','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (289,'woocommerce_feature_rate_limit_checkout_enabled','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (290,'woocommerce_feature_order_attribution_enabled','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (291,'woocommerce_feature_site_visibility_badge_enabled','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (292,'woocommerce_feature_remote_logging_enabled','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (293,'woocommerce_feature_product_block_editor_enabled','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (294,'woocommerce_hpos_fts_index_enabled','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (295,'woocommerce_feature_email_improvements_enabled','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (296,'woocommerce_feature_cost_of_goods_sold_enabled','no','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (297,'woocommerce_single_image_width',600,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (298,'woocommerce_thumbnail_image_width',300,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (299,'woocommerce_checkout_highlight_required_fields','yes','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (300,'woocommerce_demo_store','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (301,'wc_downloads_approved_directories_mode','enabled','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (302,'woocommerce_permalinks','a:5:{s:12:"product_base";s:7:"product";s:13:"category_base";s:16:"product-category";s:8:"tag_base";s:11:"product-tag";s:14:"attribute_base";s:0:"";s:22:"use_verbose_page_rules";b:0;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (303,'current_theme_supports_woocommerce','yes','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (304,'woocommerce_queue_flush_rewrite_rules','no','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (305,'_transient_wc_attribute_taxonomies','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (306,'product_cat_children','a:0:{}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (307,'default_product_cat',15,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (309,'woocommerce_refund_returns_page_id',11,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (312,'woocommerce_paypal_settings','a:23:{s:7:"enabled";s:2:"no";s:5:"title";s:6:"PayPal";s:11:"description";s:85:"Pay via PayPal; you can pay with your credit card if you don''t have a PayPal account.";s:5:"email";s:19:"admin@localhost.com";s:8:"advanced";s:0:"";s:8:"testmode";s:2:"no";s:5:"debug";s:2:"no";s:16:"ipn_notification";s:3:"yes";s:14:"receiver_email";s:19:"admin@localhost.com";s:14:"identity_token";s:0:"";s:14:"invoice_prefix";s:3:"WC-";s:13:"send_shipping";s:3:"yes";s:16:"address_override";s:2:"no";s:13:"paymentaction";s:4:"sale";s:9:"image_url";s:0:"";s:11:"api_details";s:0:"";s:12:"api_username";s:0:"";s:12:"api_password";s:0:"";s:13:"api_signature";s:0:"";s:20:"sandbox_api_username";s:0:"";s:20:"sandbox_api_password";s:0:"";s:21:"sandbox_api_signature";s:0:"";s:12:"_should_load";s:2:"no";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (313,'woocommerce_version','9.6.1','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (314,'woocommerce_db_version','9.6.1','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (315,'woocommerce_store_id','a0c6f7ff-5e4e-40ae-86f4-e6f1b320f5bf','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (316,'woocommerce_admin_install_timestamp',1738789545,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (317,'woocommerce_inbox_variant_assignment',3,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (318,'woocommerce_remote_variant_assignment',63,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (319,'woocommerce_attribute_lookup_enabled','no','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (320,'_transient_timeout__woocommerce_upload_directory_status',1738875945,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (321,'_transient__woocommerce_upload_directory_status','protected','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (323,'recently_activated','a:0:{}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (324,'_transient_jetpack_autoloader_plugin_paths','a:4:{i:0;s:25:"{{WP_PLUGIN_DIR}}/jetpack";i:1;s:29:"{{WP_PLUGIN_DIR}}/woocommerce";i:2;s:38:"{{WP_PLUGIN_DIR}}/woocommerce-payments";i:3;s:38:"{{WP_PLUGIN_DIR}}/woocommerce-services";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (325,'action_scheduler_lock_async-request-runner','67a3dc32835907.40539237|1738792046','no');
|
|||
|
|
INSERT INTO `wp_options` VALUES (326,'woocommerce_admin_notices','a:1:{i:0;s:20:"no_secure_connection";}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (327,'wc_blocks_version','11.8.0-dev','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (328,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:"database_prefix";s:32:"vOv3N5NLi5sg62cSTc0ZUJrG9IDf0BiX";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (329,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (330,'widget_woocommerce_widget_cart','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (331,'widget_woocommerce_layered_nav_filters','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (332,'widget_woocommerce_layered_nav','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (333,'widget_woocommerce_price_filter','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (334,'widget_woocommerce_product_categories','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (335,'widget_woocommerce_product_search','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (336,'widget_woocommerce_product_tag_cloud','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (337,'widget_woocommerce_products','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (338,'widget_woocommerce_recently_viewed_products','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (339,'widget_woocommerce_top_rated_products','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (340,'widget_woocommerce_recent_reviews','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (341,'widget_woocommerce_rating_filter','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (342,'widget_wc_brands_brand_description','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (343,'widget_woocommerce_brand_nav','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (344,'widget_wc_brands_brand_thumbnails','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (345,'_transient_timeout_as-post-store-dependencies-met',1738875947,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (346,'_transient_as-post-store-dependencies-met','yes','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (347,'_site_transient_timeout_woocommerce_blocks_patterns',1741381547,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (348,'_site_transient_woocommerce_blocks_patterns','a:2:{s:7:"version";s:5:"9.6.1";s:8:"patterns";a:40:{i:0;a:11:{s:5:"title";s:6:"Banner";s:4:"slug";s:25:"woocommerce-blocks/banner";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:29:"WooCommerce, featured-selling";s:8:"keywords";s:0:"";s:10:"blockTypes";s:0:"";s:8:"inserter";s:0:"";s:11:"featureFlag";s:0:"";s:13:"templateTypes";s:0:"";s:6:"source";s:64:"/var/www/html/wp-content/plugins/woocommerce/patterns/banner.php";}i:1;a:11:{s:5:"title";s:23:"Coming Soon Entire Site";s:4:"slug";s:35:"woocommerce/coming-soon-entire-site";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:11:"WooCommerce";s:8:"keywords";s:0:"";s:10:"blockTypes";s:0:"";s:8:"inserter";s:5:"false";s:11:"featureFlag";s:17:"launch-your-store";s:13:"templateTypes";s:0:"";s:6:"source";s:81:"/var/www/html/wp-content/plugins/woocommerce/patterns/coming-soon-entire-site.php";}i:2;a:11:{s:5:"title";s:22:"Coming Soon Store Only";s:4:"slug";s:34:"woocommerce/coming-soon-store-only";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:11:"WooCommerce";s:8:"keywords";s:0:"";s:10:"blockTypes";s:0:"";s:8:"inserter";s:5:"false";s:11:"featureFlag";s:17:"launch-your-store";s:13:"templateTypes";s:0:"";s:6:"source";s:80:"/var/www/html/wp-content/plugins/woocommerce/patterns/coming-soon-store-only.php";}i:3;a:11:{s:5:"title";s:11:"Coming Soon";s:4:"slug";s:23:"woocommerce/coming-soon";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:11:"WooCommerce";s:8:"keywords";s:0:"";s:10:"blockTypes";s:0:"";s:8:"inserter";s:5:"false";s:11:"featureFlag";s:17:"launch-your-store";s:13:"templateTypes";s:0:"";s:6:"source";s:69:"/var/www/html/wp-content/plugins/woocommerce/patterns/coming-soon.php";}i:4;a:11:{s:5:"title";s:29:"Content right with image left";s:4:"slug";s:48:"woocommerce-blocks/content-right-with-image-left";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:18:"WooCommerce, About";s:8:"keywords";s:0:"";s:10:"blockTypes";s:0:"";s:8:"inserter";s:0:"";s:11:"featureFlag";s:0:"";s:13:"templateTypes";s:0:"";s:6:"source";s:82:"/var/www/html/wp-content/plugins/woocommerce/patterns/content-right-image-left.php";}i:5;a:11:{s:5:"title";s:29:"Featured Category Cover Image";s:4:"slug";s:48:"woocommerce-blocks/featured-category-cover-image";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:18:"WooCommerce, Intro";s:8:"keywords";s:0:"";s:10:"blockTypes";s:0:"";s:8:"inserter";s:0:"";s:11:"featureFlag";s:0:"";s:13:"templateTypes";s:0:"";s:6:"source";s:87:"/var/www/html/wp-content/plugins/woocommerce/patterns/featured-category-cover-image.php";}i:6;a:11:{s:5:"title";s:24:"Featured Category Triple";s:4:"slug";s:43:"woocommerce-blocks/featured-category-triple";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:29:"WooCommerce, featured-selling";s:8:"keywords";s:0:"";s:10:"blockTypes";s:0:"";s:8:"inserter";s:0:"";s:11:"featureFlag";s:0:"";s:13:"templateTypes";s:0:"";s:6:"source";s:82:"/var/www/html/wp-content/plugins/woocommerce/patterns/featured-category-triple.php";}i:7;a:11:{s:5:"title";s:15:"Product Filters";s:4:"slug";s:34:"woocommerce-blocks/product-filters";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:11:"WooCommerce";s:8:"keywords";s:0:"";s:10:"blockTypes";s:108:"woocommerce/active-filters, woocommerce/price-filter, woocommerce/attribute-filter, woocommerce/stock-filter";s:8:"inserter";s:0:"";s:11:"featureFlag";s:0:"";s:13:"templateTypes";s:0:"";s:6:"source";s:65:"/var/www/html/wp-content/plugins/woocommerce/patterns/filters.php";}i:8;a:11:{s:5:"title";s:12:"Large Footer";s:4:"slug";s:31:"woocommerce-blocks/footer-large";s:11:"description";s:0:"";s:13:"viewportWidth";s:0:"";s:10:"categories";s:11:"WooCommerce";s:8:"keywords";s:0:"";s:10:"blockTypes";s:25:"core/template-part/footer";s:8:"inserter";s:0:"";s:11:"featureFlag";s:0:"";s:13:"templateTypes";s:0:"";s:6:"source";s:70:"/var/www/html/wp-content/plugins/woocomme
|
|||
|
|
INSERT INTO `wp_options` VALUES (350,'_transient_timeout_woocommerce_admin_pes_incentive_woopayments_store_has_orders',1738811151,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (351,'_transient_woocommerce_admin_pes_incentive_woopayments_store_has_orders','no','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (352,'woocommerce_admin_pes_incentive_woopayments_store_had_woopayments','no','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (353,'_transient_wc_count_comments','O:8:"stdClass":7:{s:14:"total_comments";i:1;s:3:"all";i:1;s:8:"approved";s:1:"1";s:9:"moderated";i:0;s:4:"spam";i:0;s:5:"trash";i:0;s:12:"post-trashed";i:0;}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (354,'_transient_timeout_woocommerce_admin_pes_incentive_woopayments_cache',1738962353,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (355,'_transient_woocommerce_admin_pes_incentive_woopayments_cache','a:3:{s:10:"incentives";a:2:{i:0;a:8:{s:2:"id";s:32:"wcpay-promo-2023-action-discount";s:8:"promo_id";s:32:"wcpay-promo-2023-action-discount";s:4:"type";s:12:"welcome_page";s:9:"cta_label";s:28:"Install WooPayments for free";s:6:"tc_url";s:75:"https://woocommerce.com/terms-conditions/woopayments-action-promotion-2023/";s:11:"description";s:117:"<b>Save 10%</b> on payment processing costs in your <b>first three months</b> when you sign up for WooPayments today.";s:19:"task_header_content";s:256:"Power your payments with a simple, all-in-one option and <b>save 10% on payment processing costs in your first three months</b>. See <a href="https://woocommerce.com/terms-conditions/woopayments-action-promotion-2023/">Terms and Conditions</a> for details.";s:10:"task_badge";s:35:"Save 10% on payment processing fees";}i:1;a:9:{s:2:"id";s:54:"wcpay-promo-2023-action-discount__wc_settings_payments";s:8:"promo_id";s:32:"wcpay-promo-2023-action-discount";s:4:"type";s:20:"wc_settings_payments";s:11:"description";s:161:"Use the native payments solution built and supported by Woo to accept online and in-person payments, track revenue, and handle all payment activity in one place.";s:9:"cta_label";s:8:"Save 10%";s:6:"tc_url";s:75:"https://woocommerce.com/terms-conditions/woopayments-action-promotion-2023/";s:5:"title";s:88:"Save 10% on processing fees during your first 3 months when you sign up for WooPayments.";s:17:"short_description";s:88:"Save 10% on processing fees during your first 3 months when you sign up for WooPayments.";s:5:"badge";s:27:"Save 10% on processing fees";}}s:12:"context_hash";s:32:"6d37bc19d822af681f896b21065134c7";s:9:"timestamp";i:1738789553;}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (356,'woocommerce_hooked_blocks_version','9.6.1','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (357,'woocommerce_custom_orders_table_created','yes','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (358,'woocommerce_coming_soon','no','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (359,'woocommerce_store_pages_only','no','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (360,'woocommerce_initial_installed_version','9.6.1','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (361,'_transient_timeout_woocommerce_blocks_asset_api_script_data',1741381885,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (362,'_transient_woocommerce_blocks_asset_api_script_data','{"script_data":{"assets\\/client\\/blocks\\/wc-settings.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-settings.js","version":"eb5ac71a827c4c81fed8","dependencies":["wp-hooks","wp-polyfill"]},"assets\\/client\\/blocks\\/wc-types.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-types.js","version":"bda84b1be3361607d04a","dependencies":["wp-polyfill"]},"assets\\/client\\/blocks\\/wc-blocks-middleware.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-middleware.js","version":"e3f189e7e5007fb14fff","dependencies":["wp-api-fetch","wp-polyfill","wp-url"]},"assets\\/client\\/blocks\\/wc-blocks-data.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-data.js","version":"ec9fb81524f7793b1d14","dependencies":["wc-blocks-registry","wc-settings","wc-types","wp-api-fetch","wp-data","wp-data-controls","wp-deprecated","wp-dom","wp-element","wp-hooks","wp-html-entities","wp-i18n","wp-is-shallow-equal","wp-notices","wp-polyfill","wp-url"]},"assets\\/client\\/blocks\\/wc-blocks-vendors.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-vendors.js","version":"23f9dca9a985db803794","dependencies":["wp-polyfill"]},"assets\\/client\\/blocks\\/wc-blocks-registry.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-registry.js","version":"eb38a1eeccda913f6add","dependencies":["react","wc-settings","wp-data","wp-deprecated","wp-element","wp-hooks","wp-polyfill"]},"assets\\/client\\/blocks\\/wc-blocks.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks.js","version":"1455e306f78060093a52","dependencies":["react","wc-types","wp-block-editor","wp-blocks","wp-components","wp-compose","wp-data","wp-dom-ready","wp-element","wp-hooks","wp-i18n","wp-polyfill","wp-primitives","wp-url"]},"assets\\/client\\/blocks\\/wc-blocks-shared-context.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-context.js","version":"c30879d642ea05d65f5a","dependencies":["react","wp-element","wp-polyfill"]},"assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-shared-hocs.js","version":"cba59eca47d9101980bf","dependencies":["react","wc-blocks-data-store","wc-blocks-shared-context","wc-types","wp-data","wp-element","wp-is-shallow-equal","wp-polyfill"]},"assets\\/client\\/blocks\\/price-format.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/price-format.js","version":"a3e67bb0b09f566d5bdf","dependencies":["wc-settings","wp-html-entities","wp-polyfill"]},"assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-blocks-frontend-vendors-frontend.js","version":"82cd8023ff7d2088b834","dependencies":["wp-polyfill"]},"assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-vendors-frontend.js","version":"8b934c55748661cd53da","dependencies":["wp-polyfill"]},"assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/wc-cart-checkout-base-frontend.js","version":"b594dc8602aaa72e7a30","dependencies":["wp-polyfill"]},"assets\\/client\\/blocks\\/blocks-checkout.js":{"src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/woocommerce\\/assets\\/client\\/blocks\\/blocks-checkout.js","version":"b00178cb31b1aeee
|
|||
|
|
INSERT INTO `wp_options` VALUES (365,'wc_blocks_db_schema_version',260,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (366,'wc_remote_inbox_notifications_stored_state','O:8:"stdClass":2:{s:22:"there_were_no_products";b:1;s:22:"there_are_now_products";b:0;}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (367,'_transient_timeout_action_scheduler_last_pastdue_actions_check',1738811157,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (368,'_transient_action_scheduler_last_pastdue_actions_check',1738789557,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (369,'_transient_timeout_wc_tracks_blog_details',1738875957,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (370,'_transient_wc_tracks_blog_details','a:6:{s:3:"url";s:21:"http://localhost:8882";s:9:"blog_lang";s:5:"en_US";s:7:"blog_id";b:0;s:8:"store_id";s:36:"a0c6f7ff-5e4e-40ae-86f4-e6f1b320f5bf";s:14:"products_count";i:0;s:10:"wc_version";s:5:"9.6.1";}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (371,'woocommerce_checkout_phone_field','optional','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (372,'woocommerce_checkout_company_field','hidden','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (373,'woocommerce_checkout_address_2_field','optional','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (374,'_transient_woocommerce_reports-transient-version',1738789664,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (375,'_transient_timeout_orders-all-statuses',1739394684,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (376,'_transient_orders-all-statuses','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";a:0:{}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (379,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs',1739394363,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (380,'_transient_woocommerce_admin_remote_free_extensions_specs','a:1:{s:5:"en_US";a:0:{}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (383,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs',1739394381,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (384,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:1:{s:5:"en_US";a:0:{}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (385,'jetpack_options','a:5:{s:14:"last_heartbeat";i:1738789581;s:28:"fallback_no_verify_ssl_certs";i:0;s:9:"time_diff";i:1;s:7:"version";s:15:"14.3:1738790147";s:11:"old_version";s:15:"14.3:1738790147";}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (388,'_transient_timeout_woocommerce_marketplace_promotions_v2',1738875991,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (389,'_transient_woocommerce_marketplace_promotions_v2','a:0:{}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (391,'woocommerce_onboarding_profile_progress','a:1:{s:29:"core_profiler_completed_steps";a:4:{s:12:"intro-opt-in";a:1:{s:12:"completed_at";s:20:"2025-02-05T21:07:03Z";}s:12:"user-profile";a:1:{s:12:"completed_at";s:20:"2025-02-05T21:07:11Z";}s:13:"business-info";a:1:{s:12:"completed_at";s:20:"2025-02-05T21:07:36Z";}s:7:"plugins";a:1:{s:12:"completed_at";s:20:"2025-02-05T21:11:15Z";}}}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (392,'_transient_timeout_last_fetch_patterns_request',1738793225,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (393,'_transient_last_fetch_patterns_request',1738789625,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (395,'woocommerce_tracker_last_send',1738789631,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (396,'wc_has_tracked_default_theme',1,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (397,'woocommerce_onboarding_profile','a:7:{s:15:"business_choice";s:28:"im_just_starting_my_business";s:8:"industry";a:1:{i:0;s:24:"clothing_and_accessories";}s:18:"is_agree_marketing";b:0;s:11:"store_email";s:19:"admin@localhost.com";s:20:"is_store_country_set";b:1;s:9:"completed";b:1;s:19:"business_extensions";a:2:{i:0;s:19:"tiktok-for-business";i:1;s:25:"kliken-ads-pixel-for-meta";}}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (398,'_transient_timeout_wc_term_counts',1741381639,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (399,'_transient_wc_term_counts','a:0:{}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (403,'_site_transient_timeout_wp_font_collection_url_https://s.w.org/images/fonts/wp-6.7/collections/google-fonts-with-preview.json',1738876212,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (404,'_site_transient_wp_font_collection_url_https://s.w.org/images/fonts/wp-6.7/collections/google-fonts-with-preview.json','a:1:{s:13:"font_families";a:1726:{i:0;a:2:{s:20:"font_family_settings";a:5:{s:4:"name";s:7:"ABeeZee";s:10:"fontFamily";s:19:"ABeeZee, sans-serif";s:4:"slug";s:7:"abeezee";s:8:"fontFace";a:2:{i:0;a:5:{s:3:"src";s:73:"https://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6teukbcHCpE.woff2";s:10:"fontWeight";s:3:"400";s:9:"fontStyle";s:6:"normal";s:10:"fontFamily";s:7:"ABeeZee";s:7:"preview";s:75:"https://s.w.org/images/fonts/wp-6.7/previews/abeezee/abeezee-400-normal.svg";}i:1;a:5:{s:3:"src";s:76:"https://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCkkJUCGpG-GQ.woff2";s:10:"fontWeight";s:3:"400";s:9:"fontStyle";s:6:"italic";s:10:"fontFamily";s:7:"ABeeZee";s:7:"preview";s:75:"https://s.w.org/images/fonts/wp-6.7/previews/abeezee/abeezee-400-italic.svg";}}s:7:"preview";s:64:"https://s.w.org/images/fonts/wp-6.7/previews/abeezee/abeezee.svg";}s:10:"categories";a:1:{i:0;s:10:"sans-serif";}}i:1;a:2:{s:20:"font_family_settings";a:5:{s:4:"name";s:13:"ADLaM Display";s:10:"fontFamily";s:26:""ADLaM Display", system-ui";s:4:"slug";s:13:"adlam-display";s:8:"fontFace";a:1:{i:0;a:5:{s:3:"src";s:85:"https://fonts.gstatic.com/s/adlamdisplay/v1/KFOhCnGXkPOLlhx6jD8_b1ZECsTYkYBPY3o.woff2";s:10:"fontWeight";s:3:"400";s:9:"fontStyle";s:6:"normal";s:10:"fontFamily";s:13:"ADLaM Display";s:7:"preview";s:87:"https://s.w.org/images/fonts/wp-6.7/previews/adlam-display/adlam-display-400-normal.svg";}}s:7:"preview";s:76:"https://s.w.org/images/fonts/wp-6.7/previews/adlam-display/adlam-display.svg";}s:10:"categories";a:1:{i:0;s:7:"display";}}i:2;a:2:{s:20:"font_family_settings";a:5:{s:4:"name";s:11:"AR One Sans";s:10:"fontFamily";s:25:""AR One Sans", sans-serif";s:4:"slug";s:11:"ar-one-sans";s:8:"fontFace";a:4:{i:0;a:5:{s:3:"src";s:114:"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWn_9DWg3no5mBF4.woff2";s:10:"fontWeight";s:3:"400";s:9:"fontStyle";s:6:"normal";s:10:"fontFamily";s:11:"AR One Sans";s:7:"preview";s:83:"https://s.w.org/images/fonts/wp-6.7/previews/ar-one-sans/ar-one-sans-400-normal.svg";}i:1;a:5:{s:3:"src";s:114:"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWk39DWg3no5mBF4.woff2";s:10:"fontWeight";s:3:"500";s:9:"fontStyle";s:6:"normal";s:10:"fontFamily";s:11:"AR One Sans";s:7:"preview";s:83:"https://s.w.org/images/fonts/wp-6.7/previews/ar-one-sans/ar-one-sans-500-normal.svg";}i:2;a:5:{s:3:"src";s:114:"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWqH6DWg3no5mBF4.woff2";s:10:"fontWeight";s:3:"600";s:9:"fontStyle";s:6:"normal";s:10:"fontFamily";s:11:"AR One Sans";s:7:"preview";s:83:"https://s.w.org/images/fonts/wp-6.7/previews/ar-one-sans/ar-one-sans-600-normal.svg";}i:3;a:5:{s:3:"src";s:114:"https://fonts.gstatic.com/s/aronesans/v4/TUZezwhrmbFp0Srr_tH6fv6RcUejHO_u7GF5aXfv-U2QzBLF6gslWpj6DWg3no5mBF4.woff2";s:10:"fontWeight";s:3:"700";s:9:"fontStyle";s:6:"normal";s:10:"fontFamily";s:11:"AR One Sans";s:7:"preview";s:83:"https://s.w.org/images/fonts/wp-6.7/previews/ar-one-sans/ar-one-sans-700-normal.svg";}}s:7:"preview";s:72:"https://s.w.org/images/fonts/wp-6.7/previews/ar-one-sans/ar-one-sans.svg";}s:10:"categories";a:1:{i:0;s:10:"sans-serif";}}i:3;a:2:{s:20:"font_family_settings";a:5:{s:4:"name";s:4:"Abel";s:10:"fontFamily";s:16:"Abel, sans-serif";s:4:"slug";s:4:"abel";s:8:"fontFace";a:1:{i:0;a:5:{s:3:"src";s:66:"https://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6V1LPJp6qGI.woff2";s:10:"fontWeight";s:3:"400";s:9:"fontStyle";s:6:"normal";s:10:"fontFamily";s:4:"Abel";s:7:"preview";s:69:"https://s.w.org/images/fonts/wp-6.7/previews/abel/abel-400-normal.svg";}}s:7:"preview";s:58:"https://s.w.org/images/fonts/wp-6.7/previews/abel/abel.svg";}s:10:"categories";a:1:{i:0;s:10:"sans-serif";}}i:4;a:2:{s:20:"font_family_settings";a:5:{s:4:"name";s:12:"Abhaya Libre";s:10:"fontFamily";s:21:""Abhaya Libre", serif";s:4:"slug";s:12:"abhaya-libre";s:8:"fontFac
|
|||
|
|
INSERT INTO `wp_options` VALUES (405,'jetpack_tos_agreed',1,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (406,'jetpack_secrets','a:2:{s:18:"jetpack_register_1";a:3:{s:8:"secret_1";s:32:"BUVZDQSMVj6BmeQaWpGtqF8K6D6BF4qx";s:8:"secret_2";s:32:"H3lUmxKBz6UnjUBA1sX3kUtGo0jzLhtk";s:3:"exp";i:1738790443;}s:19:"jetpack_authorize_1";a:3:{s:8:"secret_1";s:32:"0thGwG3qlmHK155NXvJp17BkYeIGXQav";s:8:"secret_2";s:32:"RLComwAHbBdoAOefiYrxi1p2O6Dp0s55";s:3:"exp";i:1738797044;}}','no');
|
|||
|
|
INSERT INTO `wp_options` VALUES (407,'jetpack_sync_https_history_site_url','a:2:{i:0;s:4:"http";i:1;s:4:"http";}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (408,'jetpack_sync_https_history_home_url','a:2:{i:0;s:4:"http";i:1;s:4:"http";}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (409,'_transient_jetpack_assumed_site_creation_date','2025-02-05 20:57:18','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (410,'_transient_timeout__woocommerce_helper_subscriptions',1738790748,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (411,'_transient__woocommerce_helper_subscriptions','a:0:{}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (413,'tt4b_version','1.3.0','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (414,'tt4b_last_product_sync_time',1,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (415,'tt4b_external_business_id','tt4b_woocommerce_67a3d3dba8b38','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (416,'tt4b_eligibility_page_total',0,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (417,'tt4b_mapi_total_gmv',0,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (418,'tt4b_mapi_total_orders',0,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (419,'tt4b_mapi_tenure',0,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (420,'tt4b_product_delete_queue','a:0:{}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (421,'tt4b_product_restore_queue','a:0:{}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (422,'tt4b_app_id',7468045555957317650,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (423,'tt4b_secret','388d7781ecc8dc1d33966b083031d733589a860a','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (424,'tt4b_external_data_key','65a83b46-0e8f-43ed-9acb-494db146f0ae','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (426,'jetpack_connection_active_plugins','a:4:{s:7:"jetpack";a:1:{s:4:"name";s:7:"Jetpack";}s:20:"woocommerce-payments";a:1:{s:4:"name";s:11:"WooPayments";}s:20:"woocommerce-services";a:1:{s:4:"name";s:26:"WooCommerce Shipping & Tax";}s:11:"woocommerce";a:1:{s:4:"name";s:11:"WooCommerce";}}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (428,'kk_fb_wc_settings','a:4:{s:10:"account_id";i:0;s:9:"app_token";s:0:"";s:14:"facebook_token";s:0:"";s:12:"google_token";s:0:"";}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (429,'_site_transient_timeout_kk_fb_wc_welcome_message',1741381860,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (430,'_site_transient_kk_fb_wc_welcome_message',1,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (432,'woocommerce_private_link','no','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (433,'woocommerce_share_key','hEllRWP9k997YdAS8Wnx1X3THBuxNAE2','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (435,'_transient_shipping-transient-version',1738789884,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (436,'woocommerce_free_shipping_1_settings','a:4:{s:5:"title";s:13:"Free shipping";s:8:"requires";s:0:"";s:10:"min_amount";s:1:"0";s:16:"ignore_discounts";s:2:"no";}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (437,'woocommerce_admin_created_default_shipping_zones','yes','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (438,'_transient_timeout_woocommerce_admin_payment_method_promotion_specs',1739394699,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (439,'_transient_woocommerce_admin_payment_method_promotion_specs','a:1:{s:5:"en_US";a:0:{}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (443,'_site_transient_timeout_wp_plugin_dependencies_plugin_timeout_woocommerce',1738833116,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (444,'_site_transient_wp_plugin_dependencies_plugin_timeout_woocommerce',1,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (445,'_transient_timeout_wc_report_orders_stats_cd087af4d5d77a34e99fd24175189f07',1739394720,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (446,'_transient_wc_report_orders_stats_cd087af4d5d77a34e99fd24175189f07','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";O:8:"stdClass":5:{s:6:"totals";O:8:"stdClass":15:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"products";i:0;s:8:"segments";a:0:{}}s:9:"intervals";a:1:{i:0;a:6:{s:8:"interval";s:7:"2025-06";s:10:"date_start";s:19:"2025-02-05 00:00:00";s:14:"date_start_gmt";s:19:"2025-02-05 00:00:00";s:8:"date_end";s:19:"2025-02-05 22:11:45";s:12:"date_end_gmt";s:19:"2025-02-05 22:11:45";s:9:"subtotals";O:8:"stdClass":14:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"segments";a:0:{}}}}s:5:"total";i:1;s:5:"pages";i:1;s:7:"page_no";i:1;}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (447,'_transient_timeout_wc_report_orders_stats_2d9c566c57266790232d7ffafa621f29',1739394720,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (448,'_transient_wc_report_orders_stats_2d9c566c57266790232d7ffafa621f29','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";O:8:"stdClass":5:{s:6:"totals";O:8:"stdClass":15:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"products";i:0;s:8:"segments";a:0:{}}s:9:"intervals";a:1:{i:0;a:6:{s:8:"interval";s:7:"2025-06";s:10:"date_start";s:19:"2025-02-05 00:00:00";s:14:"date_start_gmt";s:19:"2025-02-05 00:00:00";s:8:"date_end";s:19:"2025-02-05 22:11:45";s:12:"date_end_gmt";s:19:"2025-02-05 22:11:45";s:9:"subtotals";O:8:"stdClass":14:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"segments";a:0:{}}}}s:5:"total";i:1;s:5:"pages";i:1;s:7:"page_no";i:1;}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (449,'_transient_timeout_wc_report_orders_stats_6c04cd72241d8f6c5f0b97c69da7682c',1739394722,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (450,'_transient_wc_report_orders_stats_6c04cd72241d8f6c5f0b97c69da7682c','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";O:8:"stdClass":5:{s:6:"totals";O:8:"stdClass":15:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"products";i:0;s:8:"segments";a:0:{}}s:9:"intervals";a:1:{i:0;a:6:{s:8:"interval";s:7:"2025-06";s:10:"date_start";s:19:"2025-02-04 00:00:00";s:14:"date_start_gmt";s:19:"2025-02-04 00:00:00";s:8:"date_end";s:19:"2025-02-04 23:59:59";s:12:"date_end_gmt";s:19:"2025-02-04 23:59:59";s:9:"subtotals";O:8:"stdClass":14:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"segments";a:0:{}}}}s:5:"total";i:1;s:5:"pages";i:1;s:7:"page_no";i:1;}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (451,'_transient_timeout_wc_report_orders_stats_66b0aa505fd2c98e05c9ce4bf624f879',1739394722,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (452,'_transient_wc_report_orders_stats_66b0aa505fd2c98e05c9ce4bf624f879','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";O:8:"stdClass":5:{s:6:"totals";O:8:"stdClass":15:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"products";i:0;s:8:"segments";a:0:{}}s:9:"intervals";a:1:{i:0;a:6:{s:8:"interval";s:7:"2025-06";s:10:"date_start";s:19:"2025-02-04 00:00:00";s:14:"date_start_gmt";s:19:"2025-02-04 00:00:00";s:8:"date_end";s:19:"2025-02-04 23:59:59";s:12:"date_end_gmt";s:19:"2025-02-04 23:59:59";s:9:"subtotals";O:8:"stdClass":14:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"segments";a:0:{}}}}s:5:"total";i:1;s:5:"pages";i:1;s:7:"page_no";i:1;}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (454,'_transient_ptk_patterns','a:99:{i:0;a:18:{s:2:"ID";i:450;s:7:"site_id";i:231214916;s:5:"title";s:47:"Intro: Heading with image and two columns above";s:4:"name";s:51:"intro-heading-with-image-and-two-columns-above-copy";s:11:"description";s:0:"";s:14:"ai_description";s:0:"";s:4:"html";s:4027:"<!-- wp:group {"metadata":{"name":"Intro"},"align":"full","style":{"spacing":{"padding":{"top":"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))","bottom":"calc( 0.5 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))","left":"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-left, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))","right":"var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal))"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->\n<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0;padding-top:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-right:var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal));padding-bottom:calc( 0.5 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)));padding-left:var(--wp--style--root--padding-left, var(--wp--custom--gap--horizontal))"><!-- wp:spacer {"height":"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))"} -->\n<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:group {"align":"wide","layout":{"type":"default"}} -->\n<div class="wp-block-group alignwide"><!-- wp:columns {"verticalAlignment":"top","align":"wide"} -->\n<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"","layout":{"type":"constrained","justifyContent":"left","contentSize":"480px"}} -->\n<div class="wp-block-column is-vertically-aligned-top"><!-- wp:heading -->\n<h2 class="wp-block-heading">Stay dry in style</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {"verticalAlignment":"top","width":"40%"} -->\n<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:40%"><!-- wp:paragraph -->\n<p>Designed for both fashion and function, our rain jackets offers sleek styles and waterproof protection to keep you dry in any downpour.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class="wp-block-buttons"><!-- wp:button --><div class="wp-block-button"><a class="wp-block-button__link wp-element-button">Discover collection</a></div><!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {"height":"calc( 0.25 * var(\\u002d\\u002dwp\\u002d\\u002dstyle\\u002d\\u002droot\\u002d\\u002dpadding-right, var(\\u002d\\u002dwp\\u002d\\u002dcustom\\u002d\\u002dgap\\u002d\\u002dhorizontal)))"} -->\n<div style="height:calc( 0.25 * var(--wp--style--root--padding-right, var(--wp--custom--gap--horizontal)))" aria-hidden="true" class="wp-block-spacer"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {"id":75,"aspectRatio":"16/9","scale":"cover","sizeSlug":"full","linkDestination":"none"} -->\n<figure class="wp-block-image size-full"><img src="https://wooblockpatterns.wpcomstaging.com/wp-content/uploads/2024/06/man-person-winter-photography-statue-coat.png" alt="" class="wp-image-75" style="aspect-ratio:16/9;object-fit:cover"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group -->\n\n<!-- wp:s
|
|||
|
|
INSERT INTO `wp_options` VALUES (455,'woocommerce_onboarding_plugins_install_and_activate_async_67a3d3efb9ca8','a:4:{s:12:"created_time";i:1738789995;s:6:"status";s:8:"complete";s:7:"plugins";a:5:{s:7:"jetpack";a:3:{s:6:"status";s:9:"activated";s:6:"errors";a:0:{}s:16:"install_duration";i:77678;}s:20:"woocommerce-payments";a:3:{s:6:"status";s:9:"activated";s:6:"errors";a:0:{}s:16:"install_duration";i:0;}s:23:"google-listings-and-ads";a:3:{s:6:"status";s:9:"activated";s:6:"errors";a:0:{}s:16:"install_duration";i:31177;}s:8:"mailpoet";a:3:{s:6:"status";s:9:"activated";s:6:"errors";a:0:{}s:16:"install_duration";i:31365;}s:20:"woocommerce-services";a:3:{s:6:"status";s:9:"activated";s:6:"errors";a:0:{}s:16:"install_duration";i:7254;}}s:13:"complete_time";i:1738790142;}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (461,'jetpack_activated',1,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (462,'_transient_timeout_activated_jetpack',1738790153,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (463,'_transient_activated_jetpack',1,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (464,'jetpack_activation_source','a:2:{i:0;s:7:"unknown";i:1;N;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (465,'jetpack_sync_settings_disable',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (466,'_transient_timeout_jetpack_file_data_14.3',1741295747,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (467,'_transient_jetpack_file_data_14.3','a:1:{s:32:"3fd340ad52927afb3bbb9e98575eccfd";a:15:{s:4:"name";s:0:"";s:11:"description";s:0:"";s:4:"sort";s:0:"";s:20:"recommendation_order";s:0:"";s:10:"introduced";s:0:"";s:7:"changed";s:0:"";s:10:"deactivate";s:0:"";s:4:"free";s:0:"";s:19:"requires_connection";s:0:"";s:24:"requires_user_connection";s:0:"";s:13:"auto_activate";s:0:"";s:11:"module_tags";s:0:"";s:7:"feature";s:0:"";s:25:"additional_search_queries";s:0:"";s:12:"plan_classes";s:0:"";}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (468,'jetpack_available_modules','a:1:{s:4:"14.3";a:43:{s:5:"blaze";s:4:"12.3";s:6:"blocks";s:8:"13.9-a.8";s:8:"carousel";s:3:"1.5";s:13:"comment-likes";s:3:"5.1";s:8:"comments";s:3:"1.4";s:12:"contact-form";s:3:"1.3";s:9:"copy-post";s:3:"7.0";s:20:"custom-content-types";s:3:"3.1";s:12:"geo-location";s:0:"";s:12:"google-fonts";s:6:"10.8.0";s:19:"gravatar-hovercards";s:3:"1.1";s:15:"infinite-scroll";s:3:"2.0";s:8:"json-api";s:3:"1.9";s:5:"latex";s:3:"1.1";s:5:"likes";s:3:"2.2";s:8:"markdown";s:3:"2.8";s:7:"monitor";s:3:"2.6";s:5:"notes";s:3:"1.9";s:10:"photon-cdn";s:3:"6.6";s:6:"photon";s:3:"2.0";s:13:"post-by-email";s:3:"2.0";s:9:"post-list";s:4:"11.3";s:7:"protect";s:3:"3.4";s:9:"publicize";s:3:"2.0";s:13:"related-posts";s:3:"2.9";s:6:"search";s:3:"5.0";s:9:"seo-tools";s:3:"4.4";s:10:"sharedaddy";s:3:"1.1";s:10:"shortcodes";s:3:"1.1";s:10:"shortlinks";s:3:"1.1";s:8:"sitemaps";s:3:"3.9";s:3:"sso";s:3:"2.6";s:5:"stats";s:3:"1.1";s:13:"subscriptions";s:3:"1.2";s:13:"tiled-gallery";s:3:"2.1";s:10:"vaultpress";s:5:"0:1.2";s:18:"verification-tools";s:3:"3.0";s:10:"videopress";s:3:"2.5";s:3:"waf";s:4:"10.9";s:17:"widget-visibility";s:3:"2.4";s:7:"widgets";s:3:"1.2";s:21:"woocommerce-analytics";s:3:"8.4";s:7:"wordads";s:5:"4.5.0";}}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (473,'_transient_timeout_wc_report_customers_stats_50edb1e3ccccfe7ca4b5e7ed73d6e4b2',1739394950,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (474,'_transient_wc_report_customers_stats_50edb1e3ccccfe7ca4b5e7ed73d6e4b2','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";O:8:"stdClass":1:{s:15:"customers_count";i:0;}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (475,'_transient_timeout_wcpay_currency_format',1738876569,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (476,'_transient_wcpay_currency_format','a:150:{s:3:"EUR";a:51:{s:5:"ca_AD";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"de_AT";a:4:{s:12:"currency_pos";s:10:"left_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"de_BE";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"de_LU";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"el_CY";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"en_IE";a:4:{s:12:"currency_pos";s:4:"left";s:12:"thousand_sep";s:1:",";s:11:"decimal_sep";s:1:".";s:12:"num_decimals";i:2;}s:5:"en_MT";a:4:{s:12:"currency_pos";s:4:"left";s:12:"thousand_sep";s:1:",";s:11:"decimal_sep";s:1:".";s:12:"num_decimals";i:2;}s:5:"es_EA";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"es_IC";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_BE";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_BL";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_GF";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_GP";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_LU";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_MC";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_MF";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_MQ";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_PM";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_RE";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"fr_YT";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"it_SM";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"it_VA";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"nl_BE";a:4:{s:12:"currency_pos";s:10:"left_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"pt_PT";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"sq_XK";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:10:"sr_Latn_ME";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:10:"sr_Latn_XK";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"sv_AX";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"sv_FI";a:4:{s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;}s:5:"tr_CY";a:4:{s:12:"currency_pos";s:4:"left";s:12:"thousan
|
|||
|
|
INSERT INTO `wp_options` VALUES (477,'_transient_timeout_wcpay_locale_info',1738876569,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (478,'_transient_wcpay_locale_info','a:248:{s:2:"AD";a:14:{s:13:"currency_code";s:3:"EUR";s:12:"currency_pos";s:11:"right_space";s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:12:"num_decimals";i:2;s:11:"weight_unit";s:2:"kg";s:14:"dimension_unit";s:2:"cm";s:9:"direction";s:3:"ltr";s:14:"default_locale";s:5:"ca_AD";s:4:"name";s:4:"Euro";s:8:"singular";s:4:"euro";s:6:"plural";s:5:"euros";s:12:"short_symbol";s:3:"€";s:7:"locales";a:51:{s:5:"ca_AD";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"de_AT";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:10:"left_space";}s:5:"de_BE";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"de_LU";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"el_CY";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"en_IE";a:4:{s:12:"thousand_sep";s:1:",";s:11:"decimal_sep";s:1:".";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:4:"left";}s:5:"en_MT";a:4:{s:12:"thousand_sep";s:1:",";s:11:"decimal_sep";s:1:".";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:4:"left";}s:5:"es_EA";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"es_IC";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_BE";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_BL";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_GF";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_GP";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_LU";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_MC";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_MF";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_MQ";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_PM";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_RE";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"fr_YT";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"it_SM";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"it_VA";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"nl_BE";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:10:"left_space";}s:5:"pt_PT";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:5:"sq_XK";a:4:{s:12:"thousand_sep";s:1:" ";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:10:"sr_Latn_ME";a:4:{s:12:"thousand_sep";s:1:".";s:11:"decimal_sep";s:1:",";s:9:"direction";s:3:"ltr";s:12:"currency_pos";s:11:"right_space";}s:10:"sr_Latn_XK";a:4:{s:12:"thousand
|
|||
|
|
INSERT INTO `wp_options` VALUES (479,'widget_mailpoet_form','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (480,'widget_currency_switcher_widget','a:1:{s:12:"_multiwidget";i:1;}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (481,'woocommerce_woocommerce_payments_settings','a:19:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";s:17:"platform_checkout";s:2:"no";s:35:"payment_request_button_branded_type";s:0:"";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (482,'woocommerce_woocommerce_payments_bancontact_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (483,'woocommerce_woocommerce_payments_sepa_debit_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (484,'woocommerce_woocommerce_payments_giropay_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (485,'woocommerce_woocommerce_payments_sofort_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (486,'woocommerce_woocommerce_payments_p24_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (487,'woocommerce_woocommerce_payments_ideal_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (488,'woocommerce_woocommerce_payments_au_becs_debit_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (489,'woocommerce_woocommerce_payments_eps_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (490,'woocommerce_woocommerce_payments_link_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (491,'woocommerce_woocommerce_payments_affirm_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (492,'woocommerce_woocommerce_payments_afterpay_clearpay_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (493,'woocommerce_woocommerce_payments_klarna_settings','a:17:{s:7:"enabled";s:2:"no";s:28:"account_statement_descriptor";s:0:"";s:14:"manual_capture";s:2:"no";s:11:"saved_cards";s:3:"yes";s:9:"test_mode";s:2:"no";s:14:"enable_logging";s:2:"no";s:23:"payment_request_details";s:0:"";s:15:"payment_request";s:3:"yes";s:27:"payment_request_button_type";s:7:"default";s:28:"payment_request_button_theme";s:4:"dark";s:29:"payment_request_button_height";s:2:"44";s:28:"payment_request_button_label";s:7:"Buy now";s:32:"payment_request_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:30:"upe_enabled_payment_method_ids";a:1:{i:0;s:4:"card";}s:27:"payment_request_button_size";s:6:"medium";s:34:"platform_checkout_button_locations";a:3:{i:0;s:7:"product";i:1;s:4:"cart";i:2;s:8:"checkout";}s:32:"platform_checkout_custom_message";s:84:"By placing this order, you agree to our [terms] and understand our [privacy_policy].";}','on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (494,'wcpay_activation_timestamp',1738790171,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (495,'woocommerce_woocommerce_payments_version','8.9.0','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (496,'wcpay_multi_currency_store_currency','NGN','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (497,'jetpack_testimonial',0,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (499,'do_activate',0,'auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (500,'_transient_no_forms_displayed_bellow_content',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (501,'_transient_timeout_jetpack_https_test',1738876586,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (502,'_transient_jetpack_https_test',0,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (503,'_transient_timeout_jetpack_https_test_message',1738876586,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (504,'_transient_jetpack_https_test_message','WordPress reports no SSL support','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (505,'jetpack_waf_needs_update','','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (506,'_transient_timeout_wc_shipping_method_count_legacy',1741382190,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (507,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:"version";s:10:"1738789884";s:5:"value";i:1;}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (508,'wcpay_connect_incentive','a:3:{s:4:"data";a:3:{s:9:"incentive";a:8:{s:2:"id";s:32:"wcpay-promo-2023-action-discount";s:8:"promo_id";s:32:"wcpay-promo-2023-action-discount";s:4:"type";s:12:"connect_page";s:9:"cta_label";s:28:"Install WooPayments for free";s:6:"tc_url";s:75:"https://woocommerce.com/terms-conditions/woopayments-action-promotion-2023/";s:11:"description";s:117:"<b>Save 10%</b> on payment processing costs in your <b>first three months</b> when you sign up for WooPayments today.";s:19:"task_header_content";s:256:"Power your payments with a simple, all-in-one option and <b>save 10% on payment processing costs in your first three months</b>. See <a href="https://woocommerce.com/terms-conditions/woopayments-action-promotion-2023/">Terms and Conditions</a> for details.";s:10:"task_badge";s:35:"Save 10% on payment processing fees";}s:3:"ttl";i:172800;s:12:"context_hash";s:32:"6d37bc19d822af681f896b21065134c7";}s:7:"fetched";i:1738790191;s:7:"errored";b:0;}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (509,'_site_transient_update_plugins','O:8:"stdClass":4:{s:12:"last_checked";i:1738790191;s:8:"response";a:1:{s:19:"akismet/akismet.php";O:8:"stdClass":13:{s:2:"id";s:21:"w.org/plugins/akismet";s:4:"slug";s:7:"akismet";s:6:"plugin";s:19:"akismet/akismet.php";s:11:"new_version";s:5:"5.3.6";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:55:"http://downloads.wordpress.org/plugin/akismet.5.3.6.zip";s:5:"icons";a:2:{s:2:"2x";s:60:"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463";s:2:"1x";s:60:"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463";}s:7:"banners";a:2:{s:2:"2x";s:63:"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731";s:2:"1x";s:62:"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.8";s:6:"tested";s:5:"6.7.1";s:12:"requires_php";s:6:"5.6.20";s:16:"requires_plugins";a:0:{}}}s:12:"translations";a:0:{}s:9:"no_update";a:9:{s:51:"google-listings-and-ads/google-listings-and-ads.php";O:8:"stdClass":10:{s:2:"id";s:37:"w.org/plugins/google-listings-and-ads";s:4:"slug";s:23:"google-listings-and-ads";s:6:"plugin";s:51:"google-listings-and-ads/google-listings-and-ads.php";s:11:"new_version";s:5:"2.9.8";s:3:"url";s:54:"https://wordpress.org/plugins/google-listings-and-ads/";s:7:"package";s:71:"http://downloads.wordpress.org/plugin/google-listings-and-ads.2.9.8.zip";s:5:"icons";a:2:{s:2:"1x";s:68:"https://ps.w.org/google-listings-and-ads/assets/icon.svg?rev=2775988";s:3:"svg";s:68:"https://ps.w.org/google-listings-and-ads/assets/icon.svg?rev=2775988";}s:7:"banners";a:2:{s:2:"2x";s:79:"https://ps.w.org/google-listings-and-ads/assets/banner-1544x500.png?rev=3133149";s:2:"1x";s:78:"https://ps.w.org/google-listings-and-ads/assets/banner-772x250.png?rev=3133149";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.1";}s:9:"hello.php";O:8:"stdClass":10:{s:2:"id";s:25:"w.org/plugins/hello-dolly";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:5:"1.7.2";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:59:"http://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855";s:2:"1x";s:64:"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855";}s:7:"banners";a:2:{s:2:"2x";s:67:"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582";s:2:"1x";s:66:"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.6";}s:19:"jetpack/jetpack.php";O:8:"stdClass":10:{s:2:"id";s:21:"w.org/plugins/jetpack";s:4:"slug";s:7:"jetpack";s:6:"plugin";s:19:"jetpack/jetpack.php";s:11:"new_version";s:4:"14.3";s:3:"url";s:38:"https://wordpress.org/plugins/jetpack/";s:7:"package";s:54:"http://downloads.wordpress.org/plugin/jetpack.14.3.zip";s:5:"icons";a:2:{s:2:"1x";s:52:"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237";s:3:"svg";s:52:"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237";}s:7:"banners";a:2:{s:2:"2x";s:63:"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649";s:2:"1x";s:62:"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.6";}s:55:"kliken-ads-pixel-for-meta/kliken-ads-pixel-for-meta.php";O:8:"stdClass":10:{s:2:"id";s:39:"w.org/plugins/kliken-ads-pixel-for-meta";s:4:"slug";s:25:"kliken-ads-pixel-for-meta";s:6:"plugin";s:55:"kliken-ads-pixel-for-meta/kliken-ads-pixel-for-meta.php";s:11:"new_version";s:5:"1.1.0";s:3:"url";s:56:"https://wordpress.org/plugins/kliken-ads-pixel-for-meta/";s:7:"package";s:73:"http://downloads.wordpress.org/plugin/kliken-ads-pixel-for-meta.1.1.0.zip";s:5:"icons";a:2:{s:2:"2x";s:78:"https://ps.w.org/kliken-ads-pixel-for-meta/assets/icon-256x256.png?rev=3144406";s:2:"1x";s:78:"https://ps.w.org/kliken-ads-pixel-for-meta/assets/icon-256x256.png?rev=3144406";}s:7:"banners";a:2:{s:2:"2x";s:81:"https://ps.w.org/kliken-ads-pixel-for-meta/assets/banner-1544x500.png?rev=3232800";s:
|
|||
|
|
INSERT INTO `wp_options` VALUES (510,'wcpay_fraud_services_data','a:3:{s:4:"data";a:2:{s:6:"stripe";a:0:{}s:4:"sift";a:2:{s:10:"beacon_key";s:10:"affbdadb36";s:18:"sandbox_beacon_key";s:10:"6ad0ad748b";}}s:7:"fetched";i:1738790197;s:7:"errored";b:0;}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (511,'wcpay_session_store_id','st_qZRH1ac^KomUNfb:nct6XK8p^xp0p','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (512,'_site_transient_timeout_available_translations',1738800998,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (513,'_site_transient_available_translations','a:131:{s:2:"af";a:8:{s:8:"language";s:2:"af";s:7:"version";s:8:"5.8-beta";s:7:"updated";s:19:"2021-05-13 15:59:22";s:12:"english_name";s:9:"Afrikaans";s:11:"native_name";s:9:"Afrikaans";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip";s:3:"iso";a:2:{i:1;s:2:"af";i:2;s:3:"afr";}s:7:"strings";a:1:{s:8:"continue";s:10:"Gaan voort";}}s:2:"am";a:8:{s:8:"language";s:2:"am";s:7:"version";s:5:"6.0.9";s:7:"updated";s:19:"2022-09-29 20:43:49";s:12:"english_name";s:7:"Amharic";s:11:"native_name";s:12:"አማርኛ";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.0.9/am.zip";s:3:"iso";a:2:{i:1;s:2:"am";i:2;s:3:"amh";}s:7:"strings";a:1:{s:8:"continue";s:9:"ቀጥል";}}s:3:"arg";a:8:{s:8:"language";s:3:"arg";s:7:"version";s:8:"6.2-beta";s:7:"updated";s:19:"2022-09-22 16:46:56";s:12:"english_name";s:9:"Aragonese";s:11:"native_name";s:9:"Aragonés";s:7:"package";s:65:"https://downloads.wordpress.org/translation/core/6.2-beta/arg.zip";s:3:"iso";a:3:{i:1;s:2:"an";i:2;s:3:"arg";i:3;s:3:"arg";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continar";}}s:2:"ar";a:8:{s:8:"language";s:2:"ar";s:7:"version";s:5:"6.4.5";s:7:"updated";s:19:"2024-02-13 12:49:38";s:12:"english_name";s:6:"Arabic";s:11:"native_name";s:14:"العربية";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.4.5/ar.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:2;s:3:"ara";}s:7:"strings";a:1:{s:8:"continue";s:12:"متابعة";}}s:3:"ary";a:8:{s:8:"language";s:3:"ary";s:7:"version";s:6:"4.8.25";s:7:"updated";s:19:"2017-01-26 15:42:35";s:12:"english_name";s:15:"Moroccan Arabic";s:11:"native_name";s:31:"العربية المغربية";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/4.8.25/ary.zip";s:3:"iso";a:2:{i:1;s:2:"ar";i:3;s:3:"ary";}s:7:"strings";a:1:{s:8:"continue";s:16:"المتابعة";}}s:2:"as";a:8:{s:8:"language";s:2:"as";s:7:"version";s:5:"6.7.1";s:7:"updated";s:19:"2024-11-01 09:05:28";s:12:"english_name";s:8:"Assamese";s:11:"native_name";s:21:"অসমীয়া";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/6.7.1/as.zip";s:3:"iso";a:3:{i:1;s:2:"as";i:2;s:3:"asm";i:3;s:3:"asm";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:3:"azb";a:8:{s:8:"language";s:3:"azb";s:7:"version";s:5:"6.4.5";s:7:"updated";s:19:"2024-01-19 08:58:31";s:12:"english_name";s:17:"South Azerbaijani";s:11:"native_name";s:29:"گؤنئی آذربایجان";s:7:"package";s:62:"https://downloads.wordpress.org/translation/core/6.4.5/azb.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:3;s:3:"azb";}s:7:"strings";a:1:{s:8:"continue";s:8:"Continue";}}s:2:"az";a:8:{s:8:"language";s:2:"az";s:7:"version";s:5:"4.7.2";s:7:"updated";s:19:"2016-11-06 00:09:27";s:12:"english_name";s:11:"Azerbaijani";s:11:"native_name";s:16:"Azərbaycan dili";s:7:"package";s:61:"https://downloads.wordpress.org/translation/core/4.7.2/az.zip";s:3:"iso";a:2:{i:1;s:2:"az";i:2;s:3:"aze";}s:7:"strings";a:1:{s:8:"continue";s:5:"Davam";}}s:3:"bel";a:8:{s:8:"language";s:3:"bel";s:7:"version";s:6:"4.9.26";s:7:"updated";s:19:"2024-12-26 00:37:42";s:12:"english_name";s:10:"Belarusian";s:11:"native_name";s:29:"Беларуская мова";s:7:"package";s:63:"https://downloads.wordpress.org/translation/core/4.9.26/bel.zip";s:3:"iso";a:2:{i:1;s:2:"be";i:2;s:3:"bel";}s:7:"strings";a:1:{s:8:"continue";s:20:"Працягнуць";}}s:5:"bg_BG";a:8:{s:8:"language";s:5:"bg_BG";s:7:"version";s:5:"6.7.1";s:7:"updated";s:19:"2025-01-12 07:32:34";s:12:"english_name";s:9:"Bulgarian";s:11:"native_name";s:18:"Български";s:7:"package";s:64:"https://downloads.wordpress.org/translation/core/6.7.1/bg_BG.zip";s:3:"iso";a:2:{i:1;s:2:"bg";i:2;s:3:"bul";}s:7:"strings";a:1:{s:8:"continue";s:12:"Напред";}}s:5:"bn_BD";a:8:{s:8:"language";s:5:"bn_BD";s:7:"version";s:5:"6.7.1";s:7:"updated";s:19:"2024-11-11 11:12:13";s:12:"english_name";s:20:"Bengali (Bangladesh)";s:11:"native_name";s:15:"বাংলা";s:7:"package";s:64:"https://downloads.wordpress.org/transla
|
|||
|
|
INSERT INTO `wp_options` VALUES (514,'_transient_woocommerce_product_task_product_count_transient',0,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (515,'_transient_woocommerce_shipping_task_zone_count_transient',1,'on');
|
|||
|
|
INSERT INTO `wp_options` VALUES (516,'woocommerce_task_list_tracked_completed_tasks','a:2:{i:0;s:8:"shipping";i:1;s:17:"launch-your-store";}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (517,'_transient_timeout_wc_report_orders_stats_ade9528c2f8a5c2b74b5ef5995f38d2e',1739395074,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (518,'_transient_wc_report_orders_stats_ade9528c2f8a5c2b74b5ef5995f38d2e','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";O:8:"stdClass":5:{s:6:"totals";O:8:"stdClass":15:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"products";i:0;s:8:"segments";a:0:{}}s:9:"intervals";a:1:{i:0;a:6:{s:8:"interval";s:7:"2025-06";s:10:"date_start";s:19:"2025-02-04 00:00:00";s:14:"date_start_gmt";s:19:"2025-02-04 00:00:00";s:8:"date_end";s:19:"2025-02-04 23:59:59";s:12:"date_end_gmt";s:19:"2025-02-04 23:59:59";s:9:"subtotals";O:8:"stdClass":14:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"segments";a:0:{}}}}s:5:"total";i:1;s:5:"pages";i:1;s:7:"page_no";i:1;}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (519,'_transient_timeout_wc_report_orders_stats_8e22de9589b23d09fa8f67e3c51a5cc3',1739395077,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (520,'_transient_wc_report_orders_stats_8e22de9589b23d09fa8f67e3c51a5cc3','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";O:8:"stdClass":5:{s:6:"totals";O:8:"stdClass":15:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"products";i:0;s:8:"segments";a:0:{}}s:9:"intervals";a:1:{i:0;a:6:{s:8:"interval";s:7:"2025-06";s:10:"date_start";s:19:"2025-02-05 00:00:00";s:14:"date_start_gmt";s:19:"2025-02-05 00:00:00";s:8:"date_end";s:19:"2025-02-05 22:17:31";s:12:"date_end_gmt";s:19:"2025-02-05 22:17:31";s:9:"subtotals";O:8:"stdClass":14:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"segments";a:0:{}}}}s:5:"total";i:1;s:5:"pages";i:1;s:7:"page_no";i:1;}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (521,'_transient_timeout_wc_report_orders_stats_6fdf4affc68bcd59eba891e076451bfe',1739395077,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (522,'_transient_wc_report_orders_stats_6fdf4affc68bcd59eba891e076451bfe','a:2:{s:7:"version";s:10:"1738789664";s:5:"value";O:8:"stdClass":5:{s:6:"totals";O:8:"stdClass":15:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"products";i:0;s:8:"segments";a:0:{}}s:9:"intervals";a:1:{i:0;a:6:{s:8:"interval";s:7:"2025-06";s:10:"date_start";s:19:"2025-02-05 00:00:00";s:14:"date_start_gmt";s:19:"2025-02-05 00:00:00";s:8:"date_end";s:19:"2025-02-05 22:17:31";s:12:"date_end_gmt";s:19:"2025-02-05 22:17:31";s:9:"subtotals";O:8:"stdClass":14:{s:12:"orders_count";i:0;s:14:"num_items_sold";i:0;s:11:"gross_sales";d:0;s:11:"total_sales";d:0;s:7:"coupons";d:0;s:13:"coupons_count";i:0;s:7:"refunds";d:0;s:5:"taxes";d:0;s:8:"shipping";d:0;s:11:"net_revenue";d:0;s:19:"avg_items_per_order";d:0;s:15:"avg_order_value";d:0;s:15:"total_customers";i:0;s:8:"segments";a:0:{}}}}s:5:"total";i:1;s:5:"pages";i:1;s:7:"page_no";i:1;}}','off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (530,'woocommerce_ces_tracks_queue','a:0:{}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (532,'_transient_timeout_woocommerce_admin_payment_gateway_suggestions_specs',1739395803,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (533,'_transient_woocommerce_admin_payment_gateway_suggestions_specs','a:1:{s:5:"en_US";a:24:{s:6:"affirm";O:8:"stdClass":11:{s:2:"id";s:6:"affirm";s:5:"title";s:6:"Affirm";s:7:"content";s:169:"Affirm’s tailored Buy Now Pay Later programs remove price as a barrier, turning browsers into buyers, increasing average order value, and expanding your customer base.";s:5:"image";s:108:"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png";s:11:"image_72x72";s:108:"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/affirm.png";s:7:"plugins";a:0:{}s:13:"external_link";s:59:"https://woocommerce.com/products/woocommerce-gateway-affirm";s:10:"is_visible";a:3:{i:0;O:8:"stdClass":2:{s:4:"type";s:2:"or";s:8:"operands";a:2:{i:0;O:8:"stdClass":3:{s:4:"type";s:21:"base_location_country";s:5:"value";s:2:"US";s:9:"operation";s:1:"=";}i:1;O:8:"stdClass":3:{s:4:"type";s:21:"base_location_country";s:5:"value";s:2:"CA";s:9:"operation";s:1:"=";}}}i:1;O:8:"stdClass":4:{s:4:"type";s:14:"plugin_version";s:6:"plugin";s:11:"woocommerce";s:7:"version";s:9:"6.5.0-dev";s:8:"operator";s:2:">=";}i:2;O:8:"stdClass":2:{s:4:"type";s:2:"or";s:8:"operands";a:3:{i:0;O:8:"stdClass":4:{s:4:"type";s:14:"plugin_version";s:6:"plugin";s:11:"woocommerce";s:7:"version";s:9:"9.2.0-dev";s:8:"operator";s:1:"<";}i:1;O:8:"stdClass":2:{s:4:"type";s:3:"not";s:7:"operand";a:1:{i:0;O:8:"stdClass":2:{s:4:"type";s:17:"plugins_activated";s:7:"plugins";a:1:{i:0;s:20:"woocommerce-payments";}}}}i:2;O:8:"stdClass":6:{s:4:"type";s:6:"option";s:12:"transformers";a:2:{i:0;O:8:"stdClass":2:{s:3:"use";s:12:"dot_notation";s:9:"arguments";O:8:"stdClass":1:{s:4:"path";s:4:"data";}}i:1;O:8:"stdClass":1:{s:3:"use";s:10:"array_keys";}}s:11:"option_name";s:18:"wcpay_account_data";s:9:"operation";s:9:"!contains";s:5:"value";s:10:"account_id";s:7:"default";a:0:{}}}}}s:14:"category_other";a:0:{}s:19:"category_additional";a:2:{i:0;s:2:"US";i:1;s:2:"CA";}s:23:"recommendation_priority";i:7;}s:8:"afterpay";O:8:"stdClass":10:{s:2:"id";s:8:"afterpay";s:5:"title";s:8:"Afterpay";s:7:"content";s:125:"Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.";s:5:"image";s:110:"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png";s:11:"image_72x72";s:110:"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png";s:7:"plugins";a:1:{i:0;s:32:"afterpay-gateway-for-woocommerce";}s:10:"is_visible";a:3:{i:0;O:8:"stdClass":2:{s:4:"type";s:2:"or";s:8:"operands";a:3:{i:0;O:8:"stdClass":3:{s:4:"type";s:21:"base_location_country";s:5:"value";s:2:"US";s:9:"operation";s:1:"=";}i:1;O:8:"stdClass":3:{s:4:"type";s:21:"base_location_country";s:5:"value";s:2:"CA";s:9:"operation";s:1:"=";}i:2;O:8:"stdClass":3:{s:4:"type";s:21:"base_location_country";s:5:"value";s:2:"AU";s:9:"operation";s:1:"=";}}}i:1;O:8:"stdClass":4:{s:4:"type";s:14:"plugin_version";s:6:"plugin";s:11:"woocommerce";s:7:"version";s:9:"6.5.0-dev";s:8:"operator";s:2:">=";}i:2;O:8:"stdClass":2:{s:4:"type";s:2:"or";s:8:"operands";a:3:{i:0;O:8:"stdClass":4:{s:4:"type";s:14:"plugin_version";s:6:"plugin";s:11:"woocommerce";s:7:"version";s:9:"9.2.0-dev";s:8:"operator";s:1:"<";}i:1;O:8:"stdClass":2:{s:4:"type";s:3:"not";s:7:"operand";a:1:{i:0;O:8:"stdClass":2:{s:4:"type";s:17:"plugins_activated";s:7:"plugins";a:1:{i:0;s:20:"woocommerce-payments";}}}}i:2;O:8:"stdClass":6:{s:4:"type";s:6:"option";s:12:"transformers";a:2:{i:0;O:8:"stdClass":2:{s:3:"use";s:12:"dot_notation";s:9:"arguments";O:8:"stdClass":1:{s:4:"path";s:4:"data";}}i:1;O:8:"stdClass":1:{s:3:"use";s:10:"array_keys";}}s:11:"option_name";s:18:"wcpay_account_data";s:9:"operation";s:9:"!contains";s:5:"value";s:10:"account_id";s:7:"default";a:0:{}}}}}s:14:"category_other";a:0:{}s:19:"category_additional";a:3:{i:0;s:2:"US";i:1;s:2:"CA";i:2;s:2:"AU";}s:23:"recommendation_priority";i:8;}s:14:"airwallex_ma
|
|||
|
|
INSERT INTO `wp_options` VALUES (534,'woocommerce_clear_ces_tracks_queue_for_page','','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (535,'woocommerce_ces_shown_for_actions','a:1:{i:0;s:15:"settings_change";}','auto');
|
|||
|
|
INSERT INTO `wp_options` VALUES (545,'_site_transient_timeout_wp_theme_files_patterns-b24c4b64a1fe6f9f73313f730ddfc1cf',1738794597,'off');
|
|||
|
|
INSERT INTO `wp_options` VALUES (546,'_site_transient_wp_theme_files_patterns-b24c4b64a1fe6f9f73313f730ddfc1cf','a:2:{s:7:"version";s:3:"1.0";s:8:"patterns";a:98:{s:21:"banner-about-book.php";a:4:{s:5:"title";s:28:"Banner with book description";s:4:"slug";s:34:"twentytwentyfive/banner-about-book";s:11:"description";s:66:"Banner with book description and accompanying image for promotion.";s:10:"categories";a:1:{i:0;s:6:"banner";}}s:28:"banner-cover-big-heading.php";a:4:{s:5:"title";s:22:"Cover with big heading";s:4:"slug";s:41:"twentytwentyfive/banner-cover-big-heading";s:11:"description";s:82:"A full-width cover section with a large background image and an oversized heading.";s:10:"categories";a:3:{i:0;s:6:"banner";i:1;s:5:"about";i:2;s:8:"featured";}}s:22:"banner-intro-image.php";a:4:{s:5:"title";s:49:"Short heading and paragraph and image on the left";s:4:"slug";s:35:"twentytwentyfive/banner-intro-image";s:11:"description";s:68:"A Intro pattern with Short heading, paragraph and image on the left.";s:10:"categories";a:2:{i:0;s:6:"banner";i:1;s:8:"featured";}}s:16:"banner-intro.php";a:4:{s:5:"title";s:35:"Intro with left-aligned description";s:4:"slug";s:29:"twentytwentyfive/banner-intro";s:11:"description";s:66:"A large left-aligned heading with a brand name emphasized in bold.";s:10:"categories";a:1:{i:0;s:6:"banner";}}s:17:"banner-poster.php";a:4:{s:5:"title";s:19:"Poster-like section";s:4:"slug";s:30:"twentytwentyfive/banner-poster";s:11:"description";s:78:"A section that can be used as a banner or a landing page to announce an event.";s:10:"categories";a:2:{i:0;s:6:"banner";i:1;s:5:"media";}}s:43:"banner-with-description-and-images-grid.php";a:4:{s:5:"title";s:39:"Banner with description and images grid";s:4:"slug";s:47:"twentytwentyfive/banner-description-images-grid";s:11:"description";s:75:"A banner with a short paragraph, and two images displayed in a grid layout.";s:10:"categories";a:2:{i:0;s:6:"banner";i:1;s:8:"featured";}}s:18:"binding-format.php";a:4:{s:5:"title";s:16:"Post format name";s:4:"slug";s:31:"twentytwentyfive/binding-format";s:11:"description";s:75:"Prints the name of the post format with the help of the Block Bindings API.";s:10:"categories";a:1:{i:0;s:28:"twentytwentyfive_post-format";}}s:12:"comments.php";a:5:{s:5:"title";s:8:"Comments";s:4:"slug";s:25:"twentytwentyfive/comments";s:11:"description";s:63:"Comments area with comments list, pagination, and comment form.";s:10:"categories";a:1:{i:0;s:4:"text";}s:10:"blockTypes";a:1:{i:0;s:13:"core/comments";}}s:32:"contact-centered-social-link.php";a:5:{s:5:"title";s:30:"Centered link and social links";s:4:"slug";s:45:"twentytwentyfive/contact-centered-social-link";s:11:"description";s:73:"Centered contact section with a prominent message and social media links.";s:10:"categories";a:1:{i:0;s:7:"contact";}s:8:"keywords";a:3:{i:0;s:7:"contact";i:1;s:3:"faq";i:2;s:9:"questions";}}s:26:"contact-info-locations.php";a:6:{s:5:"title";s:27:"Contact, info and locations";s:4:"slug";s:39:"twentytwentyfive/contact-info-locations";s:11:"description";s:78:"Contact section with social media links, email, and multiple location details.";s:13:"viewportWidth";i:1400;s:10:"categories";a:1:{i:0;s:7:"contact";}s:8:"keywords";a:2:{i:0;s:7:"contact";i:1;s:8:"location";}}s:29:"contact-location-and-link.php";a:4:{s:5:"title";s:25:"Contact location and link";s:4:"slug";s:42:"twentytwentyfive/contact-location-and-link";s:11:"description";s:89:"Contact section with a location address, a directions link, and an image of the location.";s:10:"categories";a:2:{i:0;s:7:"contact";i:1;s:8:"featured";}}s:18:"cta-book-links.php";a:4:{s:5:"title";s:30:"Call to action with book links";s:4:"slug";s:31:"twentytwentyfive/cta-book-links";s:11:"description";s:74:"A call to action section with links to get the book in different websites.";s:10:"categories";a:1:{i:0;s:14:"call-to-action";}}s:22:"cta-book-locations.php";a:4:{s:5:"title";s:29:"Call to action with locations";s:4:"slug";s:35:"twentytwentyfive/cta-book-locations";s:11:"description";s:82:"A call to action section with links to get
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_postmeta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_postmeta`;
|
|||
|
|
CREATE TABLE `wp_postmeta` (
|
|||
|
|
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`meta_key` varchar(255) DEFAULT NULL,
|
|||
|
|
`meta_value` longtext,
|
|||
|
|
PRIMARY KEY (`meta_id`),
|
|||
|
|
KEY `meta_key` (`meta_key`(100)),
|
|||
|
|
KEY `post_id` (`post_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_postmeta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default');
|
|||
|
|
INSERT INTO `wp_postmeta` VALUES (2,3,'_wp_page_template','default');
|
|||
|
|
INSERT INTO `wp_postmeta` VALUES (3,6,'_wp_attached_file','woocommerce-placeholder.png');
|
|||
|
|
INSERT INTO `wp_postmeta` VALUES (4,6,'_wp_attachment_metadata','a:6:{s:5:"width";i:1200;s:6:"height";i:1200;s:4:"file";s:27:"woocommerce-placeholder.png";s:8:"filesize";i:48149;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:35:"woocommerce-placeholder-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:12321;}s:5:"large";a:5:{s:4:"file";s:37:"woocommerce-placeholder-1024x1024.png";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:90808;}s:9:"thumbnail";a:5:{s:4:"file";s:35:"woocommerce-placeholder-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:4209;}s:12:"medium_large";a:5:{s:4:"file";s:35:"woocommerce-placeholder-768x768.png";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:56643;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_posts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_posts`;
|
|||
|
|
CREATE TABLE `wp_posts` (
|
|||
|
|
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`post_content` longtext NOT NULL DEFAULT '',
|
|||
|
|
`post_title` text NOT NULL DEFAULT '',
|
|||
|
|
`post_excerpt` text NOT NULL DEFAULT '',
|
|||
|
|
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
|
|||
|
|
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
|
|||
|
|
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
|
|||
|
|
`post_password` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`post_name` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`to_ping` text NOT NULL DEFAULT '',
|
|||
|
|
`pinged` text NOT NULL DEFAULT '',
|
|||
|
|
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`post_content_filtered` longtext NOT NULL DEFAULT '',
|
|||
|
|
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`guid` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`menu_order` int(11) NOT NULL DEFAULT '0',
|
|||
|
|
`post_type` varchar(20) NOT NULL DEFAULT 'post',
|
|||
|
|
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`comment_count` bigint(20) NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`ID`),
|
|||
|
|
KEY `post_author` (`post_author`),
|
|||
|
|
KEY `post_parent` (`post_parent`),
|
|||
|
|
KEY `type_status_date` (`post_type`(20), `post_status`(20), `post_date`, `ID`),
|
|||
|
|
KEY `post_name` (`post_name`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_posts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_posts` VALUES (1,1,'2025-02-05 20:57:19','2025-02-05 20:57:19','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2025-02-05 20:57:19','2025-02-05 20:57:19','',0,'http://localhost:8882/?p=1',0,'post','',1);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (2,1,'2025-02-05 20:57:19','2025-02-05 20:57:19','<!-- wp:paragraph -->\n<p>This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class="wp-block-quote"><p>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class="wp-block-quote"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href="http://localhost:8882/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2025-02-05 20:57:19','2025-02-05 20:57:19','',0,'http://localhost:8882/?page_id=2',0,'page','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (3,1,'2025-02-05 20:57:19','2025-02-05 20:57:19','<!-- wp:heading -->\n<h2 class="wp-block-heading">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Our website address is: http://localhost:8882.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class="wp-block-heading">How long we retain your data</h2>\n<!-- /wp:hea
|
|||
|
|
INSERT INTO `wp_posts` VALUES (4,0,'2025-02-05 20:57:21','2025-02-05 20:57:21','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2025-02-05 20:57:21','2025-02-05 20:57:21','',0,'http://localhost:8882/?p=4',0,'wp_navigation','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (5,1,'2025-02-05 21:01:07','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2025-02-05 21:01:07','0000-00-00 00:00:00','',0,'http://localhost:8882/?p=5',0,'post','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (6,1,'2025-02-05 21:05:43','2025-02-05 21:05:43','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2025-02-05 21:05:43','2025-02-05 21:05:43','',0,'http://localhost:8882/wp-content/uploads/2025/02/woocommerce-placeholder.png',0,'attachment','image/png',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (7,1,'2025-02-05 21:05:44','2025-02-05 21:05:44','','Shop','','publish','closed','closed','','shop','','','2025-02-05 21:05:44','2025-02-05 21:05:44','',0,'http://localhost:8882/?page_id=7',0,'page','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (8,1,'2025-02-05 21:05:44','2025-02-05 21:05:44','<!-- wp:woocommerce/cart -->\n<div class="wp-block-woocommerce-cart alignwide is-loading"><!-- wp:woocommerce/filled-cart-block -->\n<div class="wp-block-woocommerce-filled-cart-block"><!-- wp:woocommerce/cart-items-block -->\n<div class="wp-block-woocommerce-cart-items-block"><!-- wp:woocommerce/cart-line-items-block -->\n<div class="wp-block-woocommerce-cart-line-items-block"></div>\n<!-- /wp:woocommerce/cart-line-items-block -->\n\n<!-- wp:woocommerce/cart-cross-sells-block -->\n<div class="wp-block-woocommerce-cart-cross-sells-block"><!-- wp:heading {"fontSize":"large"} -->\n<h2 class="wp-block-heading has-large-font-size">You may be interested in…</h2>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/cart-cross-sells-products-block -->\n<div class="wp-block-woocommerce-cart-cross-sells-products-block"></div>\n<!-- /wp:woocommerce/cart-cross-sells-products-block --></div>\n<!-- /wp:woocommerce/cart-cross-sells-block --></div>\n<!-- /wp:woocommerce/cart-items-block -->\n\n<!-- wp:woocommerce/cart-totals-block -->\n<div class="wp-block-woocommerce-cart-totals-block"><!-- wp:woocommerce/cart-order-summary-block -->\n<div class="wp-block-woocommerce-cart-order-summary-block"><!-- wp:woocommerce/cart-order-summary-heading-block -->\n<div class="wp-block-woocommerce-cart-order-summary-heading-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-heading-block -->\n\n<!-- wp:woocommerce/cart-order-summary-coupon-form-block -->\n<div class="wp-block-woocommerce-cart-order-summary-coupon-form-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-coupon-form-block -->\n\n<!-- wp:woocommerce/cart-order-summary-subtotal-block -->\n<div class="wp-block-woocommerce-cart-order-summary-subtotal-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-subtotal-block -->\n\n<!-- wp:woocommerce/cart-order-summary-fee-block -->\n<div class="wp-block-woocommerce-cart-order-summary-fee-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-fee-block -->\n\n<!-- wp:woocommerce/cart-order-summary-discount-block -->\n<div class="wp-block-woocommerce-cart-order-summary-discount-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-discount-block -->\n\n<!-- wp:woocommerce/cart-order-summary-shipping-block -->\n<div class="wp-block-woocommerce-cart-order-summary-shipping-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-shipping-block -->\n\n<!-- wp:woocommerce/cart-order-summary-taxes-block -->\n<div class="wp-block-woocommerce-cart-order-summary-taxes-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-taxes-block --></div>\n<!-- /wp:woocommerce/cart-order-summary-block -->\n\n<!-- wp:woocommerce/cart-express-payment-block -->\n<div class="wp-block-woocommerce-cart-express-payment-block"></div>\n<!-- /wp:woocommerce/cart-express-payment-block -->\n\n<!-- wp:woocommerce/proceed-to-checkout-block -->\n<div class="wp-block-woocommerce-proceed-to-checkout-block"></div>\n<!-- /wp:woocommerce/proceed-to-checkout-block -->\n\n<!-- wp:woocommerce/cart-accepted-payment-methods-block -->\n<div class="wp-block-woocommerce-cart-accepted-payment-methods-block"></div>\n<!-- /wp:woocommerce/cart-accepted-payment-methods-block --></div>\n<!-- /wp:woocommerce/cart-totals-block --></div>\n<!-- /wp:woocommerce/filled-cart-block -->\n\n<!-- wp:woocommerce/empty-cart-block -->\n<div class="wp-block-woocommerce-empty-cart-block"><!-- wp:heading {"textAlign":"center","className":"with-empty-cart-icon wc-block-cart__empty-cart__title"} -->\n<h2 class="wp-block-heading has-text-align-center with-empty-cart-icon wc-block-cart__empty-cart__title">Your cart is currently empty!</h2>\n<!-- /wp:heading -->\n\n<!-- wp:separator {"className":"is-style-dots"} -->\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-dots"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {"textAlign":"center"} -->\n<h2 class="wp-block-heading has-text-align-center">New in store</h2>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/product-new {"columns":4,"rows":1} /--></div>\n<!-- /wp:woocommerce/empt
|
|||
|
|
INSERT INTO `wp_posts` VALUES (9,1,'2025-02-05 21:05:44','2025-02-05 21:05:44','<!-- wp:woocommerce/checkout -->\n<div class="wp-block-woocommerce-checkout alignwide wc-block-checkout is-loading"><!-- wp:woocommerce/checkout-fields-block -->\n<div class="wp-block-woocommerce-checkout-fields-block"><!-- wp:woocommerce/checkout-express-payment-block -->\n<div class="wp-block-woocommerce-checkout-express-payment-block"></div>\n<!-- /wp:woocommerce/checkout-express-payment-block -->\n\n<!-- wp:woocommerce/checkout-contact-information-block -->\n<div class="wp-block-woocommerce-checkout-contact-information-block"></div>\n<!-- /wp:woocommerce/checkout-contact-information-block -->\n\n<!-- wp:woocommerce/checkout-shipping-method-block -->\n<div class="wp-block-woocommerce-checkout-shipping-method-block"></div>\n<!-- /wp:woocommerce/checkout-shipping-method-block -->\n\n<!-- wp:woocommerce/checkout-pickup-options-block -->\n<div class="wp-block-woocommerce-checkout-pickup-options-block"></div>\n<!-- /wp:woocommerce/checkout-pickup-options-block -->\n\n<!-- wp:woocommerce/checkout-shipping-address-block -->\n<div class="wp-block-woocommerce-checkout-shipping-address-block"></div>\n<!-- /wp:woocommerce/checkout-shipping-address-block -->\n\n<!-- wp:woocommerce/checkout-billing-address-block -->\n<div class="wp-block-woocommerce-checkout-billing-address-block"></div>\n<!-- /wp:woocommerce/checkout-billing-address-block -->\n\n<!-- wp:woocommerce/checkout-shipping-methods-block -->\n<div class="wp-block-woocommerce-checkout-shipping-methods-block"></div>\n<!-- /wp:woocommerce/checkout-shipping-methods-block -->\n\n<!-- wp:woocommerce/checkout-payment-block -->\n<div class="wp-block-woocommerce-checkout-payment-block"></div>\n<!-- /wp:woocommerce/checkout-payment-block -->\n\n<!-- wp:woocommerce/checkout-additional-information-block -->\n<div class="wp-block-woocommerce-checkout-additional-information-block"></div>\n<!-- /wp:woocommerce/checkout-additional-information-block -->\n\n<!-- wp:woocommerce/checkout-order-note-block -->\n<div class="wp-block-woocommerce-checkout-order-note-block"></div>\n<!-- /wp:woocommerce/checkout-order-note-block -->\n\n<!-- wp:woocommerce/checkout-terms-block -->\n<div class="wp-block-woocommerce-checkout-terms-block"></div>\n<!-- /wp:woocommerce/checkout-terms-block -->\n\n<!-- wp:woocommerce/checkout-actions-block -->\n<div class="wp-block-woocommerce-checkout-actions-block"></div>\n<!-- /wp:woocommerce/checkout-actions-block --></div>\n<!-- /wp:woocommerce/checkout-fields-block -->\n\n<!-- wp:woocommerce/checkout-totals-block -->\n<div class="wp-block-woocommerce-checkout-totals-block"><!-- wp:woocommerce/checkout-order-summary-block -->\n<div class="wp-block-woocommerce-checkout-order-summary-block"><!-- wp:woocommerce/checkout-order-summary-cart-items-block -->\n<div class="wp-block-woocommerce-checkout-order-summary-cart-items-block"></div>\n<!-- /wp:woocommerce/checkout-order-summary-cart-items-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-coupon-form-block -->\n<div class="wp-block-woocommerce-checkout-order-summary-coupon-form-block"></div>\n<!-- /wp:woocommerce/checkout-order-summary-coupon-form-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-subtotal-block -->\n<div class="wp-block-woocommerce-checkout-order-summary-subtotal-block"></div>\n<!-- /wp:woocommerce/checkout-order-summary-subtotal-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-fee-block -->\n<div class="wp-block-woocommerce-checkout-order-summary-fee-block"></div>\n<!-- /wp:woocommerce/checkout-order-summary-fee-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-discount-block -->\n<div class="wp-block-woocommerce-checkout-order-summary-discount-block"></div>\n<!-- /wp:woocommerce/checkout-order-summary-discount-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-shipping-block -->\n<div class="wp-block-woocommerce-checkout-order-summary-shipping-block"></div>\n<!-- /wp:woocommerce/checkout-order-summary-shipping-block -->\n\n<!-- wp:woocommerce/checkout-order-summary-taxes-block -->\n<div clas
|
|||
|
|
INSERT INTO `wp_posts` VALUES (10,1,'2025-02-05 21:05:44','2025-02-05 21:05:44','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2025-02-05 21:05:44','2025-02-05 21:05:44','',0,'http://localhost:8882/?page_id=10',0,'page','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (11,1,'2025-02-05 21:05:44','0000-00-00 00:00:00','<!-- wp:paragraph -->\n<p><b>This is a sample page.</b></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Overview</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we can’t offer you a full refund or exchange.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To be eligible for a return, your item must be unused and in the same condition that you received it. It must also be in the original packaging.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Several types of goods are exempt from being returned. Perishable goods such as food, flowers, newspapers or magazines cannot be returned. We also do not accept products that are intimate or sanitary goods, hazardous materials, or flammable liquids or gases.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Additional non-returnable items:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Gift cards</li>\n<li>Downloadable software products</li>\n<li>Some health and personal care items</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please do not send your purchase back to the manufacturer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are certain situations where only partial refunds are granted:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Book with obvious signs of use</li>\n<li>CD, DVD, VHS tape, software, video game, cassette tape, or vinyl record that has been opened.</li>\n<li>Any item not in its original condition, is damaged or missing parts for reasons not due to our error.</li>\n<li>Any item that is returned more than 30 days after delivery</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Refunds</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once your return is received and inspected, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment, within a certain amount of days.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h3 class="wp-block-heading">Late or missing refunds</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you haven’t received a refund yet, first check your bank account again.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then contact your credit card company, it may take some time before your refund is officially posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next contact your bank. There is often some processing time before a refund is posted.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you’ve done all of this and you still have not received your refund yet, please contact us at {email address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h3 class="wp-block-heading">Sale items</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Only regular priced items may be refunded. Sale items cannot be refunded.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Exchanges</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We only replace items if they are defective or damaged. If you need to exchange it for the same item, send us an email at {email address} and send your item to: {physical address}.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 class="wp-block-heading">Gifts</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return. Once the returned item is received,
|
|||
|
|
INSERT INTO `wp_posts` VALUES (12,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Inter, sans-serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter.svg"}','Inter','','publish','closed','closed','','inter','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=12',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (13,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"\\"Bodoni Moda\\", serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/bodoni-moda/bodoni-moda.svg"}','Bodoni Moda','','publish','closed','closed','','bodoni-moda','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=13',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (14,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Overpass, sans-serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass.svg"}','Overpass','','publish','closed','closed','','overpass','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=14',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (15,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"\\"Albert Sans\\", sans-serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/albert-sans/albert-sans.svg"}','Albert Sans','','publish','closed','closed','','albert-sans','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=15',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (16,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Lora, serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/lora/lora.svg"}','Lora','','publish','closed','closed','','lora','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=16',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (17,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Montserrat, sans-serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat.svg"}','Montserrat','','publish','closed','closed','','montserrat','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=17',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (18,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Arvo, serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/arvo/arvo.svg"}','Arvo','','publish','closed','closed','','arvo','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=18',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (19,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Rubik, sans-serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik.svg"}','Rubik','','publish','closed','closed','','rubik','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=19',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (20,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Newsreader, serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/newsreader/newsreader.svg"}','Newsreader','','publish','closed','closed','','newsreader','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=20',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (21,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Cormorant, serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant.svg"}','Cormorant','','publish','closed','closed','','cormorant','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=21',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (22,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"\\"Work Sans\\", sans-serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/work-sans/work-sans.svg"}','Work Sans','','publish','closed','closed','','work-sans','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=22',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (23,1,'2025-02-05 21:10:15','2025-02-05 21:10:15','{"fontFamily":"Raleway, sans-serif","preview":"https://s.w.org/images/fonts/wp-6.7/previews/raleway/raleway.svg"}','Raleway','','publish','closed','closed','','raleway','','','2025-02-05 21:10:15','2025-02-05 21:10:15','',0,'http://localhost:8882/?p=23',0,'wp_font_family','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (24,1,'2025-02-05 21:10:18','2025-02-05 21:10:18','{"fontFamily":"Inter","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-400-normal.svg"}','inter;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','internormal400100u0-10ffff','','','2025-02-05 21:10:18','2025-02-05 21:10:18','',12,'http://localhost:8882/?p=24',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (25,1,'2025-02-05 21:10:21','2025-02-05 21:10:21','{"fontFamily":"Inter","fontStyle":"normal","fontWeight":"500","src":"http://localhost:8882/wp-content/uploads/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-500-normal.svg"}','inter;normal;500;100%;U+0-10FFFF','','publish','closed','closed','','internormal500100u0-10ffff','','','2025-02-05 21:10:21','2025-02-05 21:10:21','',12,'http://localhost:8882/?p=25',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (26,1,'2025-02-05 21:10:24','2025-02-05 21:10:24','{"fontFamily":"Inter","fontStyle":"normal","fontWeight":"600","src":"http://localhost:8882/wp-content/uploads/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-600-normal.svg"}','inter;normal;600;100%;U+0-10FFFF','','publish','closed','closed','','internormal600100u0-10ffff','','','2025-02-05 21:10:24','2025-02-05 21:10:24','',12,'http://localhost:8882/?p=26',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (27,1,'2025-02-05 21:10:26','2025-02-05 21:10:26','{"fontFamily":"Inter","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dthiJ-Ek-7MeA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-400-italic.svg"}','inter;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','interitalic400100u0-10ffff','','','2025-02-05 21:10:26','2025-02-05 21:10:26','',12,'http://localhost:8882/?p=27',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (28,1,'2025-02-05 21:10:29','2025-02-05 21:10:29','{"fontFamily":"Inter","fontStyle":"italic","fontWeight":"500","src":"http://localhost:8882/wp-content/uploads/fonts/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc69thiJ-Ek-7MeA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-500-italic.svg"}','inter;italic;500;100%;U+0-10FFFF','','publish','closed','closed','','interitalic500100u0-10ffff','','','2025-02-05 21:10:29','2025-02-05 21:10:29','',12,'http://localhost:8882/?p=28',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (29,1,'2025-02-05 21:10:32','2025-02-05 21:10:32','{"fontFamily":"Inter","fontStyle":"italic","fontWeight":"600","src":"http://localhost:8882/wp-content/uploads/fonts/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcB9xhiJ-Ek-7MeA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-600-italic.svg"}','inter;italic;600;100%;U+0-10FFFF','','publish','closed','closed','','interitalic600100u0-10ffff','','','2025-02-05 21:10:32','2025-02-05 21:10:32','',12,'http://localhost:8882/?p=29',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (30,1,'2025-02-05 21:10:33','2025-02-05 21:10:33','{"fontFamily":"\\"Bodoni Moda\\"","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIVytVjMYwE.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/bodoni-moda/bodoni-moda-400-normal.svg"}','bodoni moda;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','bodoni-modanormal400100u0-10ffff','','','2025-02-05 21:10:33','2025-02-05 21:10:33','',13,'http://localhost:8882/?p=30',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (31,1,'2025-02-05 21:10:34','2025-02-05 21:10:34','{"fontFamily":"\\"Bodoni Moda\\"","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4tHrJcwHqoQ.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/bodoni-moda/bodoni-moda-400-italic.svg"}','bodoni moda;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','bodoni-modaitalic400100u0-10ffff','','','2025-02-05 21:10:34','2025-02-05 21:10:34','',13,'http://localhost:8882/?p=31',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (32,1,'2025-02-05 21:10:36','2025-02-05 21:10:36','{"fontFamily":"Overpass","fontStyle":"normal","fontWeight":"300","src":"http://localhost:8882/wp-content/uploads/fonts/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrPJCLtce-og.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass-300-normal.svg"}','overpass;normal;300;100%;U+0-10FFFF','','publish','closed','closed','','overpassnormal300100u0-10ffff','','','2025-02-05 21:10:36','2025-02-05 21:10:36','',14,'http://localhost:8882/?p=32',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (33,1,'2025-02-05 21:10:37','2025-02-05 21:10:37','{"fontFamily":"Overpass","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrPJCLtce-og.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass-400-normal.svg"}','overpass;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','overpassnormal400100u0-10ffff','','','2025-02-05 21:10:37','2025-02-05 21:10:37','',14,'http://localhost:8882/?p=33',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (34,1,'2025-02-05 21:10:39','2025-02-05 21:10:39','{"fontFamily":"Overpass","fontStyle":"italic","fontWeight":"300","src":"http://localhost:8882/wp-content/uploads/fonts/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqKl8Kuosgz.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass-300-italic.svg"}','overpass;italic;300;100%;U+0-10FFFF','','publish','closed','closed','','overpassitalic300100u0-10ffff','','','2025-02-05 21:10:39','2025-02-05 21:10:39','',14,'http://localhost:8882/?p=34',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (35,1,'2025-02-05 21:10:44','2025-02-05 21:10:44','{"fontFamily":"Overpass","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqKl8Kuosgz.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass-400-italic.svg"}','overpass;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','overpassitalic400100u0-10ffff','','','2025-02-05 21:10:44','2025-02-05 21:10:44','',14,'http://localhost:8882/?p=35',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (36,1,'2025-02-05 21:10:45','2025-02-05 21:10:45','{"fontFamily":"\\"Albert Sans\\"","fontStyle":"normal","fontWeight":"700","src":"http://localhost:8882/wp-content/uploads/fonts/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_qY32TxAj1g.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/albert-sans/albert-sans-700-normal.svg"}','albert sans;normal;700;100%;U+0-10FFFF','','publish','closed','closed','','albert-sansnormal700100u0-10ffff','','','2025-02-05 21:10:45','2025-02-05 21:10:45','',15,'http://localhost:8882/?p=36',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (37,1,'2025-02-05 21:10:46','2025-02-05 21:10:46','{"fontFamily":"\\"Albert Sans\\"","fontStyle":"italic","fontWeight":"700","src":"http://localhost:8882/wp-content/uploads/fonts/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6If3bRUz1r5t.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/albert-sans/albert-sans-700-italic.svg"}','albert sans;italic;700;100%;U+0-10FFFF','','publish','closed','closed','','albert-sansitalic700100u0-10ffff','','','2025-02-05 21:10:46','2025-02-05 21:10:46','',15,'http://localhost:8882/?p=37',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (38,1,'2025-02-05 21:10:48','2025-02-05 21:10:48','{"fontFamily":"Lora","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/0QI6MX1D_JOuGQbT0gvTJPa787weuyJDmKxemMeZ.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/lora/lora-400-normal.svg"}','lora;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','loranormal400100u0-10ffff','','','2025-02-05 21:10:48','2025-02-05 21:10:48','',16,'http://localhost:8882/?p=38',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (39,1,'2025-02-05 21:10:49','2025-02-05 21:10:49','{"fontFamily":"Lora","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkq18ndeZzZ0.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/lora/lora-400-italic.svg"}','lora;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','loraitalic400100u0-10ffff','','','2025-02-05 21:10:49','2025-02-05 21:10:49','',16,'http://localhost:8882/?p=39',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (40,1,'2025-02-05 21:10:54','2025-02-05 21:10:54','{"fontFamily":"Montserrat","fontStyle":"normal","fontWeight":"500","src":"http://localhost:8882/wp-content/uploads/fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat-500-normal.svg"}','montserrat;normal;500;100%;U+0-10FFFF','','publish','closed','closed','','montserratnormal500100u0-10ffff','','','2025-02-05 21:10:54','2025-02-05 21:10:54','',17,'http://localhost:8882/?p=40',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (41,1,'2025-02-05 21:10:56','2025-02-05 21:10:56','{"fontFamily":"Montserrat","fontStyle":"normal","fontWeight":"700","src":"http://localhost:8882/wp-content/uploads/fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat-700-normal.svg"}','montserrat;normal;700;100%;U+0-10FFFF','','publish','closed','closed','','montserratnormal700100u0-10ffff','','','2025-02-05 21:10:56','2025-02-05 21:10:56','',17,'http://localhost:8882/?p=41',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (42,1,'2025-02-05 21:10:58','2025-02-05 21:10:58','{"fontFamily":"Montserrat","fontStyle":"italic","fontWeight":"500","src":"http://localhost:8882/wp-content/uploads/fonts/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aXp-p7K5ILg.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat-500-italic.svg"}','montserrat;italic;500;100%;U+0-10FFFF','','publish','closed','closed','','montserratitalic500100u0-10ffff','','','2025-02-05 21:10:58','2025-02-05 21:10:58','',17,'http://localhost:8882/?p=42',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (43,1,'2025-02-05 21:11:07','2025-02-05 21:11:07','{"fontFamily":"Montserrat","fontStyle":"italic","fontWeight":"700","src":"http://localhost:8882/wp-content/uploads/fonts/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aXp-p7K5ILg.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat-700-italic.svg"}','montserrat;italic;700;100%;U+0-10FFFF','','publish','closed','closed','','montserratitalic700100u0-10ffff','','','2025-02-05 21:11:07','2025-02-05 21:11:07','',17,'http://localhost:8882/?p=43',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (44,1,'2025-02-05 21:11:08','2025-02-05 21:11:08','{"fontFamily":"Arvo","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/tDbD2oWUg0MKmSUa7Lzr7vs.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/arvo/arvo-400-normal.svg"}','arvo;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','arvonormal400100u0-10ffff','','','2025-02-05 21:11:08','2025-02-05 21:11:08','',18,'http://localhost:8882/?p=44',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (45,1,'2025-02-05 21:11:09','2025-02-05 21:11:09','{"fontFamily":"Arvo","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/tDbN2oWUg0MKqSIQ7Z7u_vvijQ.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/arvo/arvo-400-italic.svg"}','arvo;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','arvoitalic400100u0-10ffff','','','2025-02-05 21:11:09','2025-02-05 21:11:09','',18,'http://localhost:8882/?p=45',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (46,1,'2025-02-05 21:11:17','2025-02-05 21:11:17','<!-- wp:woocommerce/cart -->\n<div class="wp-block-woocommerce-cart alignwide is-loading"><!-- wp:woocommerce/filled-cart-block -->\n<div class="wp-block-woocommerce-filled-cart-block"><!-- wp:woocommerce/cart-items-block -->\n<div class="wp-block-woocommerce-cart-items-block"><!-- wp:woocommerce/cart-line-items-block -->\n<div class="wp-block-woocommerce-cart-line-items-block"></div>\n<!-- /wp:woocommerce/cart-line-items-block -->\n\n<!-- wp:woocommerce/cart-cross-sells-block -->\n<div class="wp-block-woocommerce-cart-cross-sells-block"><!-- wp:heading {"fontSize":"large"} -->\n<h2 class="wp-block-heading has-large-font-size">You may be interested in…</h2>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/cart-cross-sells-products-block -->\n<div class="wp-block-woocommerce-cart-cross-sells-products-block"></div>\n<!-- /wp:woocommerce/cart-cross-sells-products-block --></div>\n<!-- /wp:woocommerce/cart-cross-sells-block --></div>\n<!-- /wp:woocommerce/cart-items-block -->\n\n<!-- wp:woocommerce/cart-totals-block -->\n<div class="wp-block-woocommerce-cart-totals-block"><!-- wp:woocommerce/cart-order-summary-block -->\n<div class="wp-block-woocommerce-cart-order-summary-block"><!-- wp:woocommerce/cart-order-summary-heading-block -->\n<div class="wp-block-woocommerce-cart-order-summary-heading-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-heading-block -->\n\n<!-- wp:woocommerce/cart-order-summary-coupon-form-block -->\n<div class="wp-block-woocommerce-cart-order-summary-coupon-form-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-coupon-form-block -->\n\n<!-- wp:woocommerce/cart-order-summary-subtotal-block -->\n<div class="wp-block-woocommerce-cart-order-summary-subtotal-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-subtotal-block -->\n\n<!-- wp:woocommerce/cart-order-summary-fee-block -->\n<div class="wp-block-woocommerce-cart-order-summary-fee-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-fee-block -->\n\n<!-- wp:woocommerce/cart-order-summary-discount-block -->\n<div class="wp-block-woocommerce-cart-order-summary-discount-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-discount-block -->\n\n<!-- wp:woocommerce/cart-order-summary-shipping-block -->\n<div class="wp-block-woocommerce-cart-order-summary-shipping-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-shipping-block -->\n\n<!-- wp:woocommerce/cart-order-summary-taxes-block -->\n<div class="wp-block-woocommerce-cart-order-summary-taxes-block"></div>\n<!-- /wp:woocommerce/cart-order-summary-taxes-block --></div>\n<!-- /wp:woocommerce/cart-order-summary-block -->\n\n<!-- wp:woocommerce/cart-express-payment-block -->\n<div class="wp-block-woocommerce-cart-express-payment-block"></div>\n<!-- /wp:woocommerce/cart-express-payment-block -->\n\n<!-- wp:woocommerce/proceed-to-checkout-block -->\n<div class="wp-block-woocommerce-proceed-to-checkout-block"></div>\n<!-- /wp:woocommerce/proceed-to-checkout-block -->\n\n<!-- wp:woocommerce/cart-accepted-payment-methods-block -->\n<div class="wp-block-woocommerce-cart-accepted-payment-methods-block"></div>\n<!-- /wp:woocommerce/cart-accepted-payment-methods-block --></div>\n<!-- /wp:woocommerce/cart-totals-block --></div>\n<!-- /wp:woocommerce/filled-cart-block -->\n\n<!-- wp:woocommerce/empty-cart-block -->\n<div class="wp-block-woocommerce-empty-cart-block"><!-- wp:heading {"textAlign":"center","className":"with-empty-cart-icon wc-block-cart__empty-cart__title"} -->\n<h2 class="wp-block-heading has-text-align-center with-empty-cart-icon wc-block-cart__empty-cart__title">Your cart is currently empty!</h2>\n<!-- /wp:heading -->\n\n<!-- wp:separator {"className":"is-style-dots"} -->\n<hr class="wp-block-separator has-alpha-channel-opacity is-style-dots"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {"textAlign":"center"} -->\n<h2 class="wp-block-heading has-text-align-center">New in store</h2>\n<!-- /wp:heading -->\n\n<!-- wp:woocommerce/product-new {"columns":4,"rows":1} /--></div>\n<!-- /wp:woocommerce/emp
|
|||
|
|
INSERT INTO `wp_posts` VALUES (47,1,'2025-02-05 21:11:17','2025-02-05 21:11:17','{"fontFamily":"Rubik","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1VU80V4bVkA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik-400-normal.svg"}','rubik;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','rubiknormal400100u0-10ffff','','','2025-02-05 21:11:17','2025-02-05 21:11:17','',19,'http://localhost:8882/?p=47',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (48,1,'2025-02-05 21:11:20','2025-02-05 21:11:20','{"fontFamily":"Rubik","fontStyle":"normal","fontWeight":"800","src":"http://localhost:8882/wp-content/uploads/fonts/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1VU80V4bVkA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik-800-normal.svg"}','rubik;normal;800;100%;U+0-10FFFF','','publish','closed','closed','','rubiknormal800100u0-10ffff','','','2025-02-05 21:11:20','2025-02-05 21:11:20','',19,'http://localhost:8882/?p=48',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (49,1,'2025-02-05 21:11:25','2025-02-05 21:11:25','{"fontFamily":"Rubik","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0U1dYPFkJ1O.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik-400-italic.svg"}','rubik;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','rubikitalic400100u0-10ffff','','','2025-02-05 21:11:25','2025-02-05 21:11:25','',19,'http://localhost:8882/?p=49',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (50,1,'2025-02-05 21:12:05','2025-02-05 21:12:05','{"fontFamily":"Rubik","fontStyle":"italic","fontWeight":"800","src":"http://localhost:8882/wp-content/uploads/fonts/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEU1dYPFkJ1O.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik-800-italic.svg"}','rubik;italic;800;100%;U+0-10FFFF','','publish','closed','closed','','rubikitalic800100u0-10ffff','','','2025-02-05 21:12:05','2025-02-05 21:12:05','',19,'http://localhost:8882/?p=50',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (51,1,'2025-02-05 21:12:07','2025-02-05 21:12:07','{"fontFamily":"Newsreader","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ACexEPjCggA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/newsreader/newsreader-400-normal.svg"}','newsreader;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','newsreadernormal400100u0-10ffff','','','2025-02-05 21:12:07','2025-02-05 21:12:07','',20,'http://localhost:8882/?p=51',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (52,1,'2025-02-05 21:12:14','2025-02-05 21:12:14','{"fontFamily":"Newsreader","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZFHDWwgECi.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/newsreader/newsreader-400-italic.svg"}','newsreader;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','newsreaderitalic400100u0-10ffff','','','2025-02-05 21:12:14','2025-02-05 21:12:14','',20,'http://localhost:8882/?p=52',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (53,1,'2025-02-05 21:12:16','2025-02-05 21:12:16','{"fontFamily":"Cormorant","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Fg7A2uwYs.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant-400-normal.svg"}','cormorant;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','cormorantnormal400100u0-10ffff','','','2025-02-05 21:12:16','2025-02-05 21:12:16','',21,'http://localhost:8882/?p=53',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (54,1,'2025-02-05 21:12:50','2025-02-05 21:12:50','{"fontFamily":"Cormorant","fontStyle":"normal","fontWeight":"500","src":"http://localhost:8882/wp-content/uploads/fonts/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Fg7A2uwYs.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant-500-normal.svg"}','cormorant;normal;500;100%;U+0-10FFFF','','publish','closed','closed','','cormorantnormal500100u0-10ffff','','','2025-02-05 21:12:50','2025-02-05 21:12:50','',21,'http://localhost:8882/?p=54',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (55,1,'2025-02-05 21:12:55','2025-02-05 21:12:55','{"fontFamily":"Cormorant","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq7S-r0YvxdA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant-400-italic.svg"}','cormorant;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','cormorantitalic400100u0-10ffff','','','2025-02-05 21:12:55','2025-02-05 21:12:55','',21,'http://localhost:8882/?p=55',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (56,1,'2025-02-05 21:12:58','2025-02-05 21:12:58','{"fontFamily":"Cormorant","fontStyle":"italic","fontWeight":"500","src":"http://localhost:8882/wp-content/uploads/fonts/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq7S-r0YvxdA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant-500-italic.svg"}','cormorant;italic;500;100%;U+0-10FFFF','','publish','closed','closed','','cormorantitalic500100u0-10ffff','','','2025-02-05 21:12:58','2025-02-05 21:12:58','',21,'http://localhost:8882/?p=56',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (57,1,'2025-02-05 21:13:00','2025-02-05 21:13:00','{"fontFamily":"\\"Work Sans\\"","fontStyle":"normal","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNi0Dp6_cOyA.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/work-sans/work-sans-400-normal.svg"}','work sans;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','work-sansnormal400100u0-10ffff','','','2025-02-05 21:13:00','2025-02-05 21:13:00','',22,'http://localhost:8882/?p=57',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (58,1,'2025-02-05 21:13:01','2025-02-05 21:13:01','{"fontFamily":"\\"Work Sans\\"","fontStyle":"italic","fontWeight":"400","src":"http://localhost:8882/wp-content/uploads/fonts/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJpo3ZKyDSQQ.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/work-sans/work-sans-400-italic.svg"}','work sans;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','work-sansitalic400100u0-10ffff','','','2025-02-05 21:13:01','2025-02-05 21:13:01','',22,'http://localhost:8882/?p=58',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (59,1,'2025-02-05 21:13:03','2025-02-05 21:13:03','{"fontFamily":"Raleway","fontStyle":"normal","fontWeight":"700","src":"http://localhost:8882/wp-content/uploads/fonts/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCKNLA3JC9c.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/raleway/raleway-700-normal.svg"}','raleway;normal;700;100%;U+0-10FFFF','','publish','closed','closed','','ralewaynormal700100u0-10ffff','','','2025-02-05 21:13:03','2025-02-05 21:13:03','',23,'http://localhost:8882/?p=59',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (60,1,'2025-02-05 21:13:07','2025-02-05 21:13:07','{"fontFamily":"Raleway","fontStyle":"italic","fontWeight":"700","src":"http://localhost:8882/wp-content/uploads/fonts/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrEVIT9c2c8.woff2","preview":"https://s.w.org/images/fonts/wp-6.7/previews/raleway/raleway-700-italic.svg"}','raleway;italic;700;100%;U+0-10FFFF','','publish','closed','closed','','ralewayitalic700100u0-10ffff','','','2025-02-05 21:13:07','2025-02-05 21:13:07','',23,'http://localhost:8882/?p=60',0,'wp_font_face','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (61,1,'2025-02-05 21:15:52','2025-02-05 21:15:52','[mailpoet_page]','MailPoet Page','','publish','closed','closed','','subscriptions','','','2025-02-05 21:15:52','2025-02-05 21:15:52','',0,'http://localhost:8882/?p=61',0,'mailpoet_page','',0);
|
|||
|
|
INSERT INTO `wp_posts` VALUES (62,1,'2025-02-05 21:15:52','2025-02-05 21:15:52','[mailpoet_page]','MailPoet Page','','publish','closed','closed','','captcha','','','2025-02-05 21:15:52','2025-02-05 21:15:52','',0,'http://localhost:8882/?p=62',0,'mailpoet_page','',0);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_actionscheduler_actions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
|
|||
|
|
CREATE TABLE `wp_actionscheduler_actions` (
|
|||
|
|
`action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`hook` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`status` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`priority` tinyint unsigned NOT NULL DEFAULT '10',
|
|||
|
|
`args` varchar(191),
|
|||
|
|
`schedule` longtext,
|
|||
|
|
`group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`attempts` int(11) NOT NULL DEFAULT '0',
|
|||
|
|
`last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`claim_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`extended_args` varchar(8000) DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`action_id`),
|
|||
|
|
KEY `claim_id_status_scheduled_date_gmt` (`claim_id`, `status`(20), `scheduled_date_gmt`),
|
|||
|
|
KEY `last_attempt_gmt` (`last_attempt_gmt`),
|
|||
|
|
KEY `group_id` (`group_id`),
|
|||
|
|
KEY `args` (`args`(100)),
|
|||
|
|
KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
|
|||
|
|
KEY `status_scheduled_date_gmt` (`status`(20), `scheduled_date_gmt`),
|
|||
|
|
KEY `hook_status_scheduled_date_gmt` (`hook`(100), `status`(20), `scheduled_date_gmt`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_actionscheduler_actions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (7,'woocommerce_cleanup_draft_orders','complete','2025-02-05 21:05:55','2025-02-05 21:05:55',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',1,1,'2025-02-05 21:07:19','2025-02-05 21:07:19',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (8,'woocommerce_install_assembler_fonts','complete','2025-02-05 21:07:05','2025-02-05 21:07:05',10,'[]','O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"',1,1,'2025-02-05 21:13:07','2025-02-05 21:13:07',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (9,'fetch_patterns','complete','2025-02-05 21:07:05','2025-02-05 21:07:05',10,'[]','O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"',1,1,'2025-02-05 21:13:14','2025-02-05 21:13:14',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (10,'woocommerce_cleanup_draft_orders','pending','2025-02-06 21:07:19','2025-02-06 21:07:19',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (11,'woocommerce_plugins_install_and_activate_async_callback','complete','2025-02-05 21:11:11','2025-02-05 21:11:11',10,'[["woocommerce-payments","google-listings-and-ads","mailpoet","jetpack","woocommerce-services","woocommerce-services"],"67a3d3efb9ca8"]','O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"',1,1,'2025-02-05 21:15:53','2025-02-05 21:15:53',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (12,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:16:10','2025-02-05 21:16:10',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:17:22','2025-02-05 21:17:22',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (13,'mailpoet/cron/daemon-run','complete','2025-02-05 21:17:09','2025-02-05 21:17:09',10,'[]','O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"',2,1,'2025-02-05 21:17:40','2025-02-05 21:17:40',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (14,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:19:22','2025-02-05 21:19:22',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:19:54','2025-02-05 21:19:54',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (15,'mailpoet/cron/daemon-run','complete','2025-02-05 21:17:40','2025-02-05 21:17:40',10,'[]','O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"',2,1,'2025-02-05 21:19:54','2025-02-05 21:19:54',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (16,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:21:54','2025-02-05 21:21:54',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:21:55','2025-02-05 21:21:55',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (17,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:23:55','2025-02-05 21:23:55',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:23:56','2025-02-05 21:23:56',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (18,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:25:56','2025-02-05 21:25:56',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:25:58','2025-02-05 21:25:58',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (19,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:27:58','2025-02-05 21:27:58',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:28:22','2025-02-05 21:28:22',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (20,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:30:22','2025-02-05 21:30:22',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:30:48','2025-02-05 21:30:48',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (21,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:32:48','2025-02-05 21:32:48',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:33:19','2025-02-05 21:33:19',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (22,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:35:19','2025-02-05 21:35:19',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:35:21','2025-02-05 21:35:21',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (23,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:37:21','2025-02-05 21:37:21',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:37:25','2025-02-05 21:37:25',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (24,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:39:25','2025-02-05 21:39:25',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:40:23','2025-02-05 21:40:23',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (25,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:42:23','2025-02-05 21:42:23',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:42:25','2025-02-05 21:42:25',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (26,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:44:25','2025-02-05 21:44:25',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:44:26','2025-02-05 21:44:26',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (27,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:46:26','2025-02-05 21:46:26',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:46:29','2025-02-05 21:46:29',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (28,'mailpoet/cron/daemon-run','complete','2025-02-05 21:46:26','2025-02-05 21:46:26',10,'[]','O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"',2,1,'2025-02-05 21:46:29','2025-02-05 21:46:29',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (29,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:48:29','2025-02-05 21:48:29',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 21:52:16','2025-02-05 21:52:16',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (30,'mailpoet/cron/daemon-trigger','complete','2025-02-05 21:54:16','2025-02-05 21:54:16',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 22:00:01','2025-02-05 22:00:01',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (31,'mailpoet/cron/daemon-trigger','complete','2025-02-05 22:02:01','2025-02-05 22:02:01',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,1,'2025-02-05 22:02:16','2025-02-05 22:02:16',0,NULL);
|
|||
|
|
INSERT INTO `wp_actionscheduler_actions` VALUES (32,'mailpoet/cron/daemon-trigger','pending','2025-02-05 22:04:16','2025-02-05 22:04:16',10,'[]','O:32:"ActionScheduler_IntervalSchedule":5:{s:22:"',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_actionscheduler_claims`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
|
|||
|
|
CREATE TABLE `wp_actionscheduler_claims` (
|
|||
|
|
`claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
PRIMARY KEY (`claim_id`),
|
|||
|
|
KEY `date_created_gmt` (`date_created_gmt`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_actionscheduler_groups`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
|
|||
|
|
CREATE TABLE `wp_actionscheduler_groups` (
|
|||
|
|
`group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`slug` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`group_id`),
|
|||
|
|
KEY `slug` (`slug`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_actionscheduler_groups`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'');
|
|||
|
|
INSERT INTO `wp_actionscheduler_groups` VALUES (2,'mailpoet-cron');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_actionscheduler_logs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
|
|||
|
|
CREATE TABLE `wp_actionscheduler_logs` (
|
|||
|
|
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`action_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`message` text NOT NULL DEFAULT '',
|
|||
|
|
`log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
PRIMARY KEY (`log_id`),
|
|||
|
|
KEY `log_date_gmt` (`log_date_gmt`),
|
|||
|
|
KEY `action_id` (`action_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_actionscheduler_logs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (1,7,'action created','2025-02-05 21:05:55','2025-02-05 21:05:55');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (2,8,'action created','2025-02-05 21:07:05','2025-02-05 21:07:05');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (3,9,'action created','2025-02-05 21:07:05','2025-02-05 21:07:05');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (4,7,'action started via WP Cron','2025-02-05 21:07:19','2025-02-05 21:07:19');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (5,7,'action complete via WP Cron','2025-02-05 21:07:19','2025-02-05 21:07:19');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (6,10,'action created','2025-02-05 21:07:19','2025-02-05 21:07:19');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (7,8,'action started via Async Request','2025-02-05 21:10:09','2025-02-05 21:10:09');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (8,11,'action created','2025-02-05 21:11:11','2025-02-05 21:11:11');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (9,8,'action complete via Async Request','2025-02-05 21:13:07','2025-02-05 21:13:07');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (10,9,'action started via Async Request','2025-02-05 21:13:12','2025-02-05 21:13:12');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (11,9,'action complete via Async Request','2025-02-05 21:13:14','2025-02-05 21:13:14');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (12,11,'action started via Async Request','2025-02-05 21:13:15','2025-02-05 21:13:15');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (13,11,'action complete via Async Request','2025-02-05 21:15:53','2025-02-05 21:15:53');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (14,12,'action created','2025-02-05 21:16:10','2025-02-05 21:16:10');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (15,12,'action started via Async Request','2025-02-05 21:17:09','2025-02-05 21:17:09');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (16,13,'action created','2025-02-05 21:17:09','2025-02-05 21:17:09');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (17,12,'action complete via Async Request','2025-02-05 21:17:22','2025-02-05 21:17:22');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (18,14,'action created','2025-02-05 21:17:22','2025-02-05 21:17:22');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (19,13,'action started via Async Request','2025-02-05 21:17:38','2025-02-05 21:17:38');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (20,13,'action complete via Async Request','2025-02-05 21:17:40','2025-02-05 21:17:40');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (21,15,'action created','2025-02-05 21:17:40','2025-02-05 21:17:40');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (22,15,'action started via WP Cron','2025-02-05 21:19:53','2025-02-05 21:19:53');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (23,15,'action complete via WP Cron','2025-02-05 21:19:54','2025-02-05 21:19:54');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (24,14,'action started via WP Cron','2025-02-05 21:19:54','2025-02-05 21:19:54');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (25,14,'action complete via WP Cron','2025-02-05 21:19:54','2025-02-05 21:19:54');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (26,16,'action created','2025-02-05 21:19:54','2025-02-05 21:19:54');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (27,16,'action started via WP Cron','2025-02-05 21:21:54','2025-02-05 21:21:54');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (28,16,'action complete via WP Cron','2025-02-05 21:21:55','2025-02-05 21:21:55');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (29,17,'action created','2025-02-05 21:21:55','2025-02-05 21:21:55');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (30,17,'action started via WP Cron','2025-02-05 21:23:56','2025-02-05 21:23:56');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (31,17,'action complete via WP Cron','2025-02-05 21:23:56','2025-02-05 21:23:56');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (32,18,'action created','2025-02-05 21:23:56','2025-02-05 21:23:56');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (33,18,'action started via WP Cron','2025-02-05 21:25:57','2025-02-05 21:25:57');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (34,18,'action complete via WP Cron','2025-02-05 21:25:58','2025-02-05 21:25:58');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (35,19,'action created','2025-02-05 21:25:58','2025-02-05 21:25:58');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (36,19,'action started via WP Cron','2025-02-05 21:28:22','2025-02-05 21:28:22');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (37,19,'action complete via WP Cron','2025-02-05 21:28:22','2025-02-05 21:28:22');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (38,20,'action created','2025-02-05 21:28:22','2025-02-05 21:28:22');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (39,20,'action started via WP Cron','2025-02-05 21:30:48','2025-02-05 21:30:48');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (40,20,'action complete via WP Cron','2025-02-05 21:30:48','2025-02-05 21:30:48');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (41,21,'action created','2025-02-05 21:30:48','2025-02-05 21:30:48');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (42,21,'action started via WP Cron','2025-02-05 21:33:19','2025-02-05 21:33:19');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (43,21,'action complete via WP Cron','2025-02-05 21:33:19','2025-02-05 21:33:19');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (44,22,'action created','2025-02-05 21:33:19','2025-02-05 21:33:19');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (45,22,'action started via WP Cron','2025-02-05 21:35:21','2025-02-05 21:35:21');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (46,22,'action complete via WP Cron','2025-02-05 21:35:21','2025-02-05 21:35:21');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (47,23,'action created','2025-02-05 21:35:21','2025-02-05 21:35:21');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (48,23,'action started via WP Cron','2025-02-05 21:37:25','2025-02-05 21:37:25');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (49,23,'action complete via WP Cron','2025-02-05 21:37:25','2025-02-05 21:37:25');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (50,24,'action created','2025-02-05 21:37:25','2025-02-05 21:37:25');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (51,24,'action started via WP Cron','2025-02-05 21:40:23','2025-02-05 21:40:23');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (52,24,'action complete via WP Cron','2025-02-05 21:40:23','2025-02-05 21:40:23');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (53,25,'action created','2025-02-05 21:40:23','2025-02-05 21:40:23');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (54,25,'action started via WP Cron','2025-02-05 21:42:25','2025-02-05 21:42:25');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (55,25,'action complete via WP Cron','2025-02-05 21:42:25','2025-02-05 21:42:25');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (56,26,'action created','2025-02-05 21:42:25','2025-02-05 21:42:25');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (57,26,'action started via WP Cron','2025-02-05 21:44:26','2025-02-05 21:44:26');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (58,26,'action complete via WP Cron','2025-02-05 21:44:26','2025-02-05 21:44:26');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (59,27,'action created','2025-02-05 21:44:26','2025-02-05 21:44:26');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (60,27,'action started via WP Cron','2025-02-05 21:46:26','2025-02-05 21:46:26');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (61,28,'action created','2025-02-05 21:46:26','2025-02-05 21:46:26');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (62,28,'action started via WP Cron','2025-02-05 21:46:28','2025-02-05 21:46:28');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (63,28,'action complete via WP Cron','2025-02-05 21:46:29','2025-02-05 21:46:29');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (64,27,'action complete via WP Cron','2025-02-05 21:46:29','2025-02-05 21:46:29');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (65,29,'action created','2025-02-05 21:46:29','2025-02-05 21:46:29');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (66,29,'action started via WP Cron','2025-02-05 21:52:16','2025-02-05 21:52:16');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (67,29,'action complete via WP Cron','2025-02-05 21:52:16','2025-02-05 21:52:16');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (68,30,'action created','2025-02-05 21:52:16','2025-02-05 21:52:16');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (69,30,'action started via WP Cron','2025-02-05 22:00:01','2025-02-05 22:00:01');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (70,30,'action complete via WP Cron','2025-02-05 22:00:01','2025-02-05 22:00:01');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (71,31,'action created','2025-02-05 22:00:01','2025-02-05 22:00:01');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (72,31,'action started via WP Cron','2025-02-05 22:02:16','2025-02-05 22:02:16');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (73,31,'action complete via WP Cron','2025-02-05 22:02:16','2025-02-05 22:02:16');
|
|||
|
|
INSERT INTO `wp_actionscheduler_logs` VALUES (74,32,'action created','2025-02-05 22:02:16','2025-02-05 22:02:16');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_sessions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_sessions` (
|
|||
|
|
`session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`session_key` char(32) NOT NULL DEFAULT '',
|
|||
|
|
`session_value` longtext NOT NULL DEFAULT '',
|
|||
|
|
`session_expiry` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`session_id`),
|
|||
|
|
UNIQUE KEY `session_key` (`session_key`(32))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_woocommerce_sessions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_woocommerce_sessions` VALUES (1,1,'a:7:{s:4:"cart";s:6:"a:0:{}";s:11:"cart_totals";s:367:"a:15:{s:8:"subtotal";i:0;s:12:"subtotal_tax";i:0;s:14:"shipping_total";i:0;s:12:"shipping_tax";i:0;s:14:"shipping_taxes";a:0:{}s:14:"discount_total";i:0;s:12:"discount_tax";i:0;s:19:"cart_contents_total";i:0;s:17:"cart_contents_tax";i:0;s:19:"cart_contents_taxes";a:0:{}s:9:"fee_total";i:0;s:7:"fee_tax";i:0;s:9:"fee_taxes";a:0:{}s:5:"total";i:0;s:9:"total_tax";i:0;}";s:15:"applied_coupons";s:6:"a:0:{}";s:22:"coupon_discount_totals";s:6:"a:0:{}";s:26:"coupon_discount_tax_totals";s:6:"a:0:{}";s:21:"removed_cart_contents";s:6:"a:0:{}";s:8:"customer";s:762:"a:28:{s:2:"id";s:1:"1";s:13:"date_modified";s:0:"";s:10:"first_name";s:0:"";s:9:"last_name";s:0:"";s:7:"company";s:0:"";s:5:"phone";s:0:"";s:5:"email";s:19:"admin@localhost.com";s:7:"address";s:0:"";s:9:"address_1";s:0:"";s:9:"address_2";s:0:"";s:4:"city";s:0:"";s:5:"state";s:2:"CA";s:8:"postcode";s:0:"";s:7:"country";s:2:"US";s:19:"shipping_first_name";s:0:"";s:18:"shipping_last_name";s:0:"";s:16:"shipping_company";s:0:"";s:14:"shipping_phone";s:0:"";s:16:"shipping_address";s:0:"";s:18:"shipping_address_1";s:0:"";s:18:"shipping_address_2";s:0:"";s:13:"shipping_city";s:0:"";s:14:"shipping_state";s:2:"CA";s:17:"shipping_postcode";s:0:"";s:16:"shipping_country";s:2:"US";s:13:"is_vat_exempt";s:0:"";s:19:"calculated_shipping";s:0:"";s:9:"meta_data";a:0:{}}";}',1738962359);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_api_keys`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_api_keys` (
|
|||
|
|
`key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`description` varchar(200),
|
|||
|
|
`permissions` varchar(10) NOT NULL DEFAULT '',
|
|||
|
|
`consumer_key` char(64) NOT NULL DEFAULT '',
|
|||
|
|
`consumer_secret` char(43) NOT NULL DEFAULT '',
|
|||
|
|
`nonces` longtext,
|
|||
|
|
`truncated_key` char(7) NOT NULL DEFAULT '',
|
|||
|
|
`last_access` datetime DEFAULT null,
|
|||
|
|
PRIMARY KEY (`key_id`),
|
|||
|
|
KEY `consumer_secret` (`consumer_secret`(43)),
|
|||
|
|
KEY `consumer_key` (`consumer_key`(64))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
|
|||
|
|
`attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`attribute_name` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`attribute_label` varchar(200),
|
|||
|
|
`attribute_type` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`attribute_orderby` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`attribute_public` int(1) NOT NULL DEFAULT 1,
|
|||
|
|
PRIMARY KEY (`attribute_id`),
|
|||
|
|
KEY `attribute_name` (`attribute_name`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
|
|||
|
|
`permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`download_id` varchar(36) NOT NULL DEFAULT '',
|
|||
|
|
`product_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`order_key` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`user_email` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`user_id` bigint(20) unsigned,
|
|||
|
|
`downloads_remaining` varchar(9),
|
|||
|
|
`access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`access_expires` datetime DEFAULT null,
|
|||
|
|
`download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`permission_id`),
|
|||
|
|
KEY `user_order_remaining_expires` (`user_id`, `order_id`, `downloads_remaining`(9), `access_expires`),
|
|||
|
|
KEY `order_id` (`order_id`),
|
|||
|
|
KEY `download_order_product` (`download_id`(36), `order_id`, `product_id`),
|
|||
|
|
KEY `download_order_key_product` (`product_id`, `order_id`, `order_key`(100), `download_id`(36))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_order_items`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_order_items` (
|
|||
|
|
`order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`order_item_name` text NOT NULL DEFAULT '',
|
|||
|
|
`order_item_type` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`order_item_id`),
|
|||
|
|
KEY `order_id` (`order_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_order_itemmeta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_order_itemmeta` (
|
|||
|
|
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`order_item_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`meta_key` varchar(255) DEFAULT NULL,
|
|||
|
|
`meta_value` longtext,
|
|||
|
|
PRIMARY KEY (`meta_id`),
|
|||
|
|
KEY `meta_key` (`meta_key`(100)),
|
|||
|
|
KEY `order_item_id` (`order_item_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_tax_rates`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_tax_rates` (
|
|||
|
|
`tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`tax_rate_country` varchar(2) NOT NULL DEFAULT '',
|
|||
|
|
`tax_rate_state` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`tax_rate` varchar(8) NOT NULL DEFAULT '',
|
|||
|
|
`tax_rate_name` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`tax_rate_priority` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`tax_rate_compound` int(1) NOT NULL DEFAULT 0,
|
|||
|
|
`tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
|
|||
|
|
`tax_rate_order` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`tax_rate_class` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`tax_rate_id`),
|
|||
|
|
KEY `tax_rate_priority` (`tax_rate_priority`),
|
|||
|
|
KEY `tax_rate_class` (`tax_rate_class`(100)),
|
|||
|
|
KEY `tax_rate_state` (`tax_rate_state`(100)),
|
|||
|
|
KEY `tax_rate_country` (`tax_rate_country`(2))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_tax_rate_locations`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
|
|||
|
|
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`location_code` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`tax_rate_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`location_type` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`location_id`),
|
|||
|
|
KEY `location_type_code` (`location_type`(40), `location_code`(100)),
|
|||
|
|
KEY `tax_rate_id` (`tax_rate_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_shipping_zones`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_shipping_zones` (
|
|||
|
|
`zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`zone_name` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`zone_order` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`zone_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_woocommerce_shipping_zones`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_woocommerce_shipping_zones` VALUES (1,'United States (US)',0);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
|
|||
|
|
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`zone_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`location_code` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`location_type` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`location_id`),
|
|||
|
|
KEY `location_type_code` (`location_type`(40), `location_code`(100)),
|
|||
|
|
KEY `zone_id` (`zone_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_woocommerce_shipping_zone_locations` VALUES (1,1,'US','country');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
|
|||
|
|
`zone_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`method_id` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`method_order` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`is_enabled` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
|
PRIMARY KEY (`instance_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_woocommerce_shipping_zone_methods` VALUES (1,1,'free_shipping',1,1);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_payment_tokens`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_payment_tokens` (
|
|||
|
|
`token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`gateway_id` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`token` text NOT NULL DEFAULT '',
|
|||
|
|
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`type` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`is_default` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`token_id`),
|
|||
|
|
KEY `user_id` (`user_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
|
|||
|
|
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`payment_token_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`meta_key` varchar(255),
|
|||
|
|
`meta_value` longtext,
|
|||
|
|
PRIMARY KEY (`meta_id`),
|
|||
|
|
KEY `meta_key` (`meta_key`(100)),
|
|||
|
|
KEY `payment_token_id` (`payment_token_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_woocommerce_log`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_woocommerce_log`;
|
|||
|
|
CREATE TABLE `wp_woocommerce_log` (
|
|||
|
|
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`timestamp` datetime NOT NULL,
|
|||
|
|
`level` smallint(4) NOT NULL DEFAULT 0,
|
|||
|
|
`source` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`message` longtext NOT NULL DEFAULT '',
|
|||
|
|
`context` longtext,
|
|||
|
|
PRIMARY KEY (`log_id`),
|
|||
|
|
KEY `level` (`level`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_webhooks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_webhooks`;
|
|||
|
|
CREATE TABLE `wp_wc_webhooks` (
|
|||
|
|
`webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`status` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`name` text NOT NULL DEFAULT '',
|
|||
|
|
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`delivery_url` text NOT NULL DEFAULT '',
|
|||
|
|
`secret` text NOT NULL DEFAULT '',
|
|||
|
|
`topic` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`api_version` smallint(4) NOT NULL DEFAULT 0,
|
|||
|
|
`failure_count` smallint(10) NOT NULL DEFAULT '0',
|
|||
|
|
`pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`webhook_id`),
|
|||
|
|
KEY `user_id` (`user_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_download_log`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_download_log`;
|
|||
|
|
CREATE TABLE `wp_wc_download_log` (
|
|||
|
|
`download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`timestamp` datetime NOT NULL,
|
|||
|
|
`permission_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`user_id` bigint(20) unsigned,
|
|||
|
|
`user_ip_address` varchar(100) DEFAULT '',
|
|||
|
|
`KEY` timestamp(timestamp),
|
|||
|
|
PRIMARY KEY (`download_log_id`),
|
|||
|
|
KEY `permission_id` (`permission_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_product_meta_lookup`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
|
|||
|
|
CREATE TABLE `wp_wc_product_meta_lookup` (
|
|||
|
|
`product_id` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
`sku` varchar(100) DEFAULT '',
|
|||
|
|
`global_unique_id` varchar(100) 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) DEFAULT 'instock',
|
|||
|
|
`rating_count` bigint(20) DEFAULT 0,
|
|||
|
|
`average_rating` decimal(3,2) DEFAULT 0.00,
|
|||
|
|
`total_sales` bigint(20) DEFAULT 0,
|
|||
|
|
`tax_status` varchar(100) DEFAULT 'taxable',
|
|||
|
|
`tax_class` varchar(100) DEFAULT '',
|
|||
|
|
PRIMARY KEY (`product_id`),
|
|||
|
|
KEY `sku` (`sku`(100)),
|
|||
|
|
KEY `min_max_price` (`min_price`, `max_price`),
|
|||
|
|
KEY `onsale` (`onsale`),
|
|||
|
|
KEY `stock_quantity` (`stock_quantity`),
|
|||
|
|
KEY `stock_status` (`stock_status`(100)),
|
|||
|
|
KEY `downloadable` (`downloadable`),
|
|||
|
|
KEY `virtual` (`virtual`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_tax_rate_classes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
|
|||
|
|
CREATE TABLE `wp_wc_tax_rate_classes` (
|
|||
|
|
`tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`slug` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`tax_rate_class_id`),
|
|||
|
|
UNIQUE KEY `slug` (`slug`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_wc_tax_rate_classes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate');
|
|||
|
|
INSERT INTO `wp_wc_tax_rate_classes` VALUES (2,'Zero rate','zero-rate');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_reserved_stock`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
|
|||
|
|
CREATE TABLE `wp_wc_reserved_stock` (
|
|||
|
|
`order_id` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
`product_id` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
`stock_quantity` double NOT NULL DEFAULT 0,
|
|||
|
|
`timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
PRIMARY KEY (`order_id`, `product_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_rate_limits`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_rate_limits`;
|
|||
|
|
CREATE TABLE `wp_wc_rate_limits` (
|
|||
|
|
`rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`rate_limit_key` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`rate_limit_expiry` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`rate_limit_remaining` smallint(10) NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`rate_limit_id`),
|
|||
|
|
UNIQUE KEY `rate_limit_key` (`rate_limit_key`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_product_attributes_lookup`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_product_attributes_lookup`;
|
|||
|
|
CREATE TABLE `wp_wc_product_attributes_lookup` (
|
|||
|
|
`product_id` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
`product_or_parent_id` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
`taxonomy` varchar(32) NOT NULL DEFAULT '',
|
|||
|
|
`term_id` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
`is_variation_attribute` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
|
`in_stock` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`product_or_parent_id`, `term_id`, `product_id`, `taxonomy`),
|
|||
|
|
KEY `is_variation_attribute_term_id` (`is_variation_attribute`, `term_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_product_download_directories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_product_download_directories`;
|
|||
|
|
CREATE TABLE `wp_wc_product_download_directories` (
|
|||
|
|
`url_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`url` varchar(256) NOT NULL DEFAULT '',
|
|||
|
|
`enabled` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`url_id`),
|
|||
|
|
KEY `url` (`url`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_wc_product_download_directories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_wc_product_download_directories` VALUES (1,'file:///var/www/html/wp-content/uploads/woocommerce_uploads/',1);
|
|||
|
|
INSERT INTO `wp_wc_product_download_directories` VALUES (2,'http://localhost:8882/wp-content/uploads/woocommerce_uploads/',1);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_order_stats`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_order_stats`;
|
|||
|
|
CREATE TABLE `wp_wc_order_stats` (
|
|||
|
|
`order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`date_paid` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`date_completed` datetime DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`num_items_sold` int(11) NOT NULL DEFAULT 0,
|
|||
|
|
`total_sales` double NOT NULL DEFAULT 0,
|
|||
|
|
`tax_total` double NOT NULL DEFAULT 0,
|
|||
|
|
`shipping_total` double NOT NULL DEFAULT 0,
|
|||
|
|
`net_total` double NOT NULL DEFAULT 0,
|
|||
|
|
`returning_customer` tinyint(1) DEFAULT NULL,
|
|||
|
|
`status` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`customer_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`order_id`),
|
|||
|
|
KEY `status` (`status`(100)),
|
|||
|
|
KEY `customer_id` (`customer_id`),
|
|||
|
|
KEY `date_created` (`date_created`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_order_product_lookup`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
|
|||
|
|
CREATE TABLE `wp_wc_order_product_lookup` (
|
|||
|
|
`order_item_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`product_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`variation_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`customer_id` bigint(20) unsigned,
|
|||
|
|
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`product_qty` int(11) NOT NULL DEFAULT 0,
|
|||
|
|
`product_net_revenue` double NOT NULL DEFAULT 0,
|
|||
|
|
`product_gross_revenue` double NOT NULL DEFAULT 0,
|
|||
|
|
`coupon_amount` double NOT NULL DEFAULT 0,
|
|||
|
|
`tax_amount` double NOT NULL DEFAULT 0,
|
|||
|
|
`shipping_amount` double NOT NULL DEFAULT 0,
|
|||
|
|
`shipping_tax_amount` double NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`order_item_id`),
|
|||
|
|
KEY `date_created` (`date_created`),
|
|||
|
|
KEY `customer_id` (`customer_id`),
|
|||
|
|
KEY `product_id` (`product_id`),
|
|||
|
|
KEY `order_id` (`order_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_order_tax_lookup`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
|
|||
|
|
CREATE TABLE `wp_wc_order_tax_lookup` (
|
|||
|
|
`order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`tax_rate_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`shipping_tax` double NOT NULL DEFAULT 0,
|
|||
|
|
`order_tax` double NOT NULL DEFAULT 0,
|
|||
|
|
`total_tax` double NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`order_id`, `tax_rate_id`),
|
|||
|
|
KEY `date_created` (`date_created`),
|
|||
|
|
KEY `tax_rate_id` (`tax_rate_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_order_coupon_lookup`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
|
|||
|
|
CREATE TABLE `wp_wc_order_coupon_lookup` (
|
|||
|
|
`order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`coupon_id` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`discount_amount` double NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`order_id`, `coupon_id`),
|
|||
|
|
KEY `date_created` (`date_created`),
|
|||
|
|
KEY `coupon_id` (`coupon_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_admin_notes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_admin_notes`;
|
|||
|
|
CREATE TABLE `wp_wc_admin_notes` (
|
|||
|
|
`note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`type` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`locale` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`title` longtext NOT NULL DEFAULT '',
|
|||
|
|
`content` longtext NOT NULL DEFAULT '',
|
|||
|
|
`content_data` longtext DEFAULT null,
|
|||
|
|
`status` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`source` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|||
|
|
`date_reminder` datetime DEFAULT null,
|
|||
|
|
`is_snoozable` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
|
`layout` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`image` varchar(200) DEFAULT NULL,
|
|||
|
|
`is_deleted` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
|
`is_read` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
|
`icon` varchar(200) NOT NULL DEFAULT 'info',
|
|||
|
|
PRIMARY KEY (`note_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_wc_admin_notes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store''s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2025-02-05 21:05:53',NULL,0,'plain','',0,0,'info');
|
|||
|
|
INSERT INTO `wp_wc_admin_notes` VALUES (2,'wc-payments-notes-set-https-for-checkout','info','en_US','Enable secure checkout','Enable HTTPS on your checkout pages to display all available payment methods and protect your customers data.','{}','unactioned','woocommerce-payments','2025-02-05 21:16:35',NULL,0,'plain','',0,0,'info');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_admin_note_actions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
|
|||
|
|
CREATE TABLE `wp_wc_admin_note_actions` (
|
|||
|
|
`action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`note_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`label` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`query` longtext NOT NULL DEFAULT '',
|
|||
|
|
`status` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`actioned_text` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`nonce_action` varchar(255) DEFAULT NULL,
|
|||
|
|
`nonce_name` varchar(255) DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`action_id`),
|
|||
|
|
KEY `note_id` (`note_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_wc_admin_note_actions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'notify-refund-returns-page','Edit page','http://localhost:8882/wp-admin/post.php?post=11&action=edit','actioned','',NULL,NULL);
|
|||
|
|
INSERT INTO `wp_wc_admin_note_actions` VALUES (2,2,'wc-payments-notes-set-https-for-checkout','Read more','https://woocommerce.com/document/ssl-and-https/#woocommerce-force-ssl-setting','unactioned','',NULL,NULL);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_customer_lookup`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
|
|||
|
|
CREATE TABLE `wp_wc_customer_lookup` (
|
|||
|
|
`customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`user_id` bigint(20) unsigned DEFAULT NULL,
|
|||
|
|
`username` varchar(60) NOT NULL DEFAULT '',
|
|||
|
|
`first_name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`last_name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`email` varchar(100) DEFAULT NULL,
|
|||
|
|
`date_last_active` timestamp DEFAULT null,
|
|||
|
|
`date_registered` timestamp DEFAULT null,
|
|||
|
|
`country` char(2) NOT NULL DEFAULT '',
|
|||
|
|
`postcode` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`city` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`state` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`customer_id`),
|
|||
|
|
KEY `email` (`email`(100)),
|
|||
|
|
UNIQUE KEY `user_id` (`user_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_category_lookup`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_category_lookup`;
|
|||
|
|
CREATE TABLE `wp_wc_category_lookup` (
|
|||
|
|
`category_tree_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`category_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`category_tree_id`, `category_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_wc_category_lookup`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_wc_category_lookup` VALUES (15,15);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_orders`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_orders`;
|
|||
|
|
CREATE TABLE `wp_wc_orders` (
|
|||
|
|
`id` bigint(20) unsigned,
|
|||
|
|
`status` varchar(20),
|
|||
|
|
`currency` varchar(10),
|
|||
|
|
`type` varchar(20),
|
|||
|
|
`tax_amount` decimal(26,8),
|
|||
|
|
`total_amount` decimal(26,8),
|
|||
|
|
`customer_id` bigint(20) unsigned,
|
|||
|
|
`billing_email` varchar(320),
|
|||
|
|
`date_created_gmt` datetime,
|
|||
|
|
`date_updated_gmt` datetime,
|
|||
|
|
`parent_order_id` bigint(20) unsigned,
|
|||
|
|
`payment_method` varchar(100),
|
|||
|
|
`payment_method_title` text,
|
|||
|
|
`transaction_id` varchar(100),
|
|||
|
|
`ip_address` varchar(100),
|
|||
|
|
`user_agent` text,
|
|||
|
|
`customer_note` text,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `date_updated` (`date_updated_gmt`),
|
|||
|
|
KEY `parent_order_id` (`parent_order_id`),
|
|||
|
|
KEY `type_status_date` (`type`(20), `status`(20), `date_created_gmt`),
|
|||
|
|
KEY `billing_email` (`billing_email`(100)),
|
|||
|
|
KEY `customer_id_billing_email` (`customer_id`, `billing_email`(100)),
|
|||
|
|
KEY `date_created` (`date_created_gmt`),
|
|||
|
|
KEY `status` (`status`(20))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_order_addresses`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_order_addresses`;
|
|||
|
|
CREATE TABLE `wp_wc_order_addresses` (
|
|||
|
|
`id` bigint(20) unsigned AUTO_INCREMENT,
|
|||
|
|
`order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`address_type` varchar(20),
|
|||
|
|
`first_name` text,
|
|||
|
|
`last_name` text,
|
|||
|
|
`company` text,
|
|||
|
|
`address_1` text,
|
|||
|
|
`address_2` text,
|
|||
|
|
`city` text,
|
|||
|
|
`state` text,
|
|||
|
|
`postcode` text,
|
|||
|
|
`country` text,
|
|||
|
|
`email` varchar(320),
|
|||
|
|
`phone` varchar(100),
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `phone` (`phone`(100)),
|
|||
|
|
KEY `email` (`email`(100)),
|
|||
|
|
UNIQUE KEY `address_type_order_id` (`address_type`(20), `order_id`),
|
|||
|
|
KEY `order_id` (`order_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_order_operational_data`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_order_operational_data`;
|
|||
|
|
CREATE TABLE `wp_wc_order_operational_data` (
|
|||
|
|
`id` bigint(20) unsigned AUTO_INCREMENT,
|
|||
|
|
`order_id` bigint(20) unsigned,
|
|||
|
|
`created_via` varchar(100),
|
|||
|
|
`woocommerce_version` varchar(20),
|
|||
|
|
`prices_include_tax` tinyint(1),
|
|||
|
|
`coupon_usages_are_counted` tinyint(1),
|
|||
|
|
`download_permission_granted` tinyint(1),
|
|||
|
|
`cart_hash` varchar(100),
|
|||
|
|
`new_order_email_sent` tinyint(1),
|
|||
|
|
`order_key` varchar(100),
|
|||
|
|
`order_stock_reduced` tinyint(1),
|
|||
|
|
`date_paid_gmt` datetime,
|
|||
|
|
`date_completed_gmt` datetime,
|
|||
|
|
`shipping_tax_amount` decimal(26,8),
|
|||
|
|
`shipping_total_amount` decimal(26,8),
|
|||
|
|
`discount_tax_amount` decimal(26,8),
|
|||
|
|
`discount_total_amount` decimal(26,8),
|
|||
|
|
`recorded_sales` tinyint(1),
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `order_key` (`order_key`(100)),
|
|||
|
|
UNIQUE KEY `order_id` (`order_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_wc_orders_meta`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_wc_orders_meta`;
|
|||
|
|
CREATE TABLE `wp_wc_orders_meta` (
|
|||
|
|
`id` bigint(20) unsigned AUTO_INCREMENT,
|
|||
|
|
`order_id` bigint(20) unsigned,
|
|||
|
|
`meta_key` varchar(255),
|
|||
|
|
`meta_value` text,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `order_id_meta_key_meta_value` (`order_id`, `meta_key`(100), `meta_value`(100)),
|
|||
|
|
KEY `meta_key_value` (`meta_key`(100), `meta_value`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_segments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_segments`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_segments` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(90) NOT NULL DEFAULT '',
|
|||
|
|
`type` varchar(90) NOT NULL DEFAULT 'default',
|
|||
|
|
`description` varchar(250) NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`deleted_at` timestamp,
|
|||
|
|
`average_engagement_score` float unsigned,
|
|||
|
|
`average_engagement_score_updated_at` timestamp,
|
|||
|
|
`display_in_manage_subscription_page` NOT NULL DEFAULT 0,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `average_engagement_score_updated_at` (`average_engagement_score_updated_at`),
|
|||
|
|
UNIQUE KEY `name` (`name`(90))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_mailpoet_segments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_mailpoet_segments` VALUES (1,'WordPress Users','wp_users','This list contains all of your WordPress users.','2025-02-05 21:15:52','2025-02-05 21:15:52',NULL,NULL,NULL,0);
|
|||
|
|
INSERT INTO `wp_mailpoet_segments` VALUES (2,'WooCommerce Customers','woocommerce_users','This list contains all of your WooCommerce customers.','2025-02-05 21:15:52','2025-02-05 21:15:52',NULL,NULL,NULL,0);
|
|||
|
|
INSERT INTO `wp_mailpoet_segments` VALUES (3,'Newsletter mailing list','default','This list is automatically created when you install MailPoet.','2025-02-05 21:15:52','2025-02-05 21:15:52',NULL,NULL,NULL,0);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_settings`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_settings`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_settings` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(50) NOT NULL DEFAULT '',
|
|||
|
|
`value` longtext,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `name` (`name`(50))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_mailpoet_settings`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (1,'mta_log','a:8:{s:4:"sent";a:0:{}s:7:"started";i:1738790152;s:6:"status";N;s:13:"retry_attempt";N;s:8:"retry_at";N;s:5:"error";N;s:33:"transactional_email_last_error_at";N;s:31:"transactional_email_error_count";N;}','2025-02-05 21:15:49','2025-02-05 21:46:28');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (2,'homepage','a:1:{s:27:"product_discovery_dismissed";b:0;}','2025-02-05 21:15:50','2025-02-05 21:15:50');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (3,'sender','a:2:{s:4:"name";s:5:"admin";s:7:"address";s:19:"admin@localhost.com";}','2025-02-05 21:15:52','2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (4,'installed_at','2025-02-05 21:15:52','2025-02-05 21:15:52','2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (5,'captcha','a:3:{s:4:"type";N;s:20:"recaptcha_site_token";s:0:"";s:22:"recaptcha_secret_token";s:0:"";}','2025-02-05 21:15:52','2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (6,'subscriber_email_notification','a:3:{s:7:"enabled";b:1;s:9:"automated";b:1;s:7:"address";s:19:"admin@localhost.com";}','2025-02-05 21:15:52','2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (7,'stats_notifications','a:2:{s:7:"enabled";b:1;s:7:"address";s:19:"admin@localhost.com";}','2025-02-05 21:15:52','2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (8,'woocommerce','a:1:{s:17:"optin_on_checkout";a:3:{s:7:"enabled";b:1;s:7:"message";s:79:"I would like to receive exclusive emails with discounts and product information";s:8:"position";s:18:"after_billing_info";}}','2025-02-05 21:15:52','2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (10,'subscription','a:1:{s:5:"pages";a:5:{s:11:"unsubscribe";i:61;s:6:"manage";i:61;s:12:"confirmation";i:61;s:19:"confirm_unsubscribe";i:61;s:7:"captcha";i:62;}}','2025-02-05 21:15:52','2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (12,'db_version','5.6.4','2025-02-05 21:15:53','2025-02-05 21:15:53');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (13,'updates_log','a:1:{i:0;a:3:{s:16:"previous_version";N;s:11:"new_version";s:5:"5.6.4";s:4:"date";s:19:"2025-02-05 21:15:53";}}','2025-02-05 21:15:53','2025-02-05 21:15:53');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (14,'queue_disabled_mail_function_check',1,'2025-02-05 21:15:53','2025-02-05 21:15:53');
|
|||
|
|
INSERT INTO `wp_mailpoet_settings` VALUES (15,'cron_daemon','a:8:{s:5:"token";s:5:"lslte";s:6:"status";s:6:"active";s:15:"run_accessed_at";N;s:14:"run_started_at";i:1738791988;s:16:"run_completed_at";i:1738791989;s:10:"last_error";N;s:15:"last_error_date";N;s:10:"updated_at";i:1738791989;}','2025-02-05 21:17:38','2025-02-05 21:46:29');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_custom_fields`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_custom_fields`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_custom_fields` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(90) NOT NULL DEFAULT '',
|
|||
|
|
`type` varchar(90) NOT NULL DEFAULT '',
|
|||
|
|
`params` longtext NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `name` (`name`(90))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_scheduled_tasks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_scheduled_tasks`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_scheduled_tasks` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`type` varchar(90) DEFAULT NULL,
|
|||
|
|
`status` varchar(12) DEFAULT NULL,
|
|||
|
|
`priority` mediumint(9) NOT NULL DEFAULT 0,
|
|||
|
|
`scheduled_at` timestamp,
|
|||
|
|
`processed_at` timestamp,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`deleted_at` timestamp,
|
|||
|
|
`in_progress` int(1),
|
|||
|
|
`reschedule_count` int(11) NOT NULL DEFAULT 0,
|
|||
|
|
`meta` longtext,
|
|||
|
|
`cancelled_at` timestamp DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `status` (`status`(12)),
|
|||
|
|
KEY `type` (`type`(90))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_mailpoet_scheduled_tasks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (1,'inactive_subscribers','scheduled',0,'2025-02-05 22:15:52',NULL,'2025-02-05 21:15:52','2025-02-05 21:15:52',NULL,NULL,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (2,'unsubscribe_tokens','completed',0,'2025-02-05 21:15:52','2025-02-05 21:17:39','2025-02-05 21:15:53','2025-02-05 21:17:39',NULL,0,0,'{"last_subscriber_id":0,"last_newsletter_id":0}',NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (3,'subscriber_link_tokens','completed',0,'2025-02-05 21:15:53','2025-02-05 21:17:39','2025-02-05 21:15:53','2025-02-05 21:17:39',NULL,0,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (4,'newsletter_templates_thumbnails','completed',10,'2025-02-05 21:15:53','2025-02-05 21:17:39','2025-02-05 21:15:53','2025-02-05 21:17:39',NULL,0,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (5,'backfill_engagement_data','completed',0,'2025-02-05 21:15:53','2025-02-05 21:17:39','2025-02-05 21:15:53','2025-02-05 21:17:39',NULL,0,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (6,'mixpanel','completed',0,'2025-02-05 21:15:53','2025-02-05 21:17:40','2025-02-05 21:15:53','2025-02-05 21:17:40',NULL,0,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (7,'export_files_cleanup','scheduled',10,'2025-02-15 00:00:00',NULL,'2025-02-05 21:17:38','2025-02-05 21:17:38',NULL,NULL,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (8,'subscribers_email_count','scheduled',10,'2025-02-15 00:00:00',NULL,'2025-02-05 21:17:38','2025-02-05 21:17:38',NULL,NULL,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (9,'woocommerce_past_orders','completed',10,'2025-02-05 21:17:39','2025-02-05 21:19:53','2025-02-05 21:17:39','2025-02-05 21:19:53',NULL,0,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (10,'subscribers_engagement_score','scheduled',10,'2025-02-06 21:36:00',NULL,'2025-02-05 21:17:39','2025-02-05 21:17:39',NULL,NULL,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (11,'schedule_re_engagement_email','scheduled',10,'2025-02-06 21:17:39',NULL,'2025-02-05 21:17:39','2025-02-05 21:17:39',NULL,NULL,0,NULL,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_scheduled_tasks` VALUES (12,'mixpanel','completed',10,'2025-02-05 21:44:54','2025-02-05 21:46:29','2025-02-05 21:19:54','2025-02-05 21:46:29',NULL,0,0,NULL,NULL);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_stats_notifications`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_stats_notifications`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_stats_notifications` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`task_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `task_id` (`task_id`),
|
|||
|
|
UNIQUE KEY `newsletter_id_task_id` (`newsletter_id`, `task_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_scheduled_task_subscribers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_scheduled_task_subscribers`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_scheduled_task_subscribers` (
|
|||
|
|
`task_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`processed` int(1) NOT NULL DEFAULT 0,
|
|||
|
|
`failed` smallint(1) NOT NULL DEFAULT 0,
|
|||
|
|
`error` text,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`task_id`, `subscriber_id`),
|
|||
|
|
KEY `subscriber_id` (`subscriber_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_sending_queues`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_sending_queues`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_sending_queues` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`task_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`newsletter_id` int(11) unsigned,
|
|||
|
|
`newsletter_rendered_body` longtext,
|
|||
|
|
`newsletter_rendered_subject` varchar(250) DEFAULT NULL,
|
|||
|
|
`subscribers` longtext,
|
|||
|
|
`count_total` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`count_processed` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`count_to_process` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`meta` longtext,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`deleted_at` timestamp,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `newsletter_id` (`newsletter_id`),
|
|||
|
|
KEY `task_id` (`task_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_subscribers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_subscribers`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_subscribers` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`wp_user_id` bigint(20),
|
|||
|
|
`is_woocommerce_user` int(1) NOT NULL DEFAULT 0,
|
|||
|
|
`first_name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`last_name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`email` varchar(150) NOT NULL DEFAULT '',
|
|||
|
|
`status` varchar(12) NOT NULL DEFAULT 'unconfirmed',
|
|||
|
|
`subscribed_ip` varchar(45),
|
|||
|
|
`confirmed_ip` varchar(45),
|
|||
|
|
`confirmed_at` timestamp,
|
|||
|
|
`last_subscribed_at` timestamp,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`deleted_at` timestamp,
|
|||
|
|
`unconfirmed_data` longtext,
|
|||
|
|
`source` enum('form','imported','administrator','api','wordpress_user','woocommerce_user','woocommerce_checkout','unknown') DEFAULT 'unknown',
|
|||
|
|
`count_confirmations` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`unsubscribe_token` char(15),
|
|||
|
|
`link_token` char(32),
|
|||
|
|
`engagement_score` float unsigned,
|
|||
|
|
`engagement_score_updated_at` timestamp,
|
|||
|
|
`last_engagement_at` timestamp,
|
|||
|
|
`woocommerce_synced_at` timestamp,
|
|||
|
|
`email_count` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`last_sending_at` timestamp DEFAULT NULL,
|
|||
|
|
`last_open_at` timestamp DEFAULT NULL,
|
|||
|
|
`last_click_at` timestamp DEFAULT NULL,
|
|||
|
|
`last_purchase_at` timestamp DEFAULT NULL,
|
|||
|
|
`last_page_view_at` timestamp DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `last_page_view_at` (`last_page_view_at`),
|
|||
|
|
KEY `last_purchase_at` (`last_purchase_at`),
|
|||
|
|
KEY `last_click_at` (`last_click_at`),
|
|||
|
|
KEY `last_open_at` (`last_open_at`),
|
|||
|
|
KEY `last_sending_at` (`last_sending_at`),
|
|||
|
|
KEY `link_token` (`link_token`(32)),
|
|||
|
|
KEY `engagement_score_updated_at` (`engagement_score_updated_at`),
|
|||
|
|
KEY `last_subscribed_at` (`last_subscribed_at`),
|
|||
|
|
KEY `status_deleted_at` (`status`(12), `deleted_at`),
|
|||
|
|
KEY `updated_at` (`updated_at`),
|
|||
|
|
KEY `wp_user_id` (`wp_user_id`),
|
|||
|
|
UNIQUE KEY `unsubscribe_token` (`unsubscribe_token`(15)),
|
|||
|
|
UNIQUE KEY `email` (`email`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_subscriber_segment`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_subscriber_segment`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_subscriber_segment` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`segment_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`status` varchar(12) NOT NULL DEFAULT 'subscribed',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `segment_id` (`segment_id`),
|
|||
|
|
UNIQUE KEY `subscriber_segment` (`subscriber_id`, `segment_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_subscriber_custom_field`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_subscriber_custom_field`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_subscriber_custom_field` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`custom_field_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`value` text NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `subscriber_id_custom_field_id` (`subscriber_id`, `custom_field_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_subscriber_ips`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_subscriber_ips`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_subscriber_ips` (
|
|||
|
|
`ip` varchar(45) NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`created_at`, `ip`),
|
|||
|
|
KEY `ip` (`ip`(45))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_newsletter_templates`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_newsletter_templates`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_newsletter_templates` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) DEFAULT 0,
|
|||
|
|
`name` varchar(250) NOT NULL DEFAULT '',
|
|||
|
|
`categories` varchar(250) NOT NULL DEFAULT '[]',
|
|||
|
|
`description` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`body` longtext,
|
|||
|
|
`thumbnail` longtext,
|
|||
|
|
`thumbnail_data` longtext,
|
|||
|
|
`readonly` tinyint(1) DEFAULT 0,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_mailpoet_newsletter_templates`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (1,0,'Welcome Email: Blank 1 Column','["welcome","blank"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Hi, new subscriber!<\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>[subscriber:firstname | default:Subscriber],<\\/p>\\n<p> <\\/p>\\n<p>You recently joined our list and we''d like to give you a warm welcome!<\\/p>\\n<p> <\\/p>\\n<p>Want to get to know us better? Check out some of our most popular articles: <\\/p>\\n<ol>\\n<li><a href=\\"https:\\/\\/www.mailpoet.com\\/blog\\/the-importance-of-focus-when-writing\\/\\">The Importance of Focus When Writing<\\/a><\\/li>\\n<li><a href=\\"https:\\/\\/www.mailpoet.com\\/blog\\/writing-next-great-email-subject-line\\/\\">How to Write a Great Subject Line<\\/a><\\/li>\\n<li><a href=\\"https:\\/\\/www.mailpoet.com\\/blog\\/write-advice-motivation\\/\\">Just Sit Down and Write – Advice on Motivation from Ernest Hemingway<\\/a><\\/li>\\n<\\/ol>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"24.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"social","iconSet":"grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"https:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"https:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"}]},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"7.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"footer","text":"<p><a href=\\"[link:subscription_unsubscribe_url]\\">Unsubscribe<\\/a> | <a href=\\"[link:subscription_manage_url]\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"none"}}}]}]}]},"globalStyles":{"text":{"fontColor":"#000000","fontFamily":"Arial","fontSize":"16px"},"h1":{"fontColor":"#111111","fontFamily":"Trebuchet MS","fontSize":"30px"},"h2":{"fontColor":"#222222","fontFamily":"Trebuchet MS","fontSize":"24px"},"h3":{"fontColor":"#333333","fontFamily":"Trebuchet MS","fontSize":"22px"},"link":{"fontColor":"#21759B","textDeco
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (2,0,'Welcome Email: Blank 1:2 Column','["welcome","blank"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Hi, new subscriber!<\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>[subscriber:firstname | default:Subscriber],<\\/p>\\n<p> <\\/p>\\n<p>You recently joined our list and we''d like to give you a warm welcome!<\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3>Our Most Popular Posts<\\/h3>"},{"type":"text","text":"<ul>\\n<li><a href=\\"https:\\/\\/www.mailpoet.com\\/blog\\/the-importance-of-focus-when-writing\\/\\">The Importance of Focus When Writing<\\/a><\\/li>\\n<li><a href=\\"https:\\/\\/www.mailpoet.com\\/blog\\/writing-next-great-email-subject-line\\/\\">How to Write a Great Subject Line<\\/a><\\/li>\\n<li><a href=\\"https:\\/\\/www.mailpoet.com\\/blog\\/write-advice-motivation\\/\\">Just Sit Down and Write – Advice on Motivation from Ernest Hemingway<\\/a><\\/li>\\n<\\/ul>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3>What''s Next?<\\/h3>"},{"type":"text","text":"<p>Add a single button to your newsletter in order to have one clear call-to-action, which will increase your click rates.<\\/p>"},{"type":"button","text":"Read up!","url":"","styles":{"block":{"backgroundColor":"#2ea1cd","borderColor":"#0074a2","borderWidth":"1px","borderRadius":"5px","borderStyle":"solid","width":"180px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Verdana","fontSize":"18px","fontWeight":"normal","textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"24.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"social","iconSet":"grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"https:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"https:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-conten
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (3,0,'Gift Welcome','["welcome","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/gift\\/Gift-Header-1.jpg","alt":"Gift-Header-1","fullWidth":true,"width":"1280px","height":"920px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#e7e7e7"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2 style=\\"text-align: center;\\"><span style=\\"color: #dd2d2d;\\">We''re so happy you''re onboard!<\\/span><\\/h2>\\n<p style=\\"text-align: center;\\"><span style=\\"color: #333333;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra. Pellentesque in interdum eros, a venenatis velit. Fusce finibus convallis augue, ut viverra felis placerat in. <\\/span><\\/p>\\n<p style=\\"text-align: center;\\"><span style=\\"color: #333333;\\"><\\/span><\\/p>\\n<p style=\\"text-align: center;\\"><span style=\\"color: #333333;\\">Curabitur et commodo ipsum. Mauris tellus metus, tristique vel sollicitudin ut, malesuada in augue. Aliquam ultricies purus vel commodo vehicula.<\\/span><\\/p>"},{"type":"button","text":"Get Started","url":"","styles":{"block":{"backgroundColor":"#dd2d2d","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"40px","borderStyle":"solid","width":"180px","lineHeight":"50px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"22px","fontWeight":"bold","textAlign":"center"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/gift\\/Gift-Footer.jpg","alt":"Gift-Footer","fullWidth":true,"width":"1280px","height":"920px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"23px"}}},{"type":"text","text":"<p style=\\"font-size: 11px; text-align: center;\\"><span style=\\"color: #808080;\\"><strong>Address Line 1<\\/strong><\\/span><\\/p>\\n<p style=\\"font-size: 11px; text-align: center;\\"><span style=\\"color: #808080;\\"><strong>Address Line 2<\\/strong><\\/span><\\/p>\\n<p style=\\"font-size: 11px; text-align: center;\\"><span style=\\"color: #808080;\\"><strong>City<\\/strong><\\/span><\\/p>\\n<p style=\\"font-size: 11px; text-align: center;\\"><span style=\\"color: #808080;\\"><strong>Country<\\/strong><\\/span><\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"5.5px","borderStyle":"solid","borderWidth":"1px","borderColor":"#aaaaaa"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"social","iconSet":"grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (4,0,'Minimal','["welcome","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"29px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#303c54"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"60px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/minimal\\/Minimal-Logo1.png","alt":"Minimal-Logo1","fullWidth":false,"width":"590px","height":"93px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"60px"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"80px"}}},{"type":"text","text":"<p style=\\"text-align: right;\\"><span style=\\"color: #8b9cbc;\\">EST.2009<\\/span><\\/p>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"41px"}}},{"type":"text","text":"<h2>Welcome to Minimal, Kim.<\\/h2>"},{"type":"text","text":"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra. Pellentesque in interdum eros, a venenatis velit. Fusce finibus convallis augue, ut viverra felis placerat in. Curabitur et commodo ipsum. Mauris tellus metus, tristique vel sollicitudin ut, malesuada in augue. Aliquam ultricies purus vel commodo vehicula. Cras sollicitudin nunc facilisis neque tristique sagittis.<\\/p>\\n<p><\\/p>\\n<p>Maecenas iaculis, lacus malesuada dictum dapibus, justo justo molestie lorem, ac dapibus magna urna vel arcu. Aliquam erat volutpat. Sed bibendum, ipsum sed ullamcorper blandit, eros odio interdum nibh, non venenatis metus lacus vitae lectus.<\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"30px","borderStyle":"dotted","borderWidth":"2px","borderColor":"#d9d9d9"}}},{"type":"text","text":"<h2>Some of our recent stories<\\/h2>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/minimal\\/plasma-stingray111-800x533.jpg","alt":"plasma-stingray111-800x533","fullWidth":false,"width":"800px","height":"533px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3>Story Title Goes Here<\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (5,0,'New Phone Purchase','["welcome","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#1b1821"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/phone\\/Phone-Logo.png","alt":"Phone-Logo","fullWidth":true,"width":"122px","height":"23px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#1b1821"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/phone\\/Phone-Title.png","alt":"Phone-Title","fullWidth":true,"width":"1280px","height":"215px","styles":{"block":{"textAlign":"center"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/phone\\/Phone-Header.jpg","alt":"Phone-Header","fullWidth":true,"width":"1280px","height":"920px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>Welcome to your brand new Casia 7200.<\\/strong><\\/span><\\/h3>\\n<p style=\\"text-align: center;\\"><strong><span style=\\"color: #8748d5;\\">Let''s get you all set up.<\\/span><\\/strong><\\/p>\\n<p style=\\"text-align: center;\\"><span style=\\"color: #999999;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra. Pellentesque in interdum eros, a venenatis velit. Fusce finibus convallis augue, ut viverra felis placerat in.<\\/span><\\/p>"},{"type":"button","text":"Get Started","url":"","styles":{"block":{"backgroundColor":"#8748d5","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"40px","borderStyle":"solid","width":"159px","lineHeight":"45px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"20px","fontWeight":"bold","textAlign":"center"}}},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#2c2c2c"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"font-size: 11px; text-align: left;\\"><span style=\\"color: #999999;\\">Address Line 1<\\/span><\\/p>\\n<p style=\\"font-size: 11px; text-align: left;\\"><span style=\\"color: #999999;\\">Address Line 2<\\/span><\\/p>\\n<p style=\\"font-size: 11px; text-align: left;\\"><span style=\\"color: #999999;\\">City<\\/span><\\/p>\\n<p style=\\"font-size: 11px; text-align: left;\\"><span style=\\"color: #999999;\\">Country<\\/span><\\/p>"}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/phone\\/Phone-Logo.png","alt":"Phone-Logo","fullWidth":false,"width":"122px","height":"23px","styles":{"block":{"textAlign":"center"}}}
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (6,0,'Sunglasses','["welcome","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Logo.jpg","alt":"Glasses-Logo","fullWidth":false,"width":"250px","height":"66px","styles":{"block":{"textAlign":"center"}}},{"type":"divider","styles":{"block":{"backgroundColor":"#ffffff","padding":"17px","borderStyle":"solid","borderWidth":"2px","borderColor":"#f8b849"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Header-2.jpg","alt":"Glasses-Header-2","fullWidth":true,"width":"1280px","height":"116px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #333333;\\"><strong>Here''s what we sent you<\\/strong><\\/span><\\/h3>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Images-1.jpg","alt":"Glasses-Images-1","fullWidth":true,"width":"1280px","height":"650px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>"},{"type":"button","text":"Choose These Frames","url":"","styles":{"block":{"backgroundColor":"#f8b849","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"0px","borderStyle":"solid","width":"195px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"16px","fontWeight":"normal","textAlign":"center"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Images-2.jpg","alt":"Glasses-Images-2","fullWidth":true,"width":"1280px","height":"650px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>"},{"type":"button","text":"Choose These Frames","url":"","styles":{"block":{"backgroundColor":"#f8b849","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"0px","borderStyle":"solid","width":"195px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"16px","fontWeight":"normal","textAlign":"center"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/sunglasses\\/Glasses-Images-3.jpg","alt":"Glasses-Images-3","fullWidth":true,"width":"1280px","height":"650px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur nec nisi quis ex pulvinar molestie. Sed pulvinar placerat justo eu viverra.<\\/span><\\/p>"},{"type":"button","text":"Choose These Frames","url":"","sty
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (7,0,'Real Estate','["welcome","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#8691be"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/real-estate\\/Property-Logo-1-150x84.jpg","alt":"Property-Logo-1","fullWidth":false,"width":"150px","height":"84px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"25px"}}},{"type":"social","iconSet":"full-symbol-grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"website","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png","height":"32px","width":"32px","text":"Website"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#8691be"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"25px"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><strong><span style=\\"color: #ffffff;\\">TAKING THE WORRY OUT OF REAL ESTATE<\\/span><\\/strong><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">Welcome Home<\\/span><\\/h1>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/real-estate\\/Property-Header.jpg","alt":"Property-Header","fullWidth":true,"width":"1280px","height":"782px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"35px"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\">We''re here to help you move<\\/h3>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (8,0,'App Welcome','["welcome","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#eeeeee"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#eeeeee","height":"30px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#32b6c6"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/app_welcome\\/App-Signup-Logo-1.png","alt":"App-Signup-Logo","fullWidth":false,"width":"80px","height":"80px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center; margin: 0;\\"><strong>Welcome to Appy<\\/strong><\\/h1><p style=\\"text-align: center; margin: 0;\\"><span style=\\"color: #ffffff;\\">Let''s get started!<\\/span><\\/p>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/app_welcome\\/App-Signup-Header.png","alt":"App-Signup-Header","fullWidth":false,"width":"1280px","height":"500px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"text","text":"<p style=\\"text-align: center;\\">Hi [subscriber:firstname | default:subscriber],<\\/p>\\n <p style=\\"text-align: center;\\"><\\/p>\\n <p style=\\"text-align: center;\\">In MailPoet, you can write emails in plain text, just like in a regular email. This can make your email newsletters more personal and attention-grabbing.<\\/p>\\n <p style=\\"text-align: center;\\"><\\/p>\\n <p style=\\"text-align: center;\\">Is this too simple? You can still style your text with basic formatting, like <strong>bold<\\/strong> or <em>italics.<\\/em><\\/p>\\n <p style=\\"text-align: center;\\"><\\/p>\\n <p style=\\"text-align: center;\\">Finally, you can also add a call-to-action button between 2 blocks of text, like this:<\\/p>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"23px"}}},{"type":"button","text":"Get Started Here","url":"","styles":{"block":{"backgroundColor":"#32b6c6","borderColor":"#32b6c6","borderWidth":"0px","borderRadius":"40px","borderStyle":"solid","width":"188px","lineHeight":"50px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"18px","fontWeight":"normal","textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"35px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/app_welcome\\/App-Signup-Team.jpg","alt":"App-Signup-Team","fullWidth":true,"width":"1280px","height":"700px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#eeee
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (9,0,'Welcome to FoodBox','["welcome","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f4f4f4"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-Logo.png","alt":"Food-Delivery-Logo","fullWidth":false,"width":"640px","height":"180px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-App.png","alt":"Food-Delivery-App","fullWidth":false,"width":"640px","height":"180px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"text","text":"<h1><strong>Welcome to FoodBox<\\/strong><\\/h1>\\n <h2><strong>Lorem ipsum dolor sit amet<\\/strong><\\/h2>\\n <p>Curabitur sollicitudin eros eu cursus sollicitudin. Suspendisse laoreet sollicitudin urna, ut lacinia risus dictum a. Integer a neque eu magna commodo sodales eu eget ante.<\\/p>"},{"type":"button","text":"Get Started","url":"","styles":{"block":{"backgroundColor":"#7cc119","borderColor":"#7cc119","borderWidth":"0px","borderRadius":"5px","borderStyle":"solid","width":"100px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"14px","fontWeight":"bold","textAlign":"left"}}}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/food_box\\/Food-Delivery-Focus.jpg","alt":"Food-Delivery-Focus","fullWidth":false,"width":"800px","height":"800px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"31.5px","borderStyle":"solid","borderWidth":"2px","borderColor":"#e5e5e5"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2 style=\\"text-align: center;\\">Get started in 3 simple steps<\\/h2>"}]}]},{"type":"container","orientat
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (10,0,'Poet','["welcome","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ebebeb"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#ebebeb"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Merriweather Sans","fontSize":"12px","textAlign":"left"},"link":{"fontColor":"#909090","textDecoration":"none"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"144px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/poet\\/Poet-Logo.png","alt":"Poet-Logo","fullWidth":false,"width":"166px","height":"144px","styles":{"block":{"textAlign":"left"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1>Thanks for signing up!<\\/h1>\\n <p><span style=\\"color: #000000;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam.<\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":"2_1","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"66px"}}},{"type":"text","text":"<p style=\\"font-size: 12px;\\"><span style=\\"color: #999999;\\"><strong>Latest p<\\/strong><\\/span><\\/p>\\n <h2><strong>The 26th of December<\\/strong><\\/h2>\\n <h3><span>A Tuesday, day of Tiw,<\\/span><br \\/><span>god of war, dawns in darkness.<\\/span><br \\/><span>The short holiday day of talking by the fire,<\\/span><br \\/><span>floating on snowshoes among<\\/span><br \\/><span>ancient self-pollarded maples,<\\/span><br \\/><span>visiting, being visited, giving<\\/span><br \\/><span>a rain gauge, receiving red socks,<\\/span><br \\/><span>watching snow buntings nearly over<\\/span><br \\/><span>their heads in snow stab at spirtled bits<\\/span><br \\/><span>of sunflower seeds the chickadees<\\/span><br \\/><span>hold with their feet to a bough<\\/span><br \\/><span>and hack apart, scattering debris<\\/span><br \\/><span>like sloppy butchers, is over.<\\/span><br \\/><span>Irregular life begins. Telephone calls,<\\/span><br \\/><span>Google searches, evasive letters,<\\/span><br \\/><span>complicated arrangements, faxes,<\\/span><br \\/><span>second thoughts, consultations,<\\/span><br \\/><span>e-mails, solemnly given kisses.<\\/span><\\/h3>"}]},{"type":"container","columnLayout
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (11,0,'Post Notifications: Blank 1 Column','["notification","blank"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"fake-logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Check Out Our New Blog Posts! <\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>MailPoet can <span style=\\"line-height: 1.6em; background-color: inherit;\\"><em>automatically<\\/em> <\\/span><span style=\\"line-height: 1.6em; background-color: inherit;\\">send your new blog posts to your subscribers.<\\/span><\\/p>\\n<p><span style=\\"line-height: 1.6em; background-color: inherit;\\"><\\/span><\\/p>\\n<p><span style=\\"line-height: 1.6em; background-color: inherit;\\">Below, you''ll find three recent posts, which are displayed automatically, thanks to the <em>Automatic Latest Content<\\/em> widget, which can be found in the right sidebar, under <em>Content<\\/em>.<\\/span><\\/p>\\n<p><span style=\\"line-height: 1.6em; background-color: inherit;\\"><\\/span><\\/p>\\n<p><span style=\\"line-height: 1.6em; background-color: inherit;\\">To edit the settings and styles of your post, simply click on a post below.<\\/span><\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dotted","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]}]},{"type":"automatedLatestContentLayout","withLayout":true,"amount":"3","contentType":"post","terms":[],"inclusionType":"include","displayType":"excerpt","titleFormat":"h3","titleAlignment":"left","titleIsLink":false,"imageFullWidth":false,"featuredImagePosition":"alternate","showAuthor":"no","authorPrecededBy":"Author:","showCategories":"no","categoriesPrecededBy":"Categories:","readMoreType":"button","readMoreText":"Read more","readMoreButton":{"type":"button","text":"Read the post","url":"[postLink]","styles":{"block":{"backgroundColor":"#2ea1cd","borderColor":"#0074a2","borderWidth":"1px","borderRadius":"5px","borderStyle":"solid","width":"160px","lineHeight":"30px","fontColor":"#ffffff","fontFamily":"Verdana","fontSize":"16px","fontWeight":"normal","textAlign":"center"}}},"sortBy":"newest","showDivider":true,"divider":{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},"backgroundColor":"#ffffff","backgroundColorAlternate":"#eeeeee"},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"24.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"t
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (12,0,'Modular Style Stories','["notification","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#efe7f0"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#efe7f0"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/modular-style-stories\\/Modular-Logo.png","alt":"Modular-Logo","fullWidth":false,"width":"271px","height":"37px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"26px"}}},{"type":"social","iconSet":"full-symbol-color","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"},{"type":"socialIcon","iconType":"pinterest","link":"http:\\/\\/www.pinterest.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Pinterest.png","height":"32px","width":"32px","text":"Pinterest"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#efe7f0","height":"40px"}}}]}]},{"type":"automatedLatestContentLayout","withLayout":true,"amount":"3","contentType":"post","terms":[],"inclusionType":"include","displayType":"excerpt","titleFormat":"h3","titleAlignment":"left","titleIsLink":false,"imageFullWidth":false,"featuredImagePosition":"alternate","showAuthor":"no","authorPrecededBy":"Author:","showCategories":"no","categoriesPrecededBy":"Categories:","readMoreType":"button","readMoreText":"Read more","readMoreButton":{"type":"button","text":"Read more","url":"[postLink]","styles":{"block":{"backgroundColor":"#ffffff","borderColor":"#ffffff","borderWidth":"1px","borderRadius":"0px","borderStyle":"solid","width":"120px","lineHeight":"40px","fontColor":"#b956c5","fontFamily":"Verdana","fontSize":"18px","fontWeight":"normal","textAlign":"center"}},"context":"automatedLates
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (13,0,'Stripped RSS Style Layout','["notification","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f4f4f4"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"25px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/rss-simple-news\\/RSS-Logo-2.png","alt":"RSS-Logo-2","fullWidth":true,"width":"210px","height":"90px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"24px"}}},{"type":"social","iconSet":"full-symbol-color","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"website","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Website.png","height":"32px","width":"32px","text":"Website"}]}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3 style=\\"text-align: left;\\"><strong><span style=\\"color: #333333;\\">Latest RSS Simple Posts<\\/span><\\/strong><\\/h3>\\n<p><span style=\\"color: #999999;\\">Week 23: 23\\/19\\/19<\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"automatedLatestContentLayout","withLayout":true,"amount":"5","contentType":"post","terms":[],"inclusionType":"include","displayType":"excerpt","titleFormat":"h3","titleAlignment":"left","titleIsLink":true,"imageFullWidth":false,"featuredImagePosition":"alternate","showAuthor":"no","authorPrecededBy":"Author:","showCategories":"no","categoriesPrecededBy":"Categories:","readMoreType":"link","readMoreText":"Read more.","readMoreButton":{"type":"button","text":"Read more","url":"[postLink]","styles":{"block":{"backgroundColor":"#2ea1cd","borderColor":"#0074a2","borderWidth":"1px","borderRadius":"5px","borderStyle":"solid","width":"180px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Verdana","fontSize":"18px","fontWeight":"normal","textAlign":"center"}},"context":"automatedLatestContentLayout.readMoreBut
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (14,0,'One Full Post In An Email','["notification","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/not-so-medium\\/Not-So-Medium-Logo.png","alt":"Not-So-Medium-Logo","fullWidth":false,"width":"210px","height":"90px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"social","iconSet":"full-symbol-black","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"website","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Website.png","height":"32px","width":"32px","text":"Website"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ebebeb"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p><strong><em>Welcome to this week''s post. <\\/em><\\/strong><\\/p>\\n<p><em>Every Friday, we send you the most interesting story of the week in full.<\\/em><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"#d6d6d6","height":"20px"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"63px"}}}]}]},{"type":"automatedLatestContentLayout","withLayout":true,"amount":"1","contentType":"post","terms":[],"inclusionType":"include","displayType":"full","titleFormat":"h1","titleAlignment":"center","titleIsLink":true,"imageFullWidth":false,"featuredImagePosition":"alternate","showAuthor":"aboveText","authorPrecededBy":"Author:","showCategories":"aboveText","categoriesPrecededBy":"Categories:","readMoreType":"link","readMoreText":"View this post online & share!","readMoreButton":{"type":"button","text":"Read more","url":"[postLink]","styles":{"block":{"backgroundColor":"#2ea1cd","bo
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (15,0,'Wide Story Layout','["notification","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f0f0f0"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"50px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/wide-story-layout\\/Wide-Logo.png","alt":"Wide-Logo","fullWidth":false,"width":"200px","height":"37px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #808080;\\">Our Latest Posts<\\/span><\\/h3>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"automatedLatestContentLayout","withLayout":true,"amount":"3","contentType":"post","terms":[],"inclusionType":"include","displayType":"excerpt","titleFormat":"h3","titleAlignment":"left","titleIsLink":false,"imageFullWidth":false,"featuredImagePosition":"alternate","showAuthor":"no","authorPrecededBy":"Author:","showCategories":"no","categoriesPrecededBy":"Categories:","readMoreType":"button","readMoreText":"Read more","readMoreButton":{"type":"button","text":"Read The Post","url":"[postLink]","styles":{"block":{"backgroundColor":"#5ecd39","borderColor":"#000000","borderWidth":"0px","borderRadius":"5px","borderStyle":"solid","width":"288px","lineHeight":"36px","fontColor":"#ffffff","fontFamily":"Lucida","fontSize":"16px","fontWeight":"normal","textAlign":"center"}},"context":"automatedLatestContentLayout.readMoreButton"},"sortBy":"newest","showDivider":true,"divider":{"type":"divider","styles":{"block":{"backgroundColor":"#f0f0f0","padding":"13px","borderStyle":"solid","borderWidth":"30px","borderColor":"#f0f0f0"}},"context":"automatedLatestContentLayout.divider"},"backgroundColor":"#ffffff","backgroundColorAlternate":"#eeeeee"},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/wide-story-layout\\/Wide-Footer.jpg","alt":"Wide-Footer","fullWidth":true,"width":"1280px","height":"721px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#5ecd39"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"21px"}}},{"type":"social","iconSet":"full-symbol-grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"website","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png","height":"32px","width":"32px","text":"Website"},{"type":"socialIcon
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (16,0,'Industry Conference','["notification","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#222222"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"50px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Logo.png","alt":"Conf-Logo","fullWidth":false,"width":"150px","height":"150px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#222222"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #ffffff; font-size: 11px; text-transform: uppercase; opacity: 0.5; letter-spacing: 3px;\\">Get ready for the biggest email conference of the year<\\/span><\\/p>"}]}]},{"type":"container","columnLayout":"2_1","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Header-2.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"56px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/industry-conference\\/Conf-Ticket.png","alt":"Conf-Ticket","fullWidth":false,"width":"339px","height":"177px","styles":{"block":{"textAlign":"left"}}},{"type":"text","text":"<h3><span style=\\"font-size: 42px;\\"><strong><span style=\\"color: #ffffff; line-height: 1.2; position: relative; top: -5px;\\">Email Boston 2018<\\/span><\\/strong><\\/span><\\/h3>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"133px"}}}]}]},{"type":"automatedLatestContentLayout","withLayout":true,"amount":"3","contentType":"post","terms":[],"inclusionType":"include","displayType":"excerpt","titleFormat":"h2","titleAlignment":"left","titleIsLink":false,"imageFullWidth":false,"featuredImagePosition":"right","showAuthor":"no","authorPrecededBy":"Author:","showCategories":"no","categoriesPrecededBy":"Categories:","readMoreType":"button","readMoreText":"Read more","readMoreButton":{"type":"button","text":"Read the post","url":"[postLink]","styles":{"block":{"backgroundColor":"#b8291e","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"0px","borderStyle":"solid","width":"147px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Georgia","fontSize":"16px","fontWeight":"normal","textAlign":"left"}},"context":"automatedLatestContentLayout.readMoreButton"},"sortBy":"oldest","showDivider":true,"divider":{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dotted","borderWidth":"4px","borderColor":"#dddddd"}},"context":"automatedLatestContentLayout.divider"},"backgroundColor":"#ffffff","backgroundColorAlternate":"#eeeeee"},{"type":"container","columnLayout":false,"orientation":"horiz
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (17,0,'Science Weekly','["notification","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Science-Logo.png","alt":"Science-Logo","fullWidth":true,"width":"1280px","height":"300px","styles":{"block":{"textAlign":"center"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-Title-22.png","alt":"Health-Mag-Title-2","fullWidth":true,"width":"1280px","height":"214px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#b1b6d1"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h1 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>The latest news from the world of science<\\/strong><\\/span><\\/h1>"},{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"40px"}}}]}]},{"type":"automatedLatestContentLayout","withLayout":true,"amount":"2","contentType":"post","terms":[],"inclusionType":"include","displayType":"excerpt","titleFormat":"h1","titleAlignment":"left","titleIsLink":false,"imageFullWidth":false,"featuredImagePosition":"alternate","showAuthor":"no","authorPrecededBy":"Author:","showCategories":"no","categoriesPrecededBy":"Categories:","readMoreType":"button","readMoreText":"Read more","readMoreButton":{"type":"button","text":"Read more","url":"[postLink]","styles":{"block":{"backgroundColor":"#2b2d37","borderColor":"#2b2d37","borderWidth":"1px","borderRadius":"21px","borderStyle":"solid","width":"114px","lineHeight":"33px","fontColor":"#ffffff","fontFamily":"Verdana","fontSize":"14px","fontWeight":"normal","textAlign":"left"}},"context":"automatedLatestContentLayout.readMoreButton"},"sortBy":"newest","showDivider":true,"divider":{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}},"context":"automatedLatestContentLayout.divider"},"backgroundColor":"#ffffff","backgroundColorAlternate":"#eeeeee"},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#b1b6d1","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-End-1.png","alt":"Health-Mag-End","fullWidth":true,"width":"1280px","height":"50px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"#2b2d37","height":"35px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/science_weekly\\/Health-Mag-Promo-Start.png","alt":"Health-Mag-Promo-Start","fullWidth":true,"width":"1280px","height":"50px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientatio
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (18,0,'Newspaper Traditional','["notification","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f2f9f8"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"28px"}}},{"type":"text","text":"<h3 style=\\"font-size: 15px;\\"><em><strong>[date:mtext][date:dordinal],[date:y]<\\/strong><\\/em><\\/h3>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><span style=\\"color: #008080;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #008080;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"right"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":"2_1","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f2f9f8"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/newspaper-traditional\\/News-Logo.png","alt":"News-Logo","fullWidth":false,"width":"200px","height":"100px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"social","iconSet":"full-symbol-black","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"website","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Website.png","height":"32px","width":"32px","text":"Website"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#c6dbd8"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p><strong>Local News<\\/strong><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (19,0,'Clear News','["notification","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"27px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"#ffffff"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"11px","textAlign":"left"},"link":{"fontColor":"#e2973f","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/clear-news\\/News-Logo-1.png","alt":"News-Logo","fullWidth":false,"width":"120px","height":"167px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"30px"}}},{"type":"text","text":"<h3 style=\\"text-align: right;\\"><span style=\\"color: #808080;\\"><strong>October 2018<\\/strong><\\/span><\\/h3>"}]}]},{"type":"container","columnLayout":"2_1","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h1 style=\\"text-align: left; line-height: 1.3;\\"><strong>Good Morning!<\\/strong><\\/h1>\\n <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce egestas nisl vel ante finibus fringilla ullamcorper non lectus. Aenean leo neque, egestas et lacus eu, viverra luctus nisi. Donec dapibus mauris at fringilla consequat. Cras sed porta nunc. Ut tincidunt luctus felis sed suscipit. Sed tristique faucibus fermentum.<\\/h3>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"24px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/clear-news\\/UEl2.gif","alt":"UEl2","fullWidth":false,"width":"360px","height":"400px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#e2973f"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertic
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (20,0,'Dog Food','["woocommerce","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/dog-food\\/Dog-Logo.png","alt":"Dog-Logo","fullWidth":false,"width":"42px","height":"91px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"31px"}}},{"type":"social","iconSet":"full-symbol-black","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"25px"}}},{"type":"text","text":"<h1 style=\\"line-height: 1.2em;\\"><strong>Thanks for buying your dog food from us<\\/strong><\\/h1>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/dog-food\\/Dog-Header-1024x409.jpg","alt":"Dog-Header","fullWidth":true,"width":"1280px","height":"511px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"50px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><strong>Here''s some other pawsome things to try... <\\/strong><\\/h2>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (21,0,'Abandoned Cart – Kids','["woocommerce","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"#c3e1e8"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"#c3e1e8"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"social","iconSet":"circles","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"}]}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/kids-clothing\\/Kids-Clothing-Logo.png","alt":"Kids-Clothing-Logo","fullWidth":true,"width":"250px","height":"121px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"social","iconSet":"circles","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"#9bd2e0"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"#9bd2e0"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #4e4e4e;\\"><strong>Boys Clothes<\\/strong><\\/span><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"display":"scale","src":null},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #4e4e4e;\\"><strong>Girls Clothes<\\/strong><\\/span><\\/p>"}]},{"type":"container","columnLayout":false,"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (22,0,'Rock Band','["woocommerce","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#060d13"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/rock-band\\/RockBand-Header-2.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#060d13"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Courier New","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#7acff0","textDecoration":"none"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"315px"}}},{"type":"social","iconSet":"full-symbol-grey","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"48px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"29px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><span style=\\"color: #7acff0;\\">Free track download<\\/span><\\/h1>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #d4d4d4;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus<\\/span><\\/p>"},{"type":"button","text":"Download now for free","url":"","styles":{"block":{"backgroundColor":"#152533","borderColor":"#7acff0","borderWidth":"2px","borderRadius":"40px","borderStyle":"solid","width":"288px","lineHeight":"50px","fontColor":"#ffffff","fontFamily":"Courier New","fontSize":"18px","fontWeight":"normal","textAlign":"center"}}},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"18.5px","borderStyle":"double","borderWidth":"7px","borderColor":"#1c2f40"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"bloc
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (23,0,'Wine City (with coupon)','["woocommerce","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"37px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/wine-city\\/Wine-Logo.png","alt":"Wine-Logo","fullWidth":false,"width":"136px","height":"67px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"31px"}}},{"type":"social","iconSet":"circles","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"solid","borderWidth":"1px","borderColor":"#aaaaaa"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: left;\\"><span style=\\"color: #6d6d6d;\\"><strong>Red Wine<\\/strong><\\/span><\\/p>"}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: left;\\"><span style=\\"color: #6d6d6d;\\"><strong>White Wine<\\/strong><\\/span><\\/p>"}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: left;\\"><span style=\\"color: #6d6d6d;\\"><strong>Rose Wine<\\/strong><\\/span><\\/p>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/wine-city\\/Wine-Header-1.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>Have a drink on us<\\/strong><\\/span><
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (24,0,'Abandoned Cart – Fitness','["woocommerce","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e6e1e5"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fitness\\/Fitness-Logo-1.jpg","alt":"Fitness-Logo-1","fullWidth":true,"width":"180px","height":"96px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e6e1e5"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"social","iconSet":"full-symbol-color","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e6e1e5"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Get back in the game<\\/strong><\\/h1>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fitness\\/Fitness-Header.jpg","alt":"Fitness-Header","fullWidth":true,"width":"1280px","height":"696px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><strong>You''ve left something in your cart...<\\/strong><\\/h3>"}]}]},{"type":"abandonedCartContent","withLayout":true,"amount":"2","contentType":"product","postStatus":"publish","inclusionType":"include","displayType":"full","titleFormat":"h3","titleAlignment":"left","titleIsLink":false,"imageFullWidth":false,"titl
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (25,0,'Motor','["woocommerce","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e3e3e3"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e3e3e3"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"24px"}}},{"type":"social","iconSet":"full-symbol-color","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"youtube","link":"http:\\/\\/www.youtube.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Youtube.png","height":"32px","width":"32px","text":"Youtube"}]}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #d52a2a;\\"><strong>Welcome to Vector Motors<\\/strong><\\/span><\\/p>\\n <p style=\\"text-align: center; font-size: 11px;\\"><span style=\\"color: #d52a2a;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/span><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"24px"}}},{"type":"social","iconSet":"full-symbol-color","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"},{"type":"socialIcon","iconType":"email","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Email.png","height":"32px","width":"32px","text":"Email"},{"type":"socialIcon","iconType":"website","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/06-full-symbol-color\\/Website.png","height":"32px","width":"32px","text":"Website"}]}]}]},{"type":"container","columnLayout":"2_1","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/motor\\/Car-Header-2.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#d52a2a"}},"blocks":[{"t
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (26,0,'Avocado','["woocommerce","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f3f8f3"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/avocado\\/Avocado-Logo-2.png","alt":"Avocado-Logo-2","fullWidth":false,"width":"212px","height":"89px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"33px"}}},{"type":"text","text":"<p style=\\"text-align: right;\\"><strong>Has to be fresh<\\/strong><\\/p>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ddeeba"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"58px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Holy Guacamole!<\\/strong><\\/h1>\\n<h2 style=\\"text-align: center;\\">Your monthly avocado<\\/h2>\\n<h2 style=\\"text-align: center;\\">delivery starts right now.<\\/h2>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/avocado\\/Avocado-Header-1.jpg","alt":"Avocado-Header-1","fullWidth":true,"width":"1280px","height":"644px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/avocado\\/Avocado-Recipe.jpg","alt":"Avocado-Recipe","fullWidth":true,"width":"600px","height":"890px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"135px"}}},{"type":"text","text":"<h3 style=\\"text-align: left;\\"><strong>A quick and easy recipe to get you started...<\\/strong><\\/h3>\\n<p style=\\"text-align: left;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer blandit tortor nec eleifend maximus. Nulla est lectus, tincidunt quis molestie vitae, suscipit non orci.<\\/p>"},{"type":"button","text":"Check it out","url":"","styles":{"block":{"backgroundColor":"#9ecd2e","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"28px","borderStyle":"solid","width":"111px","lineHeight":"36px","fontColor":"#3d3d3d","fontFamily":"Arial","fontSize":"14px","fontWeight":"bold","textAlign":"left"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#9ecd2e"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><strong><span style=\\"color: #333333;\\"><\\/span><\\/strong><\\/p>\\n<p style=\\"text-align: center;\\"><strong><span style=\\"color: #333333;\\"><\\/span><\\/strong><strong><span style=\\"color: #333333;\
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (27,0,'Book store (with coupon)','["woocommerce","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#125674"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"60px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Logo.png","alt":"Book-Logo","fullWidth":false,"width":"200px","height":"48px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#125674"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"100px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong><span style=\\"color: #ffffff;\\">Turn more pages this weekend...<\\/span><\\/strong><\\/h1>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">Just to say thanks, here''s a small gift from us to you.<\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"71px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Body-2.png","display":"tile"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"21px"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #5094ad;\\"><strong>Read more every week<\\/strong><\\/span><\\/p>\\n <h2 style=\\"text-align: center;\\"><strong>Your free gift!<\\/strong><\\/h2>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Body-2.png","display":"tile"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"2px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#125674"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/book-store-with-coupon\\/Book-Body-2.png","display":"tile"},"styles":{"block":{"back
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (28,0,'Flowers (with coupon)','["woocommerce","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#eae5e5"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<p><span style=\\"color: #000000;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #000000;\\">View this email in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e0a9bc"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/flowers-with-coupon\\/Flowers-Logo.png","alt":"Flowers-Logo","fullWidth":false,"width":"110px","height":"180px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"44px"}}},{"type":"social","iconSet":"full-symbol-black","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e0a9bc"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/flowers-with-coupon\\/Flowers-Header.jpg","alt":"Flowers-Header","fullWidth":true,"width":"1280px","height":"850px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Just for you.<\\/strong><\\/h1>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e0a9bc"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #333333;\\"><strong>Welcome to our flower store - as a token of our appreciation for you signing up,<
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (29,0,'Newsletter: Blank 1 Column','["standard","blank"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Let''s Get Started! <\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>It''s time to design your newsletter! In the right sidebar, you''ll find 4 menu items that will help you customize your newsletter:<\\/p>\\n<ol>\\n<li>Content<\\/li>\\n<li>Columns<\\/li>\\n<li>Styles<\\/li>\\n<li>Preview<\\/li>\\n<\\/ol>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"24.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"social","iconSet":"grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"}]},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"7.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"footer","text":"<p><a href=\\"[link:subscription_unsubscribe_url]\\">Unsubscribe<\\/a> | <a href=\\"[link:subscription_manage_url]\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"none"}}}]}]}]},"globalStyles":{"text":{"fontColor":"#000000","fontFamily":"Arial","fontSize":"16px"},"h1":{"fontColor":"#111111","fontFamily":"Trebuchet MS","fontSize":"30px"},"h2":{"fontColor":"#222222","fontFamily":"Trebuchet MS","fontSize":"24px"},"h3":{"fontColor":"#333333","fontFamily":"Trebuchet MS","fontSize":"22px"},"link":{"fontColor":"#21759B","textDecoration":"underline"},"wrapper":{"backgroundColor":"#ffffff"},"body":{"backgroundColor":"#eeeeee"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/newsletter-blank-1-column/thumbnail.20190411-1500.jpg',NULL,1,NULL,'2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (30,0,'Newsletter: Blank 1:2 Column','["standard","blank"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Let''s Get Started!<\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>It''s time to design your newsletter! In the right sidebar, you''ll find 4 menu items that will help you customize your newsletter:<\\/p>\\n<ol>\\n<li>Content<\\/li>\\n<li>Columns<\\/li>\\n<li>Styles<\\/li>\\n<li>Preview<\\/li>\\n<\\/ol>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dotted","borderWidth":"3px","borderColor":"#aaaaaa"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2>This template has...<\\/h2>"},{"type":"text","text":"<p>In the right sidebar, you can add these layout blocks to your email:<\\/p>\\n<ul>\\n<li>1 column<\\/li>\\n<li>2 columns<\\/li>\\n<li>3 columns<\\/li>\\n<\\/ul>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2>... a 2-column layout.<\\/h2>"},{"type":"text","text":"<p><span style=\\"line-height: 25.6px;\\">You can change a layout''s background color by clicking on the settings icon on the right edge of the Designer. Simply hover over this area to see the Settings (gear) icon.<\\/span><\\/p>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"24.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"social","iconSet":"grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"}]},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"7.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"footer","text":"<p><a href=\\"[link:subscription_unsubscribe_url]\\">Unsubscribe<\\/a> | <a href=\\"[link:subscription_manage_url]\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>","styles":{"blo
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (31,0,'Newsletter: Blank 1:2:1 Column','["standard","blank"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Let''s Get Started!<\\/strong><\\/h1>\\n<p>It''s time to design your newsletter! In the right sidebar, you''ll find four menu items that will help you customize your newsletter:<\\/p>\\n<ol>\\n<li>Content<\\/li>\\n<li>Columns<\\/li>\\n<li>Styles<\\/li>\\n<li>Preview<\\/li>\\n<\\/ol>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dotted","borderWidth":"3px","borderColor":"#aaaaaa"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2>This template has...<\\/h2>"},{"type":"text","text":"<p>In the right sidebar, you can add layout blocks to your email:<\\/p>\\n<ul>\\n<li>1 column<\\/li>\\n<li>2 columns<\\/li>\\n<li>3 columns<\\/li>\\n<\\/ul>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2>... a 2-column layout.<\\/h2>"},{"type":"text","text":"<p>You can change a layout''s background color by clicking on the settings icon on the right edge of the Designer. Simply hover over this area to see the Settings (gear) icon.<\\/p>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dotted","borderWidth":"3px","borderColor":"#aaaaaa"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"font-weight: 600;\\">Let''s end with a single column. <\\/span><\\/h3>\\n<p style=\\"line-height: 25.6px;\\">In the right sidebar, you can add these layout blocks to your email:<\\/p>\\n<p style=\\"line-height: 25.6px;\\"><\\/p>\\n<ul style=\\"line-height: 25.6px;\\">\\n<li>1 column<\\/li>\\n<li>2 columns<\\/li>\\n<li>3 columns<\\/li>\\n<\\/ul>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"24.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"social","iconS
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (32,0,'Newsletter: Blank 1:3 Column','["standard","blank"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>Let''s Get Started! <\\/strong><\\/h1>\\n<p> <\\/p>\\n<p>It''s time to design your newsletter! In the right sidebar, you''ll find four menu items that will help you customize your newsletter:<\\/p>\\n<ol>\\n<li>Content<\\/li>\\n<li>Columns<\\/li>\\n<li>Styles<\\/li>\\n<li>Preview<\\/li>\\n<\\/ol>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dotted","borderWidth":"3px","borderColor":"#aaaaaa"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3>This template...<\\/h3>"},{"type":"text","text":"<p>In the right sidebar, you can add layout blocks to your newsletter.<\\/p>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3>... has a...<\\/h3>"},{"type":"text","text":"<p>You have the choice of:<\\/p>\\n<ul>\\n<li>1 column<\\/li>\\n<li>2 columns<\\/li>\\n<li>3 columns<\\/li>\\n<\\/ul>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3>3-column layout.<\\/h3>"},{"type":"text","text":"<p>You can add as many layout blocks as you want!<\\/p>"},{"type":"text","text":""}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"24.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"social","iconSet":"grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/02-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"}]},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"7.5px","borderStyle":"solid","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"footer","text":"<p><a href=\\"[link:subscription_unsubscribe_url]\\">Unsubscribe<\\/a> | <a href=\\"[link:subscription_manage_url]\\">Manage your subscription<\\
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (33,0,'Simple Text','["standard","blank"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: left;\\">Hi [subscriber:firstname | default:subscriber],<\\/p>\\n<p style=\\"text-align: left;\\"><\\/p>\\n<p style=\\"text-align: left;\\">In MailPoet, you can write emails in plain text, just like in a regular email. This can make your email newsletters more personal and attention-grabbing.<\\/p>\\n<p style=\\"text-align: left;\\"><\\/p>\\n<p style=\\"text-align: left;\\">Is this too simple? You can still style your text with basic formatting, like <strong>bold<\\/strong> or <em>italics.<\\/em><\\/p>\\n<p style=\\"text-align: left;\\"><\\/p>\\n<p style=\\"text-align: left;\\">Finally, you can also add a call-to-action button between 2 blocks of text, like this:<\\/p>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"23px"}}},{"type":"button","text":"It''s time to take action!","url":"","styles":{"block":{"backgroundColor":"#2ea1cd","borderColor":"#0074a2","borderWidth":"1px","borderRadius":"5px","borderStyle":"solid","width":"288px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Verdana","fontSize":"16px","fontWeight":"normal","textAlign":"left"}}},{"type":"text","text":"<p>Thanks for reading. See you soon!<\\/p>\\n<p> <\\/p>\\n<p><strong><em>The MailPoet Team<\\/em><\\/strong><\\/p>"},{"type":"footer","text":"<p><a href=\\"[link:subscription_unsubscribe_url]\\">Unsubscribe<\\/a> | <a href=\\"[link:subscription_manage_url]\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"left"},"link":{"fontColor":"#6cb7d4","textDecoration":"none"}}}]}]}]},"globalStyles":{"text":{"fontColor":"#000000","fontFamily":"Arial","fontSize":"15px"},"h1":{"fontColor":"#111111","fontFamily":"Trebuchet MS","fontSize":"30px"},"h2":{"fontColor":"#222222","fontFamily":"Trebuchet MS","fontSize":"24px"},"h3":{"fontColor":"#333333","fontFamily":"Trebuchet MS","fontSize":"22px"},"link":{"fontColor":"#21759B","textDecoration":"underline"},"wrapper":{"backgroundColor":"#ffffff"},"body":{"backgroundColor":"#ffffff"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/simple-text/thumbnail.20190411-1500.jpg',NULL,1,NULL,'2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (34,0,'Take a Hike','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/header.jpg","alt":"header","fullWidth":true,"width":"1320px","height":"483px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p>Hi [subscriber:firstname | default:explorer]<\\/p>\\n <p><\\/p>\\n <p>Aliquam feugiat nisl eget eleifend congue. Nullam neque tellus, elementum vel elit dictum, tempus sagittis nunc. Phasellus quis commodo odio. Vestibulum vitae mi vel quam rhoncus egestas eget vitae eros. <\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"#843c15","height":"40px"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h1><strong>How to plan your hiking route<\\/strong><\\/h1>\\n <p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aliquam dictum urna ac lacus dapibus rhoncus.<\\/p>"},{"type":"button","text":"Read More","url":"https:\\/\\/www.google.co.uk","styles":{"block":{"backgroundColor":"#64a1af","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"5px","borderStyle":"solid","width":"150px","lineHeight":"34px","fontColor":"#ffffff","fontFamily":"Courier New","fontSize":"18px","fontWeight":"bold","textAlign":"left"}}}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/map.jpg","alt":"map","fullWidth":false,"width":"330px","height":"227px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"#843c15","height":"40px"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/take_a_hike\\/boots.jpg","alt":"boots","fullWidth":false,"width":"600px","height":"400px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2><strong>Tried & tested: Our favourite walking boots<\\/strong><\\/h2>\\n <p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. <\\/p>"},{"type":"button","text":"See Reviews","url":"","styles":{"block":{"backgroundColor":"#64a1af","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"5px","borderStyle":"solid","width":"150px","lineHeight":"34px","fontColor":"#ffffff","fontFamily":"Courier New","fontSi
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (35,0,'News Day','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#f2f2f2","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/news_day\\/News-Outlet-Title-2.jpg","alt":"News-Outlet-Title-2","fullWidth":true,"width":"1280px","height":"700px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"25px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h1 style=\\"text-align: left;\\"><span style=\\"color: #2ca5d2;\\"><strong>Top Story<\\/strong><\\/span><\\/h1>"},{"type":"text","text":"<h2 style=\\"text-align: left;\\"><strong>Plasma jet engines that could take you from the ground to space<\\/strong><\\/h2>"},{"type":"image","link":"http:\\/\\/mailpoet.info\\/plasma-jet-engines-that-could-take-you-from-the-ground-to-space\\/","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/news_day\\/plasma-stingray111-800x533.jpg","alt":"Plasma jet engines that could take you from the ground to space","fullWidth":false,"width":"413.28125px","height":440,"styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p class=\\"mailpoet_wp_post\\">FORGET fuel-powered jet engines. We\\u2019re on the verge of having aircraft that can fly from the ground up to the edge of space using air and electricity alone. Traditional jet engines create thrust by mixing compressed air with fuel and igniting it. The burning mixture expands rapidly and is blasted out of the back of the engine, pushing it forwards. …<\\/p><p><a href=\\"http:\\/\\/mailpoet.info\\/plasma-jet-engines-that-could-take-you-from-the-ground-to-space\\/\\">Read More<\\/a><\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"solid","borderWidth":"1px","borderColor":"#aaaaaa"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h3><span style=\\"color: #2ca5d2;\\"><strong>Popular Posts Today<\\/strong><\\/span><\\/h3>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3 style=\\"text-align: left; font-size: 18px; line-height: 1.4;\\"><strong>Cutting through the smog: What to do to fight air pollution<\\/strong><\\/h3>\\n <p class=\\"mailpoet_wp_post\\">Tackling our air problems starts with traffic control, but individual action to reduce energy use and intensive farming would also help clean our air.<\\/p>\\n <p><a href=\\"http:\\/\\/mailpoet.info\\/cutting-through-the-smog-what-to-do-to-fight-air-pollution\\/\\">Read Mor
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (36,0,'World Cup','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#222222"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Header.png","alt":"Sports-Football-Header","fullWidth":true,"width":"1280px","height":"220px","styles":{"block":{"textAlign":"center"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Divider-1.png","alt":"Sports-Football-Divider-1","fullWidth":true,"width":"1280px","height":"50px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#da6110"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p><strong><span style=\\"color: #ffffff; font-size: 14px;\\">Issue #1<\\/span><\\/strong><\\/p>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: right;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" target=\\"_blank\\" style=\\"color: #ffffff; font-size: 14px; text-align: center;\\">View In Browser<\\/a><\\/p>\\n <p style=\\"text-align: right;\\"><span style=\\"color: #ffffff; text-align: start;\\">Monday 1st January 2017<\\/span><\\/p>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#da6110","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Header-1.png","alt":"Sports-Football-Header","fullWidth":true,"width":"1280px","height":"580px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"text","text":"<h2 style=\\"text-align: left;\\"><strong>Welcome Back!<\\/strong><\\/h2>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam consequat lorem at est congue, non consequat lacus iaculis. Integer euismod mauris velit, vel ultrices nibh bibendum quis. Donec eget fermentum magna.<\\/p>\\n <p><\\/p>\\n <p>Nullam congue dui lectus, quis pellentesque orci placerat eu. Fusce semper neque a mi aliquet vulputate sed sit amet nisi. Etiam sed nisl nec orci pretium lacinia eget in turpis. Maecenas in posuere justo. Vestibulum et sapien vestibulum, imperdiet neque in, maximus velit.<\\/p>\\n <p><\\/p>\\n <p>Proin dignissim elit magna, viverra scelerisque libero vehicula sed<\\/p>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/world_cup\\/Sports-Football-Divider-3.png","alt":"Sports-Football-Divider-3","fullWidth":true,"width":"1280px","height":"50px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"#efefef","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#efefef"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"b
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (37,0,'Festival Event','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#0a5388","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/festival_event\\/festival-header.jpg","alt":"festival-header","fullWidth":true,"width":"1320px","height":"879px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"36px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\">Pack your glowsticks, <br \\/>Boomfest is back! <\\/h1>\\n <p><\\/p>\\n <p style=\\"text-align: center;\\">Duis tempor nisl in risus hendrerit venenatis. <br \\/>Curabitur ornare venenatis nisl non ullamcorper. <\\/p>"},{"type":"button","text":"Duis id tincidunt","url":"","styles":{"block":{"backgroundColor":"#0a5388","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"5px","borderStyle":"solid","width":"260px","lineHeight":"50px","fontColor":"#ffffff","fontFamily":"Courier New","fontSize":"18px","fontWeight":"bold","textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: center;\\">Maecenas scelerisque nisi sit amet metus efficitur dapibus! <br \\/>Ut eros risus, facilisis ac aliquet vel, posuere ut urna.<\\/p>"},{"type":"social","iconSet":"full-symbol-grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#ffffff"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"28px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\">Confirmed Lineup<\\/h2>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3><em><span style=\\"color: #bae2ff;\\">Main Stage<\\/span><\\/em><\\/h3><p>Quisque libero<br \\/>Nulla convallis<br \\/>Vestibulum Ornare<br \\/>Consectetur Odio<\\/p>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3><em><span style=\\"color: #bae2ff;\\">New Acts Stage<\\/span><\\/em><\\/h3><p>Nulla interdum<br \\/>Massa nec<br \\/>Pharetra<br \\/>Varius<\\/p>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3><em><span style=\\"color: #bae2ff;\\">Comedy Stage<\\/span><\\/em>
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (38,0,'Retro Computing Magazine','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#4473a1"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#008282","height":"40px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro_computing_magazine\\/Windows94-Header.png","alt":"Windows94-Header","fullWidth":true,"width":"1280px","height":"740px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<p><span style=\\"color: #ffffff;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #ffffff;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"#008282"},"text":{"fontColor":"#222222","fontFamily":"Courier New","fontSize":"12px","textAlign":"left"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"text","text":"<h1 style=\\"text-align: left;\\"><strong>We''re upgrading!<\\/strong><\\/h1>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci. Etiam enim enim, aliquet nec ligula in, ultrices iaculis dolor. Suspendisse potenti. Praesent fringilla augue ut lorem mattis, vitae fringilla nunc faucibus. <\\/span><\\/p>\\n<p><span><\\/span><\\/p>\\n<p><span>Quisque in leo felis. Etiam at libero et enim tincidunt scelerisque. Ut felis lectus, imperdiet quis justo quis, elementum sagittis tellus. Sed elementum, lacus at iaculis vestibulum, nunc leo gravida nisi, sed dapibus nisi odio ac ex. Aliquam id arcu dictum, cursus quam id, eleifend libero.<\\/span><\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"ridge","borderWidth":"3px","borderColor":"#aaaaaa"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1><strong>Latest News<\\/strong><\\/h1>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3 style=\\"text-align: left;\\"><strong>What is it like to use a Windows 98 PC in 2017?<\\/strong><\\/h3>"},{"type":"text","text":"<p class=\\"mailpoet_wp_post\\"><span>Computers are much more advanced than they were even a few years ago, but of course we all like to complain about the dumb things they sometimes do. It’s easy to forget how clunky things used to be, though...<\\/span><\\/p>\\n<p><a href=\\"http:\\/\\/mailpoet.info\\/odds-on-10-science-breakthroughs-you-can-bet-on\\/\\">Read more<\\/a><\\/p>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3 style=\\"text-align: left;\\"><strong>Windows 95 still finds life online<\\/strong><\\/h3>"},{"type":"text","text":"<p class=\\"mailpoet_wp_post\\">Microsoft’s Windows 95 has reached the ripe old age of 22 this year and to commemorate this mile
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (39,0,'Shoes','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f6f6f6"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Logo.png","alt":"Retail-Shoes-Logo","fullWidth":true,"width":"1280px","height":"220px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Header.jpg","alt":"Retail-Shoes-Header","fullWidth":true,"width":"1280px","height":"700px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f1b512"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><span style=\\"color: #614a0d;\\">Our New Range<\\/span><\\/h2>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #614a0d;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque cursus aliquam urna, non ultricies diam sagittis sit amet. Etiam tempus a metus sed tincidunt.<\\/span><\\/p>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #614a0d;\\">Curabitur fermentum ligula eget lacus aliquam volutpat. Integer sapien neque, laoreet quis lobortis sed, semper eget magna. Suspendisse potentiu.<\\/span><\\/p>"},{"type":"button","text":"Find Out More","url":"","styles":{"block":{"backgroundColor":"#41c7bf","borderColor":"#28a9a2","borderWidth":"2px","borderRadius":"5px","borderStyle":"solid","width":"160px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"16px","fontWeight":"normal","textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#36b0a9"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"70px"}}},{"type":"text","text":"<h2><span style=\\"color: #ffffff;\\">Handcrafted Shoes<\\/span><\\/h2>\\n <p style=\\"font-size: 14px;\\"><span><span style=\\"color: #ffffff;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque cursus aliquam urna, non ultricies diam sagittis sit amet. Etiam tempus a metus sed tincidunt. Curabitur fermentum ligula eget lacus aliquam volutpat.<\\/span><\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Boxes-1.jpg","alt":"Retail-Shoes-Boxes-1","fullWidth":true,"width":"700px","height":"700px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#36b0a9"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/shoes\\/Retail-Shoes-Boxes-2.jpg","alt":"Retail-Shoes-Boxes-2","
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (40,0,'Music','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#2d2d2d"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/music\\/Music-Logo.png","alt":"Music-Logo","fullWidth":false,"width":"496px","height":"78px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/music\\/music-header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"70px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><span style=\\"color: #393939;\\"><strong>You Play.<\\/strong><\\/span><\\/h1>\\n<h1 style=\\"text-align: center;\\"><span style=\\"color: #393939;\\"><strong>They Listen.<\\/strong><\\/span><\\/h1>"},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><span style=\\"color: #878787;\\">Up to 50% off all of our instruments.<\\/span><\\/h2>\\n<h2 style=\\"text-align: center;\\"><span style=\\"color: #878787;\\">This week only.<\\/span><\\/h2>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"176px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"35px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><strong>Choose a category and get playing<\\/strong><\\/h2>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"button","text":"Electric Guitars","url":"","styles":{"block":{"backgroundColor":"#ffffff","borderColor":"#2d2d2d","borderWidth":"3px","borderRadius":"5px","borderStyle":"solid","width":"189px","lineHeight":"50px","fontColor":"#2d2d2d","fontFamily":"Arial","fontSize":"18px","fontWeight":"bold","textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"button","text":"Trumpets","url":"","styles":{"block":{"backgroundColor":"#ffffff","borderColor":"#2d2d2d","borderWidth":"3px","borderRadius":"5px","borderStyle":"solid","width":"189px","lineHeight":"50px","fontColor":"#2d2d2d","fontFamily":"Arial","fontSize":"18px","fontWeight":"bold","textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"button","text":"DJ Equipment","url":"","styles":{"block":{"backgroundColor":"#ffffff","borderColor":"#2d2d2d","borderWidth":"3px","borderRadius":"5px","borderStyle":"solid","width":"189px","lineHeight":"50px","fontColor":"#2d2d2d","fontFamily":"Arial","fontSize":"18px","fontWeight":"bold","textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (41,0,'Hotels','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#2d2a31"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/hotels\\/Hotel-Logo-1.png","alt":"Hotel-Logo","fullWidth":false,"width":"554px","height":"200px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>My Favourites<\\/strong><\\/span><\\/h3>"}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>Recent Bookings<\\/strong><\\/span><\\/h3>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/hotels\\/Hotel-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"text","text":"<h1><span style=\\"color: #ffffff;\\"><strong>Pets go free<\\/strong><\\/span><\\/h1>"},{"type":"text","text":"<h2 style=\\"text-align: left;\\"><span style=\\"color: #ffffff;\\">Stay in any Exquisite hotel this summer and bring your pet for free!<\\/span><\\/h2>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"button","text":"Find Out More","url":"","styles":{"block":{"backgroundColor":"#ffc600","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"5px","borderStyle":"solid","width":"180px","lineHeight":"46px","fontColor":"#3f3f3f","fontFamily":"Verdana","fontSize":"18px","fontWeight":"bold","textAlign":"left"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"text","text":"<h2 style=\\"text-align: left;\\"><strong>Get ready to travel in Exquiste style...<\\/strong><\\/h2>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci. Etiam enim enim, aliquet nec ligula in, ultrices iaculis dolor. Suspendisse potenti. Praesent fringilla augue ut lorem mattis, vitae fringilla nunc faucibus.<\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","heigh
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (42,0,'Piece of cake','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<p><strong>Open daily from 9am to 9pm | <a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/strong><\\/p>","styles":{"block":{"backgroundColor":"#ececeb"},"text":{"fontColor":"#606060","fontFamily":"Arial","fontSize":"13px","textAlign":"right"},"link":{"fontColor":"#d42b2b","textDecoration":"none"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/piece_of_cake\\/Restaurant-Bakery-Logo-1.png","alt":"Restaurant-Bakery-Logo-1","fullWidth":true,"width":"1280px","height":"180px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/piece_of_cake\\/Restaurant-Bakery-Header.jpg","alt":"Restaurant-Bakery-Header","fullWidth":true,"width":"1280px","height":"1600px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>It''s our Birthday!<\\/strong><\\/h1>"},{"type":"text","text":"<h3 style=\\"text-align: center; line-height: 1.4;\\">To celebrate, we''re adding a slice of our Birthday cake to every order. Pop in this weekend to use our special offer code and enjoy!<\\/h3>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center; border: 3px dashed #d42b2b; color: #d42b2b; padding: 10px; font-size: 24px;\\"><strong>HAPPYBDAY<\\/strong><\\/p>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"50px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ececeb"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ececeb"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"background-color: #ececeb; line-height: 1.3;\\"><span style=\\"font-weight: 600;\\"><span style=\\"font-size: 12px; text-align: center;\\">Add your postal address here.<\\/span><\\/span><\\/p>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"social","iconSet":"full-symbol-color","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (43,0,'Buddhist Temple','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#00050b"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Merriweather Sans","fontSize":"11px","textAlign":"left"},"link":{"fontColor":"#787878","textDecoration":"none"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"80px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Logo.png","alt":"Buddhist-Logo","fullWidth":false,"width":"170px","height":"99px","styles":{"block":{"textAlign":"left"}}},{"type":"text","text":"<h1>With our thoughts, we make the <span style=\\"color: #f37f31;\\">world<\\/span><\\/h1>\\n <p><span style=\\"color: #dedede;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum. Vestibulum finibus sapien in enim ultricies, vel placerat risus lacinia.<\\/span><\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"24.5px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#f37f31"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/buddhist-temple\\/Buddhist-Avatar.jpg","alt":"Buddhist-Avatar","fullWidth":false,"width":"70px","height":"400px","styles":{"block":{"textAlign":"left"}}},{"type":"text","text":"<p><span style=\\"color: #999999;\\">Special Event<\\/span><\\/p>\\n <h3>Dalai Lama visit<\\/h3>\\n <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam sed semper ipsum.<\\/span><\\/p>"},{"type":"button","text":"Book tickets here","url":"","styles":{"block":{"backgroundColor":"#f37f31","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"40px","borderStyle":"solid","width":"145px","lineHeight":"35px","fontColor":"#ffffff","fontFamily":"Merriweather Sans","fontSize":"14px","fontWeight":"bold","textAlign":"left"}}},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"7px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#f37f31"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"text","text":"<h3><span styl
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (44,0,'Mosque','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e3e3e3"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#009146"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Open Sans","fontSize":"10px","textAlign":"center"},"link":{"fontColor":"#ffffff","textDecoration":"none"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#333333"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"100px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Logo.png","alt":"Mosque-Logo","fullWidth":false,"width":"182px","height":"119px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #999999;\\"><strong>JANUARY 2019<\\/strong><\\/span><\\/p>\\n <h1 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">Newsletter<\\/span><\\/h1>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc scelerisque ut purus vel eleifend. Curabitur mollis nisi id mauris efficitur pretium.<\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"90px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><span style=\\"color: #009146;\\"><strong>Upcoming Events<\\/strong><\\/span><\\/h2>"}]}]},{"type":"container","columnLayout":"1_2","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/mosque\\/Mosque-Images-1.jpg","alt":"Mosque-Images-1","fullWidth":false,"width":"800px","height":"600px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: left;\\"><span style=\\"color: #99
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (45,0,'Synagogue','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#2b3d5e"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Merriweather Sans","fontSize":"12px","textAlign":"left"},"link":{"fontColor":"#7386a7","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#384e76"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"divider","styles":{"block":{"backgroundColor":"#04aeb9","padding":"7.5px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#0d7e85"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":"1_2","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#384e76"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Logo.png","alt":"Synagogue-Logo","fullWidth":false,"width":"180px","height":"208px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"27px"}}},{"type":"social","iconSet":"full-symbol-grey","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","columnLayout":"1_2","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/synagogue\\/Synagogue-Header-2.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#384e76"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"140px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blo
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (46,0,'Faith','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/faith\\/church-header.jpg","alt":"church-header","fullWidth":true,"width":"1036px","height":"563px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\">Spreading Love & Hope...<\\/h1><p>Duis id molestie ex. Quisque finibus magna in justo tristique pellentesque. Nulla sed leo facilisis arcu malesuada molestie vel quis dolor. Donec imperdiet condimentum odio ut elementum. Aenean nisl massa, rutrum a ullamcorper eget, molestie non erat. <\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f3f4f4"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h2 style=\\"text-align: left;\\">Family Faith Events<\\/h2>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/faith\\/family.jpg","alt":"family","fullWidth":false,"width":"660px","height":"880px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p>In maximus tempus pellentesque. Nunc scelerisque ante odio, vel placerat dui fermentum efficitur. Integer vitae ex suscipit, aliquet eros vitae, ornare est. <a href=\\"http:\\/\\/www.example.com\\">Aenean vel dapibus nisi<\\/a>.<\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h2>Thoughts & Prayers<\\/h2>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/faith\\/pray.jpg","alt":"pray","fullWidth":false,"width":"660px","height":"880px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p>Donec sed vulputate ipsum. In scelerisque rutrum interdum. Donec imperdiet dignissim erat, in dictum lectus accumsan ut. <a href=\\"http:\\/\\/www.example.com\\">Aliquam erat volutpat.<\\/a><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\">Latest News<\\/h1>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"7px","borderStyle":"dotted","borderWidth":"1px","borderColor":"#dcdcdc"}}},{"type":"automatedLatestContent","amount":"3","contentType":"post","terms":[],"inclusionType":"include","displayType":"excerpt","titleFormat":"h3","titleAlignment":"left","titleIsLink":false,"imageFullWidth":false,"featuredImagePosition":"belowTitle","showAuthor":"no","authorPrecededBy":"Author:","showCategories":"no","categoriesPrecededBy":"Categories:","readMoreType":"button","readMoreText":"Read more","readMoreButton":{"type":"button","text":"Read more","url":"[postLink]","styles":{"block":{"backgroundColor":"#dfeaf3","borderColor":"#00ddff","borderWidth":"0px","borderRad
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (47,0,'College','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#eeeeee"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#eeeeee"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/college\\/College-Logo.png","alt":"College-Logo","fullWidth":false,"width":"106px","height":"652px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"36px"}}},{"type":"social","iconSet":"circles","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"},{"type":"socialIcon","iconType":"youtube","link":"http:\\/\\/www.youtube.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png","height":"32px","width":"32px","text":"Youtube"}]}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"33px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"right"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/college\\/College-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#333333"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"60px"}}},{"type":"text","text":"<p style=\\"text-align: left;\\"><span style=\\"color: #ffcc00;\\"><strong>S U M M E R E D I T I O N<\\/strong><\\/span><\\/p>\\n <h1 style=\\"text-align: left;\\"><span style=\\"color: #ffffff;\\">Graduation Day is Coming<\\/span><\\/h1>\\n <p style=\\"text-align: left;\\"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (48,0,'Renewable Energy','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#313f58"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><span style=\\"color: #fdb323;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #fdb323;\\">View in browser ><\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#016fc1"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Logo.png","alt":"Energy-Logo","fullWidth":false,"width":"200px","height":"145px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"36px"}}},{"type":"social","iconSet":"full-symbol-grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"linkedin","link":"http:\\/\\/www.linkedin.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/LinkedIn.png","height":"32px","width":"32px","text":"LinkedIn"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/renewable-energy\\/Energy-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#2ea1cd"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong><span style=\\"color: #ffffff;\\">2018 Energy Report<\\/span><\\/strong><\\/h1>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse maximus purus vel sem rutrum pulvinar. Pellentesque at justo id ipsum porttitor viv
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (49,0,'Primary School','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#cae7f2"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><strong><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/strong><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#e63729","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-Logo.png","alt":"PrimarySchool-Logo","fullWidth":false,"width":"120px","height":"652px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"33px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#e63729"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><strong><span style=\\"color: #ffffff;\\"><a href=\\"http:\\/\\/mailpoet-sg.com\\" style=\\"color: #ffffff;\\">News & Events<\\/a><\\/span><\\/strong><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><strong><span style=\\"color: #ffffff;\\"><a href=\\"http:\\/\\/mailpoet-sg.com\\" style=\\"color: #ffffff;\\">Parent Information<\\/a><\\/span><\\/strong><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><strong><span style=\\"color: #ffffff;\\"><a href=\\"http:\\/\\/mailpoet-sg.com\\" style=\\"color: #ffffff;\\">Scho<\\/a><a href=\\"http:\\/\\/mailpoet-sg.com\\" style=\\"color: #ffffff;\\">ol Calendar<\\/a><\\/span><\\/strong><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/primary-school\\/PrimarySchool-WideImage-1.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#c23a3a"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"50px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong><span style=\\"color: #ffffff;\\">Welcome back everyone!<\\/span><\\/strong><\\/h1>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #ff
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (50,0,'Computer Repair','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#1c00af"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #999999;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #999999;\\">View this in your browser.<\\/a><\\/span><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#1c00af"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/computer-repair\\/ComputerRepair-Logo.png","alt":"ComputerRepair-Logo","fullWidth":true,"width":"408px","height":"97px","styles":{"block":{"textAlign":"center"}}},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"34px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#ffffff"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong>TIRED OF SCREENS LIKE THIS?<\\/strong><\\/h1>\\n <p style=\\"text-align: center;\\"><em>Don''t panic! We''re here to help! <\\/em><\\/p>\\n <p style=\\"text-align: center;\\"><\\/p>\\n <p style=\\"text-align: center;\\">Come on down to our nearest store and we''ll be happy to take a look at your computer and help get you back up and running again in no time.<\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"14px","borderStyle":"dashed","borderWidth":"2px","borderColor":"#ffffff"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><a href=\\"http:\\/\\/mailpoet-sg.com\\/wp-admin\\/http:\\">Computer Repair<\\/a><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><a href=\\"http:\\/\\/mailpoet-sg.com\\/wp-admin\\/http:\\">Help & Support<\\/a><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><a href=\\"http:\\/\\/mailpoet-sg.com\\/wp-admin\\/http:\\">Call Us Now<\\/a><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","im
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (51,0,'Yoga Studio','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#1e2937","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/yoga_studio\\/yoga-1.png","alt":"yoga-1","fullWidth":true,"width":"1280px","height":"740px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><strong>Here''s your classes for this week:<\\/strong><\\/h2>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3><strong><span style=\\"color: #83bd31;\\"><em>Weekdays<\\/em><\\/span><\\/strong><\\/h3>\\n <p><strong>Monday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><strong>Tuesday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><strong>Wednesday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><strong>Thursday<\\/strong>: CLOSED FOR PRIVATE CLASS.<\\/p>\\n <p><strong>Friday<\\/strong>: 7am, 9am, 11am, and 3pm.<\\/p>"}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3><strong><span style=\\"color: #83bd31;\\"><em>Weekend<\\/em><\\/span><\\/strong><\\/h3>\\n <p><strong>Saturday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><strong>Sunday<\\/strong>: 7am, 9am, 11am, 3pm and 5pm.<\\/p>\\n <p><\\/p>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"22px","borderStyle":"solid","borderWidth":"1px","borderColor":"#d5d5d5"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"font-weight: 600;\\">Meet the instructors<\\/span><\\/h3>"}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/yoga_studio\\/yoga-person-1.png","alt":"yoga-person-1","fullWidth":false,"width":"400px","height":"400px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #83bd31;\\"><span style=\\"font-weight: 600;\\">Maria Smith<\\/span><\\/span><\\/h3>\\n <p style=\\"text-align: center;\\">Nullam hendrerit feugiat feugiat. Praesent mollis ante lacus, quis tempor leo sagittis vel. Donec sagittis eros at felis venenatis ultricies.<\\/p>"},{"type":"button","text":"Find Out More","url":"","styles":{"block"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (52,0,'Retro','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro\\/1980s-Header.jpg","alt":"1980s-Header","fullWidth":true,"width":"1280px","height":"740px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"text","text":"<h2 style=\\"text-align: left;\\"><strong>Welcome back !<\\/strong><\\/h2>\\n<p style=\\"text-align: left;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>"},{"type":"divider","styles":{"block":{"backgroundColor":"transparent","padding":"13px","borderStyle":"solid","borderWidth":"2px","borderColor":"#f36543"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/retro\\/1980s-Download-1.jpg","alt":"1980s-Download-1","fullWidth":false,"width":"364px","height":"291px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3><strong>Free Retro-Futuristic Font<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit.<\\/span><\\/p>"},{"type":"button","text":"Download Here","url":"","styles":{"block":{"backgroundColor":"#f36543","borderColor":"#f36543","borderWidth":"1px","borderRadius":"40px","borderStyle":"solid","width":"150px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"14px","fontWeight":"bold","textAlign":"left"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoe
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (53,0,'Charity','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#7bc9ee"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/header-bg.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/charity-logo.png","alt":"charity-logo","fullWidth":false,"width":"240px","height":"103px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"43px"}}},{"type":"text","text":"<p style=\\"text-align: right;\\"><span style=\\"color: #a6d2d2;\\">Charity Number: 09238923<\\/span><\\/p>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/charity\\/charity-header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"45px"}}},{"type":"text","text":"<h1><strong><span style=\\"color: #ffffff;\\">We need your help<\\/span><\\/strong><\\/h1>"},{"type":"text","text":"<h3><span style=\\"color: #ffffff;\\">For just $5 a month, you can help people around the world that are in desperate need of fresh, clean water.<\\/span><\\/h3>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"80px"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"35px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><span style=\\"color: #333333;\\"><strong>It only takes 5 minutes to help someone in need<\\/strong><\\/span><\\/h2>\\n<p style=\\"text-align: center;\\"><span style=\\"color: #333333;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra diam semper, vulputate eros quis, sagittis ipsum. Vivamus ullamcorper sapien at sapien maximus, nec venenatis sapien tincidunt. Duis viverra imperdiet magna, a facilisis diam scelerisque at. Nunc at quam ligula. Nullam ut magna velit.<\\/span><\\/p>"},{"type":"button","text":"Start Helping Now","url":"","styles":{"block":{"backgroundColor":"#05a0e8","borderColor":"#05a0e8","borderWidth":"1px","borderRadius":"3px","borderStyle":"solid","width":"241px","lineHeight":"50px","fontColor":"#ffffff","fontFamily":"Arial","fontSize":"20px","fontWeight":"bold","textAlign":"c
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (54,0,'City News','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#252525"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"header","text":"<p><span style=\\"color: #999999;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #999999;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"right"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#000000"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"70px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/city-local-news\\/CityNews-Logo.png","alt":"CityNews-Logo","fullWidth":false,"width":"150px","height":"178px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>[date:mtext] [date:y]<\\/strong><\\/span><\\/h1>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">N E W S L E T T E R<\\/span><\\/p>"},{"type":"social","iconSet":"full-symbol-grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"email","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png","height":"32px","width":"32px","text":"Email"},{"type":"socialIcon","iconType":"youtube","link":"http:\\/\\/www.youtube.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png","height":"32px","width":"32px","text":"Youtube"}]},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#252525"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (55,0,'Coffee','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"50px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"social","iconSet":"full-symbol-black","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Logo-1.png","alt":"Coffee-Logo-1","fullWidth":false,"width":"120px","height":"71px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><span style=\\"color: #000000;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #000000;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/Coffee-Header.jpg","alt":"Coffee-Header","fullWidth":false,"width":"1280px","height":"260px","styles":{"block":{"textAlign":"center"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/coffee\\/coffee.gif","alt":"coffee","fullWidth":true,"width":"660px","height":"371px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","orientation":"horizontal","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2 style=\\"text-align: center;\\"><strong>We''ve got some new blends, just for you.<\\/strong><\\/h2>\\n<p style=\\"text-align: center;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vehicula magna sit amet lorem venenatis, quis condimentum odio egestas. Suspendisse felis felis, tempor id convallis in, tincidunt quis nisi. Morbi dolor elit, maximus et ve
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (56,0,'Vlogger','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"25px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Merriweather Sans","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#aaaaaa","textDecoration":"none"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#f3ba25"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"180px"}}},{"type":"text","text":"<h1 style=\\"text-align: center; font-size: 80px;\\"><span style=\\"color: #ffffff;\\"><strong>STACEY<\\/strong><\\/span><\\/h1>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"145px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#5527a6"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">Vlogging About Beauty, Fashion, Life Hacks & My Life<\\/span><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"50px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-Youtube.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#7b0000"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"63px"}}},{"type":"text","text":"<p style=\\"text-align: center; font-size: 11px;\\"><span style=\\"color: #ffffff;\\">L A T E S T V I D E O<\\/span><\\/p>\\n <h1 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>Roses are red...<\\/strong><\\/span><\\/h1>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ut fringilla velit, id malesuada nisi. Nam ac rutrum diam. Nunc diam leo, bibendum eget aliquam eget, commodo vitae lectus.<\\/span><\\/p>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/vlogger\\/Vlogger-Play
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (57,0,'Birds','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#222222"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#26b6cf"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Logo-1.png","alt":"Birds-Logo","fullWidth":false,"width":"178px","height":"127px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Roboto","fontSize":"12px","textAlign":"right"},"link":{"fontColor":"#12616f","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#222222"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/birds\\/Birds-Header-2.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#222222"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"112px"}}},{"type":"text","text":"<h1 style=\\"text-align: left;\\"><span style=\\"color: #ffffff;\\"><strong>New Season<\\/strong><\\/span><\\/h1>\\n <p style=\\"text-align: left;\\"><span style=\\"color: #ffffff;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut in mattis neque. <\\/span><span style=\\"color: #ffffff;\\">Quisque sed massa eu tellus efficitur dictum at sed augue. <span>Ut in mattis neque.<\\/span><\\/span><\\/p>"},{"type":"button","text":"Read the whole story","url":"","styles":{"block":{"backgroundColor":"#26b6cf","borderColor":"#0074a2","borderWidth":"0px","borderRadius":"0px","borderStyle":"solid","width":"159px","lineHeight":"37px","fontColor":"#ffffff","fontFamily":"Merriweather Sans","fontSize":"14px","fontWeight":"normal","textAlign":"left"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"90px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (58,0,'Engineering','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#1d1d1d"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Logo.png","alt":"Engineering-Logo","fullWidth":true,"width":"150px","height":"506px","styles":{"block":{"textAlign":"center"}}},{"type":"header","text":"<p><span style=\\"color: #808080;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #808080;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Header-1.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"295px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong><em><span style=\\"color: #ffffff;\\">Let your dreams take flight...<\\/span><\\/em><\\/strong><\\/h1>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/engineering\\/Engineering-Bearing.png","alt":"Engineering-Bearing","fullWidth":false,"width":"400px","height":"800px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h2><strong><span style=\\"color: #ffffff;\\">The all-new RoundBros 6206 ball bearing.<\\/span><\\/strong><\\/h2>\\n <p><span style=\\"color: #cccccc;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus ac orci neque. Sed hendrerit condimentum augue, sed porta nulla vulputate rutrum. Donec vel purus urna. Sed dui sapien, congue non accumsan euismod, ultrices ut dui.<\\/span><\\/p>"},{"type":"button","text":"Find out more","url":"","styles":{"block":{"backgroundColor":"#1d1d1d","borderColor":"#ffffff","borderWidth":"3px","borderRadius":"3px","borderStyle":"solid","width":"134px","lineHeight":"33px","fontColor":"#ffffff","fontFamily":"Roboto","fontSize":"16px","fontWeight":"bold","textAlign":"left"}}}]}]},
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (59,0,'Branding Agency News','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#eeeeee"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><span style=\\"color: #808080;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #808080;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Merriweather Sans","fontSize":"12px","textAlign":"left"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"25px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/branding-agency-news\\/Branding-Logo.png","alt":"Branding-Logo","fullWidth":false,"width":"122px","height":"117px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"social","iconSet":"full-symbol-black","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/07-full-symbol-black\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p><span style=\\"color: #bdbdbd;\\"><strong>B I G N E W S<\\/strong><\\/span><\\/p>\\n <h1>Branded is getting a refresh<\\/h1>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (60,0,'WordPress Theme','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#b8dae3"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arvo","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#222222","textDecoration":"none"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#051137"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#051137"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/word-press-theme\\/Wordpress-Logo.png","alt":"Wordpress-Logo","fullWidth":false,"width":"260px","height":"177px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"22px"}}},{"type":"social","iconSet":"full-symbol-grey","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"website","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Website.png","height":"32px","width":"32px","text":"Website"},{"type":"socialIcon","iconType":"email","link":"","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Email.png","height":"32px","width":"32px","text":"Email"}]}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/word-press-theme\\/Wordpress-Header-b.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#2d557f"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">ThemeZone presents...<\\/span><\\/h3>"},{"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (61,0,'Drone','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#242424"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#070707"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/drone\\/Drone-Logo.png","alt":"Drone-Logo","fullWidth":false,"width":"138px","height":"228px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\"><strong><span style=\\"color: #ffffff;\\">TAKE TO THE SKIES<\\/span><\\/strong><\\/h1>"},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #f0f0f0;\\">The Frontier 7S is the world’s first<\\/span><\\/h3>\\n<h3 style=\\"text-align: center;\\"><span style=\\"color: #f0f0f0;\\">mind-controlled aerial drone<\\/span><\\/h3>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/drone\\/Drone-Header.jpg","alt":"Drone-Header","fullWidth":false,"width":"470px","height":"462px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"39px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><strong>Fly with your mind<\\/strong><\\/h2>\\n<p style=\\"text-align: center;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra diam semper, vulputate eros quis, sagittis ipsum. Vivamus ullamcorper sapien at sapien maximus, nec venenatis sapien tincidunt. Duis viverra imperdiet magna, a facilisis diam scelerisque at. Nunc at quam ligula. Nullam ut magna velit.<\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/drone\\/Drone-Image-1.jpg","alt":"Drone-Image-1","fullWidth":true,"width":"400px","height":"400px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"55px"}}},{"type":"text","text":"<h2><strong>Ready to travel to you<\\/strong><\\/h2>\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pharetra diam semper, vulputate eros quis, sagittis ipsum. Vivamus ullamcorper sapien at sapien maximus, nec venenatis sapien tincidunt.<\\/p>"},{"type":"button","text":"Find Out More","url":"","styles":{"block":{"backgroundColor":"#000000","borderColor":"#000000","borderWidth":"1px","borderRadius":"10px","borderStyle":"solid","width":"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (62,0,'Fashion Blog','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><span style=\\"color: #999999;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #999999;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog\\/Fashion-Logo-1.png","alt":"Fashion-Logo-1","fullWidth":false,"width":"200px","height":"38px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog\\/Fashion-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#66cbba"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"170px"}}},{"type":"text","text":"<h2 style=\\"text-align: center; background-color: #ffffff; line-height: 1.2; margin: 0!important; padding: 15px 10px 10px 10px;\\"><strong>The new season is here<\\/strong><\\/h2>\\n <p style=\\"text-align: center; background-color: #ffffff; padding: 10px; margin: 0!important;\\"><strong><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus et pellentesque<\\/span><\\/strong><\\/p>\\n <p style=\\"text-align: center; background-color: #ffffff; padding: 10px 10px 30px 10px; margin: 0!important;\\"><a href=\\"http:\\/\\/www.mystore.com\\" style=\\"background-color: #222222; color: #ffffff!important; padding: 10px; text-decoration: none!important; font-weight: bold;\\">Start Shopping<\\/a><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"170px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":"1_2","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog\\/Fashion-Gift.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#66cbba"}},"blocks":[{"type
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (63,0,'Fashion Store','["standard","all"]','','{"content":{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/tulip-2.png","alt":"tulip","fullWidth":false,"width":"26.5px","height":"64px","styles":{"block":{"textAlign":"left"}}},{"type":"text","text":"<h1><strong>TULIP PARK<\\/strong><\\/h1>"}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"85px"}}},{"type":"text","text":"<h3 style=\\"text-align: right;\\"><span style=\\"color: #bcbcbc;\\">Since 1987<\\/span><\\/h3>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#f8f8f8"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"486px"}}},{"type":"text","text":"<h1 style=\\"text-align: left;\\"><span style=\\"color: #ffffff;\\">Autumn\\/Winter<\\/span><\\/h1>"}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"text","text":"<h2 style=\\"text-align: center;\\"><strong>The Autumn\\/Winter Range at Tulip Park<\\/strong><\\/h2>\\n<p style=\\"text-align: center;\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci. Etiam enim enim, aliquet nec ligula in, ultrices iaculis dolor. Suspendisse potenti. Praesent fringilla augue ut lorem mattis, vitae fringilla nunc faucibus.<\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion\\/Fashion-Items-1.jpg","alt":"Fashion-Items-1","fullWidth":true,"width":"364px","height":"291px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"36px"}}},{"type":"text","text":"<h3><strong>Title Goes Here<\\/strong><\\/h3>\\n<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh,
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (64,0,'Women Fashion Store','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f5f5f5"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f5f5f5"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"font-size: 12px; text-align: left;\\">October 2018 Edition<\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: right;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #b76e97; font-size: 12px;\\">View this in your browser.<\\/a><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#f5f5f5"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/Fashion-Logo.png","alt":"Fashion-Logo","fullWidth":false,"width":"157px","height":"48px","styles":{"block":{"textAlign":"left"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-blog-a\\/Fashion-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"90px"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>October 2018<\\/strong><\\/span><\\/p>\\n <h1 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\"><strong>Autumn Season<\\/strong><\\/span><\\/h1>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"60px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"text","text":"<p style=\\"text-align: left;\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce mollis orci justo, commodo mattis nisi ullamcorper vitae. Sed aliquam, ex ac lacinia tempus, enim urna luctus odio, at consequat leo ante non tellus.<\\/span><\\/p>\\n <p style=\\"text-align: left;\\"><span><\\/span><\\/p>\\n <p style=\\"text-align: left;\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce mollis orci justo, commodo mattis nisi ullamcorper vitae. <\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transp
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (65,0,'Photography','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Logo.png","alt":"Photography-Logo","fullWidth":false,"width":"160px","height":"141px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"42px"}}},{"type":"text","text":"<p style=\\"text-align: right;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h1 style=\\"line-height: 48px;\\"><strong>The big photos from last week, straight to your inbox.<\\/strong><\\/h1>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/photography\\/Photography-Images-1.jpg","alt":"Photography-Images-1","fullWidth":true,"width":"1200px","height":"800px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<p><strong><span style=\\"color: #000000;\\">Canyon<\\/span><\\/strong><\\/p>\\n <p><span style=\\"color: #000000;\\">\\ud83d\\udcf7 Brodie Vissers<\\/span><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (66,0,'Jazz Club','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#0b0821"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#898989","textDecoration":"underline"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-logo.png","alt":"Jazz-logo","fullWidth":false,"width":"324px","height":"607px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"social","iconSet":"full-symbol-grey","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"},{"type":"socialIcon","iconType":"youtube","link":"http:\\/\\/www.youtube.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Youtube.png","height":"32px","width":"32px","text":"Youtube"}]},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/jazz-club\\/Jazz-Images-1.jpg","alt":"Jazz-Images-1","fullWidth":false,"width":"800px","height":"875px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h2><span>29th March 2019<\\/span>
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (67,0,'Guitarist','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#27282e"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"23px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#27282e"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/guitarist\\/Guitarist-Logo.png","alt":"Guitarist-Logo","fullWidth":false,"width":"184px","height":"179px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"26px"}}},{"type":"social","iconSet":"full-symbol-grey","styles":{"block":{"textAlign":"center"}},"icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/08-full-symbol-grey\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"}]}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"25px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Merriweather Sans","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#949494","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#27282e"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"23px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/guitarist\\/Guitarist-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#27282e"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"tran
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (68,0,'Healthy Food Blog','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#e3e3e3","height":"40px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#323232"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#323232","height":"20px"}}},{"type":"text","text":"<p><strong><span style=\\"color: #ffffff; font-size: 14px;\\">[date:mtext] [date:y] Edition<\\/span><\\/strong><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#323232","height":"22px"}}},{"type":"text","text":"<p style=\\"text-align: right; font-size: 12px;\\"><span style=\\"color: #ed682a;\\"><strong><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #ed682a;\\">View this email in your browser ><\\/a><\\/strong><\\/span><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"30px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/healthy-food-blog\\/HealthyFood-Logo.png","alt":"HealthyFood-Logo","fullWidth":false,"width":"400px","height":"296px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"25px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"#ffffff","height":"121px"}}},{"type":"social","iconSet":"circles","icons":[{"type":"socialIcon","iconType":"facebook","link":"http:\\/\\/www.facebook.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Facebook.png","height":"32px","width":"32px","text":"Facebook"},{"type":"socialIcon","iconType":"twitter","link":"http:\\/\\/www.twitter.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Twitter.png","height":"32px","width":"32px","text":"Twitter"},{"type":"socialIcon","iconType":"instagram","link":"http:\\/\\/instagram.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Instagram.png","height":"32px","width":"32px","text":"Instagram"},{"type":"socialIcon","iconType":"youtube","link":"http:\\/\\/www.youtube.com","image":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/newsletter_editor\\/social-icons\\/03-circles\\/Youtube.png","height"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (69,0,'Software','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"60px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/software\\/Software-Logo.png","alt":"Software-Logo","fullWidth":false,"width":"140px","height":"122px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<p><strong><a href=\\"[link:newsletter_view_in_browser_url]\\">View online<\\/a><\\/strong><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Merriweather Sans","fontSize":"12px","textAlign":"right"},"link":{"fontColor":"#212327","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"text","text":"<h1 style=\\"text-align: center; line-height: 46px;\\"><span style=\\"color: #212327;\\"><strong>Your music.<br \\/>Your way.<\\/strong><\\/span><\\/h1>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/software\\/Software-Header.jpg","alt":"Software-Header","fullWidth":true,"width":"1200px","height":"800px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"40px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"50px"}}},{"type":"text","text":"<h2 style=\\"text-align: left;\\"><strong>Find music fast<\\/strong><\\/h2>\\n <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin placerat feugiat est, malesuada varius sem finibus a. Nunc feugiat sollicitudin gravida. In eu vestibulum orci, sit amet ultrices mauris.<\\/p>"},{"type":"button","text":"Find out more","url":"","styles":{"block":{"backgroundColor":"#212327","borderColor":"#212327","borderWidth":"0px","borderRadius":"5px","borderStyle":"solid"
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (70,0,'Makeup Blog','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#adadad","textDecoration":"underline"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Logo.png","alt":"WomensLifestyle-Logo","fullWidth":false,"width":"130px","height":"94px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"text","text":"<h1 style=\\"text-align: center;\\">Fashion Week Special<\\/h1>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Header-1.jpg","alt":"WomensLifestyle-Header-1","fullWidth":true,"width":"900px","height":"426px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: center;\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet scelerisque odio. Pellentesque nisl massa, ullamcorper eu gravida varius, mollis eu orci.<\\/span><\\/p>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Breaker-1-1.jpg","alt":"WomensLifestyle-Breaker-1-1","fullWidth":true,"width":"900px","height":"65px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#c83142"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Image-1.png","alt":"WomensLifestyle-Image-1","fullWidth":false,"width":"400px","height":"400px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #ffffff;\\">Big announcement from top artists<\\/span><\\/h3>\\n <p style=\\"text-align: center;\\"><span style=\\"color: #e0cccc;\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sit amet scelerisque odio. Pellentesque nisl massa, ullamcorper eu gravida varius, mollis eu orci.<\\/span><\\/p>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-a\\/WomensLifestyle-Breaker-2.jpg","alt":"WomensLifestyle-Breaker-2","fullWidth":true,"width":"900px","height":"65px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#6d3aa7"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backg
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (71,0,'Kids Shop','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"60px"}}},{"type":"text","text":"<p style=\\"text-align: center; font-size: 11px; letter-spacing: 3px;\\"><strong>AUTUMN RANGE 2018<\\/strong><\\/p>"},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Logo.png","alt":"FashionKids-Logo","fullWidth":false,"width":"200px","height":"64px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<h1 style=\\"text-align: center; font-size: 52px; line-height: 1.2;\\"><strong>IT''S TIME <\\/strong><strong>TO EXPLORE<\\/strong><\\/h1>"},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"403px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#c6d4dd"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Image-Square.jpg","alt":"FashionKids-Image-Square","fullWidth":true,"width":"400px","height":"400px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"100px"}}},{"type":"text","text":"<h3 style=\\"text-align: center;\\">Keep them warm this autumn with our whole new range just for your little ones<\\/h3>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Image-1-1.jpg","alt":"FashionKids-Image-1-1","fullWidth":true,"width":"400px","height":"800px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#c6d4dd"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/fashion-shop\\/FashionKids-Image-Square-2.jpg","alt":"FashionKids-Image-Square-2","fullWidth
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (72,0,'Lifestyle Blog','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-Logo-1.png","alt":"WomensLifestyle-Logo","fullWidth":true,"width":"160px","height":"57px","styles":{"block":{"textAlign":"left"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><span style=\\"color: #b25088;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #b25088;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"right"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#b25187"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"440px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/lifestyle-blog-b\\/WomensLifestyle-HeaderDrop.jpg","alt":"WomensLifestyle-HeaderDrop","fullWidth":true,"width":"900px","height":"61px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"font-size: 11px; letter-spacing: 4px; text-align: center;\\"><span style=\\"color: #808080;\\"><strong>FEATURED ARTICLE THIS MONTH<\\/strong><\\/span><\\/p>\\n <h2 style=\\"text-align: center;\\"><strong>Business tips from top female executives<\\/strong><\\/h2>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<h3 style=\\"text-align: center;\\"><span style=\\"color: #993366;\\"><strong>1<\\/strong><\\/span><\\/h3>\\n <p style=\\"text-align: center;\\"><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (73,0,'Painter','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"header","text":"<p><a href=\\"[link:newsletter_view_in_browser_url]\\">View this in your browser.<\\/a><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Merriweather","fontSize":"11px","textAlign":"center"},"link":{"fontColor":"#787878","textDecoration":"none"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/Painter-Logo-bg.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#8289ca"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"100px"}}},{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/Painter-Logo.png","alt":"Painter-Logo","fullWidth":false,"width":"305.9375px","height":"93px","styles":{"block":{"textAlign":"center"}}},{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"100px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><a href=\\"https:\\/\\/www.mailpoet.com\\">Reviews & Submissions<\\/a><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><a href=\\"https:\\/\\/www.mailpoet.com\\">Essential Gear<\\/a><\\/p>"}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p style=\\"text-align: center;\\"><a href=\\"https:\\/\\/www.mailpoet.com\\">Latest Commissions<\\/a><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/painter\\/Painter-Header.jpg","display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"ty
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (74,0,'Farmers Market','["standard","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}},{"type":"header","text":"<p><span style=\\"color: #689f2c;\\"><a href=\\"[link:newsletter_view_in_browser_url]\\" style=\\"color: #689f2c;\\">View this in your browser.<\\/a><\\/span><\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"center"},"link":{"fontColor":"#6cb7d4","textDecoration":"underline"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Top-2.jpg","alt":"FarmersMarket-Top","fullWidth":true,"width":"1200px","height":"25px","styles":{"block":{"textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg","display":"tile"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"image","link":"","src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Logo.png","alt":"FarmersMarket-Logo","fullWidth":true,"width":"200px","height":"400px","styles":{"block":{"textAlign":"center"}}}]},{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":"https:\\/\\/ps.w.org\\/mailpoet\\/assets\\/newsletter-templates\\/farmers-market\\/FarmersMarket-Middle.jpg","display":"tile"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"20px"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#252525"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"44px"}}},{"type":"text","text":"<h1 style=\\"line-height: 32px;\\"><strong><span style=\\"color: #ffffff;\\">COME JOIN US THIS WEEKEND<\\/span><\\/strong><\\/h1>\\n <p><span style=\\"color: #ffffff;\\">We''re having a big b
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (75,0,'Confirm interest before deactivation','["re_engagement","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: left;\\">Hi [subscriber:firstname | default:there],<\\/p><p style=\\"text-align: left;\\"><\\/p>\\n <p style=\\"text-align: left;\\"><span>You have subscribed to receive email updates from us, but as we''re not sure if you''re reading our emails, we''d like to ask - <strong>are you still interested in hearing from us?<\\/strong> If yes, please reconfirm your subscription by clicking the button below:<\\/span><\\/p>"},{"type":"button","text":"Yes, keep me subscribed!","url":"[link:subscription_re_engage_url]","styles":{"block":{"backgroundColor":"#2ea1cd","borderColor":"#0074a2","borderWidth":"1px","borderRadius":"5px","borderStyle":"solid","width":"288px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Verdana","fontSize":"16px","fontWeight":"normal","textAlign":"center"}}},{"type":"text","text":"<p><span class=\\"prismjs css-1xfvm4v\\" data-code-lang=\\"\\" data-ds--code--code-block=\\"\\">If you''re no longer interested, that''s completely fine. You don''t need to take any action. Our system will automatically unsubscribe you soon from all of our future content.<\\/span><\\/p>"}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p><strong><em><\\/em><\\/strong><\\/p><p><strong><em>The MailPoet Team<\\/em><\\/strong><\\/p>"},{"type":"footer","text":"<p><a href=\\"[link:subscription_unsubscribe_url]\\">Unsubscribe<\\/a> | <a href=\\"[link:subscription_manage_url]\\">Manage subscription<\\/a><br \\/>Add your postal address here!<\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"left"},"link":{"fontColor":"#6cb7d4","textDecoration":"none"}}}]}]}]},"globalStyles":{"text":{"fontColor":"#000000","fontFamily":"Arial","fontSize":"15px","lineHeight":"1.6"},"h1":{"fontColor":"#111111","fontFamily":"Trebuchet MS","fontSize":"30px","lineHeight":"1.6"},"h2":{"fontColor":"#222222","fontFamily":"Trebuchet MS","fontSize":"24px","lineHeight":"1.6"},"h3":{"fontColor":"#333333","fontFamily":"Trebuchet MS","fontSize":"22px","lineHeight":"1.6"},"link":{"fontColor":"#21759B","textDecoration":"underline"},"wrapper":{"backgroundColor":"#ffffff"},"body":{"backgroundColor":"#ffffff"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/confirm-interest-before-deactivation/thumbnail.20211026.jpg',NULL,1,NULL,'2025-02-05 21:15:52');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_templates` VALUES (76,0,'Confirm your interest or unsubscribe','["re_engagement","all"]','','{"content":{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"spacer","styles":{"block":{"backgroundColor":"transparent","height":"30px"}}},{"type":"image","link":"","src":"http:\\/\\/localhost:8882\\/wp-content\\/plugins\\/mailpoet\\/assets\\/img\\/blank_templates\\/fake-logo.png","alt":"Fake logo","fullWidth":false,"width":"598px","height":"71px","styles":{"block":{"textAlign":"center"}}},{"type":"text","text":"<p style=\\"text-align: left;\\">Hi [subscriber:firstname | default:there],<\\/p><p style=\\"text-align: left;\\"><\\/p>\\n <p style=\\"text-align: left;\\"><span>It''s been a while since you opened our emails. If you have changed your mind since you subscribed and are no longer interested, we get it! We won''t make it hard for you, so feel free to unsubscribe right away. <\\/span><\\/p><p style=\\"text-align: left;\\"><\\/p>\\n <p style=\\"text-align: left;\\"><a href=\\"[link:subscription_unsubscribe_url]\\">Unsubscribe me!<\\/a><\\/p><p style=\\"text-align: left;\\"><\\/p>\\n <p style=\\"text-align: left;\\">(When you unsubscribe, you''ll stop receiving all future emails from us.)<\\/p><p style=\\"text-align: left;\\"><\\/p>\\n <p style=\\"text-align: left;\\"><span>On the other hand, if you like our emails and want to keep receiving them, please <strong>reconfirm your subscription by clicking the big button below<\\/strong>.<\\/span><\\/p>"},{"type":"button","text":"Yes, keep me subscribed!","url":"[link:subscription_re_engage_url]","styles":{"block":{"backgroundColor":"#2ea1cd","borderColor":"#0074a2","borderWidth":"1px","borderRadius":"5px","borderStyle":"solid","width":"288px","lineHeight":"40px","fontColor":"#ffffff","fontFamily":"Verdana","fontSize":"16px","fontWeight":"normal","textAlign":"center"}}}]}]},{"type":"container","columnLayout":false,"orientation":"horizontal","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"#ffffff"}},"blocks":[{"type":"container","columnLayout":false,"orientation":"vertical","image":{"src":null,"display":"scale"},"styles":{"block":{"backgroundColor":"transparent"}},"blocks":[{"type":"text","text":"<p><strong><em><\\/em><\\/strong><\\/p><p><strong><em>The MailPoet Team<\\/em><\\/strong><\\/p>"},{"type":"footer","text":"<p><a href=\\"[link:subscription_unsubscribe_url]\\">Unsubscribe<\\/a> | <a href=\\"[link:subscription_manage_url]\\">Manage your subscription<\\/a><br \\/>Add your postal address here!<\\/p>","styles":{"block":{"backgroundColor":"transparent"},"text":{"fontColor":"#222222","fontFamily":"Arial","fontSize":"12px","textAlign":"left"},"link":{"fontColor":"#6cb7d4","textDecoration":"none"}}}]}]}]},"globalStyles":{"text":{"fontColor":"#000000","fontFamily":"Arial","fontSize":"15px","lineHeight":"1.6"},"h1":{"fontColor":"#111111","fontFamily":"Trebuchet MS","fontSize":"30px","lineHeight":"1.6"},"h2":{"fontColor":"#222222","fontFamily":"Trebuchet MS","fontSize":"24px","lineHeight":"1.6"},"h3":{"fontColor":"#333333","fontFamily":"Trebuchet MS","fontSize":"22px","lineHeight":"1.6"},"link":{"fontColor":"#21759B","textDecoration":"underline"},"wrapper":{"backgroundColor":"#ffffff"},"body":{"backgroundColor":"#ffffff"}}}','https://ps.w.org/mailpoet/assets/newsletter-templates/confirm-interest-or-unsubscribe/thumbnail.20211026.jpg',NULL,1,NULL,'2025-02-05 21:15:52');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_newsletter_option_fields`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_newsletter_option_fields`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_newsletter_option_fields` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(90) NOT NULL DEFAULT '',
|
|||
|
|
`newsletter_type` varchar(90) NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `name_newsletter_type` (`newsletter_type`(90), `name`(90))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_mailpoet_newsletter_option_fields`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (1,'isScheduled','standard',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (2,'scheduledAt','standard',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (3,'event','welcome',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (4,'segment','welcome',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (5,'role','welcome',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (6,'afterTimeNumber','welcome',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (7,'afterTimeType','welcome',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (8,'intervalType','notification',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (9,'timeOfDay','notification',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (10,'weekDay','notification',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (11,'monthDay','notification',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (12,'nthWeekDay','notification',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (13,'schedule','notification',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (14,'group','automatic',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (15,'group','automation',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (16,'group','automation_transactional',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (17,'event','automatic',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (18,'event','automation',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (19,'event','automation_transactional',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (20,'sendTo','automatic',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (21,'segment','automatic',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (22,'afterTimeNumber','automatic',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (23,'afterTimeType','automatic',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (24,'meta','automatic',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (25,'afterTimeNumber','re_engagement',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (26,'afterTimeType','re_engagement',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (27,'automationId','automation',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (28,'automationStepId','automation',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (29,'filterSegmentId','standard',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (30,'filterSegmentId','re_engagement',NULL,'2025-02-05 21:15:51');
|
|||
|
|
INSERT INTO `wp_mailpoet_newsletter_option_fields` VALUES (31,'filterSegmentId','notification',NULL,'2025-02-05 21:15:51');
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_newsletter_option`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_newsletter_option`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_newsletter_option` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`option_field_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`value` longtext,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `newsletter_id_option_field_id` (`newsletter_id`, `option_field_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_newsletter_segment`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_newsletter_segment`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_newsletter_segment` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`segment_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `newsletter_segment` (`newsletter_id`, `segment_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_newsletter_links`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_newsletter_links`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_newsletter_links` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`queue_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`url` varchar(2083) NOT NULL DEFAULT '',
|
|||
|
|
`hash` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `url` (`url`(100)),
|
|||
|
|
KEY `queue_id` (`queue_id`),
|
|||
|
|
KEY `newsletter_id` (`newsletter_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_newsletter_posts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_newsletter_posts`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_newsletter_posts` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`post_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `newsletter_id` (`newsletter_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_forms`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_forms`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_forms` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(90) NOT NULL DEFAULT '',
|
|||
|
|
`status` varchar(20) NOT NULL DEFAULT 'enabled',
|
|||
|
|
`body` longtext,
|
|||
|
|
`settings` longtext,
|
|||
|
|
`styles` longtext,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`deleted_at` timestamp,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_statistics_clicks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_statistics_clicks`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_statistics_clicks` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`queue_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`link_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`user_agent_id` int(11) unsigned,
|
|||
|
|
`user_agent_type` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
|
`count` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `subscriber_id` (`subscriber_id`),
|
|||
|
|
KEY `queue_id` (`queue_id`),
|
|||
|
|
KEY `newsletter_id_subscriber_id_user_agent_type` (`newsletter_id`, `subscriber_id`, `user_agent_type`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_statistics_bounces`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_statistics_bounces`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_statistics_bounces` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`queue_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_statistics_opens`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_statistics_opens`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_statistics_opens` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`queue_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`user_agent_id` int(11) unsigned,
|
|||
|
|
`user_agent_type` tinyint(1) NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `subscriber_id_created_at` (`subscriber_id`, `created_at`),
|
|||
|
|
KEY `created_at` (`created_at`),
|
|||
|
|
KEY `subscriber_id` (`subscriber_id`),
|
|||
|
|
KEY `queue_id` (`queue_id`),
|
|||
|
|
KEY `newsletter_id_subscriber_id_user_agent_type` (`newsletter_id`, `subscriber_id`, `user_agent_type`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_statistics_forms`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_statistics_forms`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_statistics_forms` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`form_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `form_subscriber` (`form_id`, `subscriber_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_log`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_log`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_log` (
|
|||
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(255),
|
|||
|
|
`level` int(11),
|
|||
|
|
`message` longtext,
|
|||
|
|
`created_at` timestamp DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`raw_message` DEFAULT NULL,
|
|||
|
|
`context` DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_user_flags`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_user_flags`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_user_flags` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`user_id` bigint(20) NOT NULL DEFAULT 0,
|
|||
|
|
`name` varchar(50) NOT NULL DEFAULT '',
|
|||
|
|
`value` varchar(255),
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `user_id_name` (`user_id`, `name`(50))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_feature_flags`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_feature_flags`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_feature_flags` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`value` tinyint(1),
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `name` (`name`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_dynamic_segment_filters`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_dynamic_segment_filters`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_dynamic_segment_filters` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`segment_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`filter_data` longblob,
|
|||
|
|
`filter_type` varchar(255),
|
|||
|
|
`action` varchar(255),
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `segment_id` (`segment_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_user_agents`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_user_agents`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_user_agents` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`hash` varchar(32) NOT NULL DEFAULT '',
|
|||
|
|
`user_agent` text NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_tags`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_tags`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_tags` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`description` text NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `name` (`name`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_subscriber_tag`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_subscriber_tag`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_subscriber_tag` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`tag_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `tag_id` (`tag_id`),
|
|||
|
|
UNIQUE KEY `subscriber_tag` (`subscriber_id`, `tag_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_statistics_unsubscribes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_statistics_unsubscribes`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_statistics_unsubscribes` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`queue_id` int(11) unsigned,
|
|||
|
|
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`source` varchar(255) DEFAULT 'unknown',
|
|||
|
|
`meta` varchar(255),
|
|||
|
|
`method` NOT NULL DEFAULT 'unknown',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `subscriber_id` (`subscriber_id`),
|
|||
|
|
KEY `queue_id` (`queue_id`),
|
|||
|
|
KEY `newsletter_id_subscriber_id` (`newsletter_id`, `subscriber_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_automations`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_automations`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_automations` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`author` bigint NOT NULL DEFAULT 0,
|
|||
|
|
`status` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`activated_at` timestamp,
|
|||
|
|
`deleted_at` timestamp,
|
|||
|
|
`meta` longtext DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_automation_versions`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_automation_versions`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_automation_versions` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`automation_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`steps` longtext,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `automation_id` (`automation_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_automation_triggers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_automation_triggers`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_automation_triggers` (
|
|||
|
|
`automation_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`trigger_key` varchar(191),
|
|||
|
|
PRIMARY KEY (`automation_id`, `trigger_key`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_automation_runs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_automation_runs`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_automation_runs` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`automation_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`version_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`trigger_key` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`status` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`next_step_id` varchar(191),
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `automation_id_status` (`automation_id`, `status`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_automation_run_subjects`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_automation_run_subjects`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_automation_run_subjects` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`automation_run_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`key` varchar(191),
|
|||
|
|
`args` longtext,
|
|||
|
|
`hash` varchar(191),
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `hash` (`hash`(100)),
|
|||
|
|
KEY `automation_run_id` (`automation_run_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_newsletters`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_newsletters`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_newsletters` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`hash` varchar(150) DEFAULT NULL,
|
|||
|
|
`parent_id` int(11) unsigned,
|
|||
|
|
`subject` varchar(250) NOT NULL DEFAULT '',
|
|||
|
|
`type` varchar(150) NOT NULL DEFAULT 'standard',
|
|||
|
|
`sender_address` varchar(150) NOT NULL DEFAULT '',
|
|||
|
|
`sender_name` varchar(150) NOT NULL DEFAULT '',
|
|||
|
|
`status` varchar(20) NOT NULL DEFAULT 'draft',
|
|||
|
|
`reply_to_address` varchar(150) NOT NULL DEFAULT '',
|
|||
|
|
`reply_to_name` varchar(150) NOT NULL DEFAULT '',
|
|||
|
|
`preheader` varchar(250) NOT NULL DEFAULT '',
|
|||
|
|
`body` longtext,
|
|||
|
|
`sent_at` timestamp,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`deleted_at` timestamp,
|
|||
|
|
`unsubscribe_token` char(15),
|
|||
|
|
`ga_campaign` varchar(250) NOT NULL DEFAULT '',
|
|||
|
|
`wp_post_id` ,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `unsubscribe_token` (`unsubscribe_token`(15)),
|
|||
|
|
KEY `type_status` (`type`(100), `status`(20))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_migrations`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_migrations`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_migrations` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`started_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`completed_at` timestamp,
|
|||
|
|
`retries` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`error` text,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `name` (`name`(100))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `wp_mailpoet_migrations`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (1,'Migration_20221028_105818','2025-02-05 21:15:48','2025-02-05 21:15:48',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (2,'Migration_20221110_151621','2025-02-05 21:15:48','2025-02-05 21:15:48',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (3,'Migration_20230111_120000','2025-02-05 21:15:48','2025-02-05 21:15:48',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (4,'Migration_20230111_130000','2025-02-05 21:15:48','2025-02-05 21:15:48',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (5,'Migration_20230215_050813','2025-02-05 21:15:48','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (6,'Migration_20230221_200520','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (7,'Migration_20230421_135915','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (8,'Migration_20230503_210945','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (9,'Migration_20230605_174836','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (10,'Migration_20230703_105957','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (11,'Migration_20230716_130221_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (12,'Migration_20230824_054259_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (13,'Migration_20230831_124214_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (14,'Migration_20230831_143755_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (15,'Migration_20240119_113943_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (16,'Migration_20240617_122847_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (17,'Migration_20240725_182318_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (18,'Migration_20241007_170437_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (19,'Migration_20241108_103249_Db','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (20,'Migration_20221028_105818_App','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (21,'Migration_20230109_144830','2025-02-05 21:15:49','2025-02-05 21:15:49',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (22,'Migration_20230131_121621','2025-02-05 21:15:49','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (23,'Migration_20230419_080000','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (24,'Migration_20230425_211517','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (25,'Migration_20230712_180341','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (26,'Migration_20230803_200413_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (27,'Migration_20230825_093531_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (28,'Migration_20231128_120355_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (29,'Migration_20240202_130053_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (30,'Migration_20240207_105912_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (31,'Migration_20240322_110443_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (32,'Migration_20240730_212419_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (33,'Migration_20241015_105511_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (34,'Migration_20241128_114257_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
INSERT INTO `wp_mailpoet_migrations` VALUES (35,'Migration_20250120_094614_App','2025-02-05 21:15:51','2025-02-05 21:15:51',0,NULL);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_statistics_newsletters`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_statistics_newsletters`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_statistics_newsletters` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`queue_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`sent_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `newsletter_id` (`newsletter_id`),
|
|||
|
|
KEY `subscriber_id` (`subscriber_id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_automation_run_logs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_automation_run_logs`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_automation_run_logs` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`automation_run_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`step_id` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`status` varchar(191) NOT NULL DEFAULT '',
|
|||
|
|
`started_at` timestamp,
|
|||
|
|
`error` longtext,
|
|||
|
|
`data` longtext NOT NULL DEFAULT '',
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`step_type` varchar(255) NOT NULL DEFAULT 'action',
|
|||
|
|
`step_key` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`run_number` int NOT NULL DEFAULT 1,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `wp_mailpoet_statistics_woocommerce_purchases`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `wp_mailpoet_statistics_woocommerce_purchases`;
|
|||
|
|
CREATE TABLE `wp_mailpoet_statistics_woocommerce_purchases` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`newsletter_id` int(11) unsigned,
|
|||
|
|
`subscriber_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`queue_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`click_id` int(11) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
|
|||
|
|
`order_currency` char(3) NOT NULL DEFAULT '',
|
|||
|
|
`order_price_total` float NOT NULL DEFAULT 0,
|
|||
|
|
`created_at` timestamp,
|
|||
|
|
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|||
|
|
`status` varchar(40) NOT NULL DEFAULT 'unknown',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `newsletter_id` (`newsletter_id`),
|
|||
|
|
KEY `queue_id` (`queue_id`),
|
|||
|
|
KEY `subscriber_id` (`subscriber_id`),
|
|||
|
|
UNIQUE KEY `click_id_order_id` (`click_id`, `order_id`),
|
|||
|
|
KEY `status` (`status`(40))
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
-- Dump completed on 2025-02-05T22:02:29+00:00
|