File: //backup/db_backup/utilityw_dbuti.sql
-- MySQL dump 10.15 Distrib 10.0.34-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: utilityw_dbuti
-- ------------------------------------------------------
-- Server version 10.0.34-MariaDB
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=18438 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://utilitywatch.uk','yes'),(2,'home','http://utilitywatch.uk','yes'),(3,'blogname','Utility Watch','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','bhoobal.webdesigner@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','','yes'),(11,'comments_notify','','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:3:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:27:\"js_composer/js_composer.php\";i:5;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:2:{i:0;s:83:\"/home/ypsoluti/public_html/projects/utilitywatch/wp-content/themes/mobilz/style.css\";i:2;s:0:\"\";}','no'),(41,'template','mobilz','yes'),(42,'stylesheet','mobilz','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','1','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','37965','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','page','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','1','yes'),(71,'close_comments_days_old','1','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_text','a:3:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:721:\"<img src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo-footer.png\" alt=\"Utility Watch\"/>\r\n\r\nOur energy consultants work closely with you to define your energy needs, unique business goals and appetite for risk. Gaining an understanding of your business needs is essential in order to recommend the most appropriate contract structure for you.<br><br><br>\r\n\r\nWe have <strong>no formal contract</strong> with our clients, just a simple <strong>Letter of Authority</strong>. Green Planet Marketing May receive Commission for any contracts agreed with the supplier.<br><br>\r\n\r\nAs a result, we provide completely impartial advice and recommend the <strong>strategy that will deliverthe best value</strong> for you.\r\n\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:10:\"Contact us\";s:4:\"text\";s:51:\"[contact-form-7 id=\"7\" title=\"Contact form Footer\"]\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:1:{s:27:\"wp-super-cache/wp-cache.php\";s:23:\"wpsupercache_deactivate\";}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','2','yes'),(85,'page_on_front','156','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31535','yes'),(89,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:131:{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:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{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:\"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:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:110:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";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:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}}','yes'),(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:16:\"main-widget-area\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:16:\"blog-widget-area\";a:0:{}s:21:\"portfolio-widget-area\";a:0:{}s:16:\"shop-widget-area\";a:0:{}s:18:\"page-widget-area-1\";a:0:{}s:18:\"page-widget-area-2\";a:0:{}s:18:\"page-widget-area-3\";a:0:{}s:18:\"footer-widget-area\";a:4:{i:0;s:6:\"text-2\";i:1;s:9:\"twitter-2\";i:2;s:17:\"nz-recent-posts-2\";i:3;s:6:\"text-3\";}s:13:\"array_version\";i:3;}','yes'),(96,'mm_coming_soon','false','yes'),(97,'cron','a:5:{i:1524608510;a:1:{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;}}}i:1524616518;a:1:{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;}}}i:1524618469;a:1:{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:1524619645;a:1:{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:7:\"version\";i:2;}','yes'),(107,'_transient_random_seed','85805750b37df380a1a007cc0379cb1a','yes'),(131,'recently_activated','a:0:{}','yes'),(132,'ossdl_off_cdn_url','http://utilitywatch.uk','yes'),(133,'ossdl_off_include_dirs','wp-content,wp-includes','yes'),(134,'ossdl_off_exclude','.php','yes'),(135,'ossdl_cname','','yes'),(136,'jetpack_options','a:2:{s:7:\"version\";s:16:\"3.5.3:1431642152\";s:11:\"old_version\";s:16:\"3.5.3:1431642152\";}','yes'),(137,'jetpack_activated','1','yes'),(138,'jetpack_file_data','a:1:{s:5:\"3.9.4\";a:49:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:89:\"Check your spelling, style, and grammar with the After the Deadline proofreading service.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:63:\"Transform standard image galleries into full-screen slideshows.\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:79:\"Let readers comment with WordPress.com, Twitter, Facebook, or Google+ accounts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:44:\"Insert a contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:92:\"Organize and display different types of content on your site, separate from posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:57:\"Customize your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:46:\"Add support for infinite scroll to your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:69:\"Allow applications to securely access your content through the cloud.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:85:\"Use LaTeX markup language in posts and pages for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:70:\"Give visitors an easy way to show their appreciation for your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:76:\"Manage all your sites from a centralized place, https://wordpress.com/sites.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:22:\"Recommended, Jumpstart\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:64:\"Optimize your site with a mobile-friendly theme for smartphones.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:25:\"Reports on site downtime.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:84:\"Receive notification of site activity via the admin toolbar and your Mobile devices.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your Dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:27:\"Speed up images and photos.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:44:\"Recommended, Jumpstart, Performance-Security\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:58:\"Publish posts by email, using any device and email client.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:28:\"Prevent brute force attacks.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:33:\"Recommended, Performance-Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:30:\"Automatically promote content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:24:\"Display similar content.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:32:\"Visitors can share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:31:\"Recommended, Jumpstart, Traffic\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:77:\"Embed content from YouTube, Vimeo, SlideShare, and more, no coding necessary.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:251:\"shortcodes, shortcode, embeds, media, bandcamp, blip.tv, dailymotion, digg, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:56:\"Enable WP.me-powered shortlinks for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:9:\"Site Icon\";s:11:\"description\";s:29:\"Add a site icon to your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:24:\"favicon, icon, site icon\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:75:\"Creates sitemaps to allow your site to be easily indexed by search engines.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:27:\"Secure user authentication.\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:31:\"Jumpstart, Performance-Security\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:35:\"Collect traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:20:\"Recommended, Traffic\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:88:\"Allow users to subscribe to your posts and comments and receive notifications via email.\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:9:\"Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:73:\"Display your image galleries in a variety of sleek, graphic arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:27:\"Daily or real-time backups.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:20:\"Performance-Security\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:77:\"Verify your site or domain with Google Search Console, Pinterest, and others.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:68:\"Upload and embed videos right on your site. (Subscription required.)\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:57:\"Specify which widgets appear on which pages of your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:79:\"Add images, Twitter streams, your site’s RSS links, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";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:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}}','yes'),(139,'jetpack_available_modules','a:1:{s:5:\"3.9.4\";a:37:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";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:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"omnisearch\";s:3:\"2.3\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:9:\"site-icon\";s:3:\"3.2\";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:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";}}','yes'),(141,'wpsupercache_gc_time','1470970637','yes'),(142,'jetpack_security_report','a:0:{}','yes'),(147,'WPLANG','','yes'),(154,'mm_master_aff','HGV','yes'),(155,'mm_install_date','Jul 01, 2015','yes'),(156,'mm_cron','a:4:{s:6:\"hourly\";a:0:{}s:5:\"daily\";a:1:{s:14:\"plugin_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:14:\"plugin_version\";s:2:\"el\";s:5:\"0.7.1\";}}s:7:\"monthly\";a:4:{s:11:\"php_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:11:\"php_version\";s:2:\"el\";s:6:\"5.4.33\";}s:12:\"plugin_count\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:12:\"plugin_count\";s:2:\"el\";i:7;}s:11:\"theme_count\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:11:\"theme_count\";s:2:\"el\";i:4;}s:13:\"current_theme\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:13:\"current_theme\";s:2:\"el\";s:6:\"mobilz\";}}s:6:\"weekly\";a:1:{s:10:\"wp_version\";a:4:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:9:\"scheduled\";s:2:\"ea\";s:10:\"wp_version\";s:2:\"el\";s:5:\"4.2.2\";}}}','yes'),(160,'jetpack_updates','a:7:{s:7:\"plugins\";i:0;s:6:\"themes\";i:0;s:9:\"wordpress\";i:0;s:12:\"translations\";i:0;s:5:\"total\";i:0;s:10:\"wp_version\";s:5:\"4.3.1\";s:26:\"site_is_version_controlled\";b:0;}','yes'),(169,'allow_major_auto_core_updates','true','yes'),(200,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1435732515;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(201,'current_theme','Mobilz','yes'),(202,'theme_mods_mobilz','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:11:\"header-menu\";i:6;}}','yes'),(203,'theme_switched','','yes'),(205,'redux-framework-tracking','a:3:{s:8:\"dev_mode\";b:0;s:4:\"hash\";s:32:\"738a0f1d8c7f32b43ef36bf7f06693e6\";s:14:\"allow_tracking\";s:2:\"no\";}','yes'),(206,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"570\";s:6:\"height\";s:3:\"480\";s:4:\"crop\";i:1;}','yes'),(207,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"640\";s:4:\"crop\";i:1;}','yes'),(208,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"100\";s:6:\"height\";s:3:\"100\";s:4:\"crop\";i:1;}','yes'),(210,'nz_ninzio','a:208:{s:13:\"redux-section\";s:2:\"14\";s:8:\"last_tab\";s:0:\"\";s:7:\"favicon\";a:5:{s:3:\"url\";s:61:\"http://utilitywatch.uk/wp-content/uploads/2015/07/favicon.png\";s:2:\"id\";s:4:\"1576\";s:6:\"height\";s:2:\"32\";s:5:\"width\";s:2:\"32\";s:9:\"thumbnail\";s:61:\"http://utilitywatch.uk/wp-content/uploads/2015/07/favicon.png\";}s:6:\"layout\";s:4:\"wide\";s:13:\"page-comments\";s:1:\"0\";s:13:\"smooth-scroll\";s:1:\"0\";s:19:\"one-page-navigation\";s:3:\"top\";s:14:\"one-page-speed\";s:3:\"800\";s:13:\"one-page-hash\";s:1:\"0\";s:15:\"one-page-filter\";s:0:\"\";s:10:\"google-api\";s:0:\"\";s:16:\"google-analytics\";s:0:\"\";s:14:\"google-api-key\";s:0:\"\";s:9:\"desk-logo\";a:5:{s:3:\"url\";s:58:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo.png\";s:2:\"id\";s:4:\"1577\";s:6:\"height\";s:2:\"86\";s:5:\"width\";s:3:\"320\";s:9:\"thumbnail\";s:65:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo-150x86.png\";}s:16:\"desk-logo-retina\";a:5:{s:3:\"url\";s:60:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo@2.png\";s:2:\"id\";s:4:\"1578\";s:6:\"height\";s:3:\"172\";s:5:\"width\";s:3:\"640\";s:9:\"thumbnail\";s:68:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo@2-150x150.png\";}s:8:\"desk-top\";s:1:\"1\";s:11:\"desk-slogan\";s:100:\"<span style=\"font-size:14px\">FREE PHONE: 0800 043 8248 EMAIL: info@utilitywatch.co.uk</span>\";s:11:\"desk-search\";s:1:\"0\";s:7:\"desk-ls\";s:1:\"0\";s:7:\"desk-lw\";a:2:{s:5:\"width\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:7:\"desk-sl\";s:1:\"0\";s:13:\"desk-sl-align\";s:5:\"right\";s:8:\"desk-ind\";s:1:\"1\";s:14:\"desk-shop-cart\";s:1:\"0\";s:11:\"desk-height\";s:3:\"120\";s:14:\"desk-top-color\";s:7:\"#ffffff\";s:13:\"desk-top-back\";a:3:{s:5:\"color\";s:7:\"#7f7f7f\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(127,127,127,1)\";}s:13:\"desk-sl-color\";s:7:\"#999999\";s:13:\"desk-ls-hover\";s:7:\"#777777\";s:18:\"desk-ls-back-hover\";s:7:\"#f9f9f9\";s:9:\"desk-back\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:3:\"1.0\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:11:\"desk-menu-p\";s:2:\"20\";s:11:\"desk-menu-m\";s:1:\"5\";s:15:\"desk-menu-color\";a:2:{s:7:\"regular\";s:7:\"#7f7f7f\";s:5:\"hover\";s:7:\"#0086d5\";}s:16:\"desk-menu-border\";s:1:\"0\";s:22:\"desk-menu-border-color\";a:3:{s:5:\"color\";s:7:\"#0086d5\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:17:\"rgba(0,134,213,1)\";}s:16:\"desk-menu-effect\";s:4:\"none\";s:22:\"desk-menu-effect-color\";s:7:\"#0086d5\";s:14:\"desk-menu-typo\";a:8:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:10:\"capitalize\";s:9:\"font-size\";s:4:\"16px\";}s:18:\"desk-submenu-color\";a:2:{s:7:\"regular\";s:7:\"#d4d5d7\";s:5:\"hover\";s:7:\"#ffffff\";}s:17:\"desk-submenu-back\";a:2:{s:7:\"regular\";s:7:\"#3c414a\";s:5:\"hover\";s:7:\"#40454f\";}s:25:\"desk-submenu-border-color\";s:7:\"#474d58\";s:29:\"desk-submenu-border-top-color\";s:7:\"#0086d5\";s:17:\"desk-submenu-typo\";a:9:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:9:\"uppercase\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"22px\";}s:19:\"desk-submenu-effect\";s:5:\"ghost\";s:23:\"desk-megamenu-top-color\";s:7:\"#ffffff\";s:22:\"desk-megamenu-top-typo\";a:3:{s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:14:\"text-transform\";s:9:\"uppercase\";}s:22:\"desk-megamenu-sub-typo\";a:3:{s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:14:\"text-transform\";s:9:\"uppercase\";}s:8:\"mob-logo\";a:5:{s:3:\"url\";s:65:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo-mobile.png\";s:2:\"id\";s:4:\"1644\";s:6:\"height\";s:2:\"43\";s:5:\"width\";s:3:\"160\";s:9:\"thumbnail\";s:72:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo-mobile-150x43.png\";}s:15:\"mob-logo-retina\";a:5:{s:3:\"url\";s:67:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo-mobile@2.png\";s:2:\"id\";s:4:\"1643\";s:6:\"height\";s:2:\"86\";s:5:\"width\";s:3:\"320\";s:9:\"thumbnail\";s:74:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo-mobile@2-150x86.png\";}s:10:\"mob-height\";s:2:\"90\";s:10:\"mob-search\";s:1:\"0\";s:7:\"mob-int\";s:1:\"1\";s:16:\"mob-toggle-color\";s:7:\"#1e2229\";s:15:\"mob-header-back\";s:7:\"#ffffff\";s:14:\"mob-menu-color\";a:2:{s:7:\"regular\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#ffffff\";}s:13:\"mob-menu-back\";a:2:{s:7:\"regular\";s:7:\"#1e2229\";s:5:\"hover\";s:7:\"#1a1d23\";}s:13:\"mob-menu-typo\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:16:\"mob-submenu-typo\";a:9:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";}s:5:\"stuck\";s:1:\"1\";s:10:\"stuck-logo\";a:5:{s:3:\"url\";s:58:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo.png\";s:2:\"id\";s:4:\"1577\";s:6:\"height\";s:2:\"86\";s:5:\"width\";s:3:\"320\";s:9:\"thumbnail\";s:65:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo-150x86.png\";}s:17:\"stuck-logo-retina\";a:5:{s:3:\"url\";s:60:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo@2.png\";s:2:\"id\";s:4:\"1578\";s:6:\"height\";s:3:\"172\";s:5:\"width\";s:3:\"640\";s:9:\"thumbnail\";s:68:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo@2-150x150.png\";}s:9:\"stuck-top\";s:1:\"0\";s:12:\"stuck-height\";s:2:\"90\";s:15:\"stuck-top-color\";s:0:\"\";s:14:\"stuck-top-back\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:14:\"stuck-sl-color\";s:0:\"\";s:14:\"stuck-ls-hover\";s:0:\"\";s:19:\"stuck-ls-back-hover\";s:0:\"\";s:10:\"stuck-back\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:16:\"stuck-menu-color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:23:\"stuck-menu-border-color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:23:\"stuck-menu-effect-color\";s:0:\"\";s:19:\"stuck-submenu-color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:18:\"stuck-submenu-back\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:26:\"stuck-submenu-border-color\";s:0:\"\";s:30:\"stuck-submenu-border-top-color\";s:0:\"\";s:24:\"stuck-megamenu-top-color\";s:0:\"\";s:5:\"fixed\";s:1:\"0\";s:10:\"fixed-logo\";a:5:{s:3:\"url\";s:58:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo.png\";s:2:\"id\";s:4:\"1577\";s:6:\"height\";s:2:\"86\";s:5:\"width\";s:3:\"320\";s:9:\"thumbnail\";s:65:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo-150x86.png\";}s:17:\"fixed-logo-retina\";a:5:{s:3:\"url\";s:60:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo@2.png\";s:2:\"id\";s:4:\"1578\";s:6:\"height\";s:3:\"172\";s:5:\"width\";s:3:\"640\";s:9:\"thumbnail\";s:68:\"http://utilitywatch.uk/wp-content/uploads/2015/07/logo@2-150x150.png\";}s:12:\"fixed-height\";s:2:\"70\";s:10:\"fixed-back\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:16:\"fixed-menu-color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:23:\"fixed-menu-border-color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:23:\"fixed-menu-effect-color\";s:0:\"\";s:19:\"fixed-submenu-color\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:18:\"fixed-submenu-back\";a:2:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";}s:26:\"fixed-submenu-border-color\";s:0:\"\";s:30:\"fixed-submenu-border-top-color\";s:0:\"\";s:24:\"fixed-megamenu-top-color\";s:0:\"\";s:7:\"sidebar\";s:1:\"0\";s:12:\"sidebar-back\";s:7:\"#1f242b\";s:19:\"sidebar-title-color\";s:7:\"#ffffff\";s:13:\"sidebar-color\";s:7:\"#bfc0c3\";s:13:\"sidebar-hover\";s:7:\"#ffffff\";s:19:\"footer-social-links\";s:1:\"1\";s:16:\"footer-copyright\";s:37:\"Copyright © 2015 All rights reserved\";s:11:\"footer-back\";s:7:\"#1f242b\";s:13:\"footer-border\";s:7:\"#1f242b\";s:12:\"footer-color\";s:7:\"#ffffff\";s:18:\"footer-color-hover\";s:7:\"#0086d5\";s:14:\"footer-wa-back\";s:7:\"#272d36\";s:15:\"footer-wa-color\";s:7:\"#93969b\";s:16:\"footer-wat-color\";s:7:\"#ffffff\";s:10:\"footer-wah\";s:7:\"#ffffff\";s:10:\"main-color\";s:7:\"#0086d5\";s:12:\"button-style\";s:6:\"normal\";s:12:\"button-shape\";s:6:\"square\";s:12:\"button-color\";s:7:\"#ffffff\";s:11:\"button-typo\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:15:\"site-background\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:10:\"custom-css\";s:2358:\".footer .wpcf7 input {margin-bottom:15px;}\r\n.footer .wpcf7 textarea,\r\n.footer .wpcf7 input[type=\"submit\"],\r\n.footer .wpcf7 form {margin-bottom:0;}\r\n\r\n.footer .wpcf7 p {position:relative;margin-bottom:0;}\r\n.footer .wpcf7 input[type=\"submit\"] {\r\n position:absolute;\r\n bottom:0;\r\n top:auto !important;\r\n right:0;\r\n padding:3px 10px;\r\n text-transform:none;\r\n border-radius:0px;\r\n font-size:12px;\r\n box-shadow:none !important;\r\n -webkit-transform:none;\r\n -ms-transform:none;\r\n transform:none;\r\n}\r\n\r\n.footer .wpcf7 img.ajax-loader {display:none;}\r\n\r\n.footer .wpcf7 textarea {height:130px;}\r\n\r\n.extra-green-top a {\r\n color: #ffffff !important;\r\n background-color: #e95142 !important;\r\n box-shadow: 0 3px #d94a3c !important;\r\n}\r\n\r\n.extra-green-top a:hover {\r\n box-shadow: 0 1px #e95142 !important;\r\n}\r\n\r\n.extra-green {\r\n background-color: #00a388 !important;\r\n box-shadow: 0 4px #008b74 !important;\r\n}\r\n\r\n.extra-green:hover {\r\n box-shadow: 0 2px #00a388 !important;\r\n}\r\n\r\n.extra-blue {\r\n background-color: #0086d5 !important;\r\n box-shadow: 0 4px #024f7c !important;\r\n}\r\n\r\n.extra-blue:hover {\r\n box-shadow: 0 2px #0086d5 !important;\r\n}\r\n\r\n.extra-grey {\r\n background-color: #70878f !important;\r\n box-shadow: 0 4px #5c7178 !important;\r\n}\r\n\r\n.extra-grey:hover {\r\n box-shadow: 0 2px #70878f !important;\r\n}\r\n\r\n.extra-blue {\r\n background-color: #108fde !important;\r\n box-shadow: 0 4px #0e7dc1 !important;\r\n}\r\n\r\n.extra-blue:hover {\r\n box-shadow: 0 2px #0e7dc1 !important;\r\n}\r\n\r\n.extra-separator h4 {\r\n color: #999999;\r\n font-size: 20px !important;\r\n font-weight: 700 !important;\r\n}\r\n\r\n.header-top .nz-icon.square.small {\r\n width: 20px;\r\n height: 20px;\r\n font-size:10px;\r\n line-height: 16px;\r\n border-width: 2px;\r\n}\r\n\r\ndiv.wpcf7 img.ajax-loader {display:none !important;}\r\n\r\n.extra-column .col-inner {\r\n box-shadow: 0px 0px 3px rgba(0,0,0,0.1);\r\n padding-left: 10px !important;\r\n padding-right: 10px !important;\r\n padding-top: 10px !important;\r\n padding-bottom: 15px !important;\r\n}\r\n\r\n.footer {border-top: 4px solid #0086d5;}\r\n\r\n.page-id-1369 .vc_custom_heading h3 {\r\n text-transform:uppercase;\r\n font-weight:600 !important;\r\n}\r\n\r\n.desk-links{\r\n float:right;\r\n}\r\n.desk-links, .desk-links a {\r\n color: #ffffff !important;\r\n font-size:14px;\r\n}\";s:19:\"custom-css-mob-port\";s:0:\"\";s:19:\"custom-css-mob-land\";s:0:\"\";s:19:\"custom-css-tab-port\";s:0:\"\";s:19:\"custom-css-tab-land\";s:0:\"\";s:15:\"custom-css-desk\";s:0:\"\";s:9:\"main-typo\";a:7:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"22px\";s:5:\"color\";s:7:\"#777777\";}s:10:\"small-typo\";a:2:{s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";s:4:\"22px\";}s:13:\"headings-typo\";a:6:{s:11:\"font-family\";s:6:\"Oxygen\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:7:\"h1-typo\";a:2:{s:9:\"font-size\";s:4:\"24px\";s:11:\"line-height\";s:4:\"34px\";}s:7:\"h2-typo\";a:2:{s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:4:\"32px\";}s:7:\"h3-typo\";a:2:{s:9:\"font-size\";s:4:\"20px\";s:11:\"line-height\";s:4:\"30px\";}s:7:\"h4-typo\";a:2:{s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:4:\"28px\";}s:7:\"h5-typo\";a:2:{s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"26px\";}s:7:\"h6-typo\";a:2:{s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"24px\";}s:12:\"custom-fonts\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"font-custom-css\";s:0:\"\";s:19:\"tweets-consumer-key\";s:21:\"eKJa4VO8JcSoChiYiXDsg\";s:22:\"tweets-consumer-secret\";s:43:\"Q8ZQWKyAmyVTOEpi3WFclQpA9l2mDEZBBQ7NCfuiK74\";s:19:\"tweets-access-token\";s:50:\"23711136-I0jDfcWfc7PQwtdBCWaQuAzihO4aSbmNWTn5oCbQy\";s:26:\"tweets-access-token-secret\";s:45:\"o6oivG5ztQCud69SSmyQNaPuTRpjyiHVynbgOuKUgY5Dk\";s:10:\"social-rss\";s:0:\"\";s:15:\"social-facebook\";s:20:\"http://facebook.com/\";s:14:\"social-twitter\";s:19:\"http://twitter.com/\";s:17:\"social-googleplus\";s:23:\"http://plus.google.com/\";s:14:\"social-youtube\";s:19:\"http://youtube.com/\";s:12:\"social-vimeo\";s:0:\"\";s:15:\"social-linkedin\";s:0:\"\";s:16:\"social-pinterest\";s:0:\"\";s:13:\"social-flickr\";s:0:\"\";s:16:\"social-instagram\";s:21:\"http://instagram.com/\";s:12:\"social-apple\";s:0:\"\";s:15:\"social-dribbble\";s:0:\"\";s:14:\"social-android\";s:0:\"\";s:14:\"social-behance\";s:0:\"\";s:12:\"social-email\";s:0:\"\";s:10:\"slider-mob\";s:1:\"1\";s:15:\"slider-autoplay\";s:1:\"1\";s:17:\"slider-autoheight\";s:1:\"0\";s:12:\"slider-arrow\";s:1:\"0\";s:17:\"slider-autoplay-d\";s:4:\"9000\";s:14:\"slider-bullets\";s:1:\"1\";s:13:\"slider-arrows\";s:1:\"1\";s:15:\"slider-parallax\";s:1:\"0\";s:12:\"slider-fixed\";s:1:\"0\";s:13:\"slider-height\";s:3:\"560\";s:17:\"slider-transition\";s:4:\"fade\";s:17:\"slider-background\";a:7:{s:16:\"background-color\";s:7:\"#e2e3e6\";s:17:\"background-repeat\";s:8:\"repeat-x\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:13:\"center center\";s:16:\"background-image\";s:69:\"http://utilitywatch.uk/wp-content/uploads/2015/07/slider_pattern1.png\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1778\";s:6:\"height\";s:3:\"839\";s:5:\"width\";s:3:\"264\";s:9:\"thumbnail\";s:71:\"http://mobilz.ninzio.com/wp-content/uploads/slider_pattern1-150x150.png\";}}s:9:\"slider-cc\";a:3:{s:5:\"color\";s:7:\"#000000\";s:5:\"alpha\";s:3:\"0.3\";s:4:\"rgba\";s:15:\"rgba(0,0,0,0.3)\";}s:7:\"port-rh\";s:1:\"1\";s:7:\"port-hs\";s:1:\"0\";s:14:\"port-rh-height\";s:3:\"300\";s:10:\"port-title\";s:412:\"<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">CREATIVE PORTFOLIO</span></h1>\r\n<p><img class=\"aligncenter\" src=\"http://mobilz.ninzio.com/wp-content/uploads/line.png\" alt=\""img\" /></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 26px; color: #ffffff;\">Duis autem vel eum iriure dolor in hendrerit</span></p>\";s:9:\"port-back\";a:7:{s:16:\"background-color\";s:7:\"#00a388\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:56:\"http://mobilz.ninzio.com/wp-content/uploads/rich_bg6.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1802\";s:6:\"height\";s:3:\"900\";s:5:\"width\";s:4:\"1600\";s:9:\"thumbnail\";s:64:\"http://mobilz.ninzio.com/wp-content/uploads/rich_bg6-150x150.jpg\";}}s:13:\"port-parallax\";s:1:\"0\";s:9:\"port-slug\";s:9:\"portfolio\";s:13:\"port-cat-slug\";s:18:\"portfolio-category\";s:13:\"port-tag-slug\";s:13:\"portfolio-tag\";s:11:\"port-layout\";s:6:\"medium\";s:11:\"port-filter\";s:1:\"1\";s:10:\"port-width\";s:1:\"0\";s:14:\"port-animation\";s:1:\"1\";s:7:\"port-wa\";s:4:\"none\";s:15:\"port-pagination\";s:1:\"1\";s:7:\"port-ss\";s:1:\"1\";s:7:\"port-rp\";s:1:\"1\";s:8:\"port-rpn\";s:1:\"4\";s:7:\"blog-rh\";s:1:\"1\";s:7:\"blog-hs\";s:1:\"0\";s:14:\"blog-rh-height\";s:3:\"300\";s:10:\"blog-title\";s:380:\"<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">NEWS</span></h1>\r\n<p><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 26px; color: #ffffff;\">Energy Market Update</span></p>\";s:9:\"blog-back\";a:7:{s:16:\"background-color\";s:7:\"#0086d5\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:65:\"http://utilitywatch.uk/wp-content/uploads/2015/07/rich-header.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1621\";s:6:\"height\";s:3:\"900\";s:5:\"width\";s:4:\"1600\";s:9:\"thumbnail\";s:73:\"http://utilitywatch.uk/wp-content/uploads/2015/07/rich-header-150x150.jpg\";}}s:13:\"blog-parallax\";s:1:\"0\";s:11:\"blog-layout\";s:6:\"medium\";s:10:\"blog-width\";s:1:\"0\";s:14:\"blog-animation\";s:1:\"1\";s:7:\"blog-wa\";s:1:\"0\";s:8:\"blog-swa\";s:1:\"1\";s:11:\"blog-author\";s:1:\"1\";s:13:\"blog-comments\";s:1:\"0\";s:7:\"blog-ss\";s:1:\"1\";s:7:\"shop-rh\";s:1:\"1\";s:14:\"shop-rh-height\";s:3:\"300\";s:7:\"shop-hs\";s:1:\"0\";s:10:\"shop-title\";s:410:\"<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">AWESOME WOO SHOP</span></h1>\r\n<p><img class=\"aligncenter\" src=\"http://mobilz.ninzio.com/wp-content/uploads/line.png\" alt=\""img\" /></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 26px; color: #ffffff;\">Duis autem vel eum iriure dolor in hendrerit</span></p>\";s:9:\"shop-back\";a:7:{s:16:\"background-color\";s:7:\"#00a388\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:56:\"http://mobilz.ninzio.com/wp-content/uploads/rich_bg6.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1802\";s:6:\"height\";s:3:\"900\";s:5:\"width\";s:4:\"1600\";s:9:\"thumbnail\";s:64:\"http://mobilz.ninzio.com/wp-content/uploads/rich_bg6-150x150.jpg\";}}s:13:\"shop-parallax\";s:1:\"0\";s:11:\"shop-banner\";s:0:\"\";s:10:\"shop-width\";s:1:\"0\";s:14:\"shop-animation\";s:1:\"1\";s:12:\"shop-sidebar\";s:4:\"none\";s:11:\"shop-layout\";s:6:\"medium\";s:7:\"shop-rp\";s:1:\"1\";s:8:\"shop-rpn\";s:1:\"4\";s:11:\"import_link\";s:0:\"\";s:12:\"redux-backup\";s:1:\"1\";}','yes'),(211,'nz_ninzio-transients','a:5:{s:14:\"changed_values\";a:85:{s:7:\"favicon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"desk-logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"desk-logo-retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:8:\"desk-top\";s:1:\"0\";s:11:\"desk-slogan\";s:0:\"\";s:11:\"desk-search\";s:1:\"1\";s:8:\"desk-ind\";s:1:\"0\";s:11:\"desk-height\";s:2:\"90\";s:14:\"desk-top-color\";s:7:\"#999999\";s:13:\"desk-top-back\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:3:\"1.0\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:11:\"desk-menu-p\";s:2:\"15\";s:11:\"desk-menu-m\";s:1:\"3\";s:15:\"desk-menu-color\";a:2:{s:7:\"regular\";s:7:\"#333333\";s:5:\"hover\";s:7:\"#333333\";}s:22:\"desk-menu-border-color\";a:3:{s:5:\"color\";s:7:\"#eeeeee\";s:5:\"alpha\";s:3:\"1.0\";s:4:\"rgba\";s:19:\"rgba(238,238,238,1)\";}s:22:\"desk-menu-effect-color\";s:7:\"#39a847\";s:14:\"desk-menu-typo\";a:8:{s:11:\"font-family\";s:28:\"Arial, Helvetica, sans-serif\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";}s:18:\"desk-submenu-color\";a:2:{s:7:\"regular\";s:7:\"#777777\";s:5:\"hover\";s:7:\"#333333\";}s:17:\"desk-submenu-back\";a:2:{s:7:\"regular\";s:7:\"#ffffff\";s:5:\"hover\";s:7:\"#f9f9f9\";}s:25:\"desk-submenu-border-color\";s:7:\"#e0e0e0\";s:29:\"desk-submenu-border-top-color\";s:0:\"\";s:17:\"desk-submenu-typo\";a:9:{s:11:\"font-family\";s:28:\"Arial, Helvetica, sans-serif\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"22px\";}s:19:\"desk-submenu-effect\";s:4:\"fade\";s:23:\"desk-megamenu-top-color\";s:0:\"\";s:22:\"desk-megamenu-top-typo\";a:3:{s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";}s:22:\"desk-megamenu-sub-typo\";a:3:{s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:14:\"text-transform\";s:0:\"\";}s:8:\"mob-logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"mob-logo-retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"mob-int\";s:1:\"0\";s:5:\"stuck\";s:1:\"0\";s:10:\"stuck-logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"stuck-logo-retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:10:\"fixed-logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"fixed-logo-retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"fixed-height\";s:2:\"90\";s:12:\"sidebar-back\";s:0:\"\";s:19:\"sidebar-title-color\";s:0:\"\";s:13:\"sidebar-color\";s:0:\"\";s:13:\"sidebar-hover\";s:0:\"\";s:16:\"footer-copyright\";s:17:\"© Ninzio Team\";s:11:\"footer-back\";s:7:\"#2a303a\";s:13:\"footer-border\";s:7:\"#2a303a\";s:12:\"footer-color\";s:7:\"#7f8389\";s:18:\"footer-color-hover\";s:7:\"#39a847\";s:14:\"footer-wa-back\";s:7:\"#2a303a\";s:15:\"footer-wa-color\";s:7:\"#7f8389\";s:10:\"footer-wah\";s:0:\"\";s:10:\"main-color\";s:7:\"#39a847\";s:12:\"button-shape\";s:0:\"\";s:11:\"button-typo\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:10:\"custom-css\";s:0:\"\";s:9:\"main-typo\";a:7:{s:11:\"font-family\";s:28:\"Arial, Helvetica, sans-serif\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"22px\";s:5:\"color\";s:7:\"#777777\";}s:13:\"headings-typo\";a:6:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:7:\"subsets\";s:0:\"\";s:14:\"text-transform\";s:4:\"none\";s:5:\"color\";s:0:\"\";}s:19:\"tweets-consumer-key\";s:0:\"\";s:22:\"tweets-consumer-secret\";s:0:\"\";s:19:\"tweets-access-token\";s:0:\"\";s:26:\"tweets-access-token-secret\";s:0:\"\";s:15:\"social-facebook\";s:0:\"\";s:14:\"social-twitter\";s:0:\"\";s:17:\"social-googleplus\";s:0:\"\";s:14:\"social-youtube\";s:0:\"\";s:16:\"social-instagram\";s:0:\"\";s:10:\"slider-mob\";s:1:\"0\";s:15:\"slider-autoplay\";s:1:\"0\";s:17:\"slider-autoplay-d\";s:4:\"5000\";s:14:\"slider-bullets\";s:1:\"0\";s:13:\"slider-height\";s:3:\"500\";s:17:\"slider-background\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:7:\"port-rh\";s:1:\"0\";s:14:\"port-rh-height\";s:0:\"\";s:10:\"port-title\";s:16:\"<p>Portfolio</p>\";s:9:\"port-back\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:11:\"port-filter\";s:1:\"0\";s:14:\"port-animation\";s:1:\"0\";s:7:\"blog-rh\";s:1:\"0\";s:14:\"blog-rh-height\";s:0:\"\";s:10:\"blog-title\";s:11:\"<p>Blog</p>\";s:9:\"blog-back\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:14:\"blog-animation\";s:1:\"0\";s:8:\"blog-swa\";s:1:\"0\";s:13:\"blog-comments\";s:1:\"1\";s:7:\"shop-rh\";s:1:\"0\";s:14:\"shop-rh-height\";s:0:\"\";s:10:\"shop-title\";s:11:\"<p>Shop</p>\";s:9:\"shop-back\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:14:\"shop-animation\";s:1:\"0\";}s:9:\"last_save\";i:1479057693;s:13:\"last_compiler\";i:1479057693;s:11:\"last_import\";i:1479057693;s:7:\"notices\";a:1:{s:8:\"warnings\";a:0:{}}}','yes'),(216,'wpcf7','a:1:{s:7:\"version\";s:5:\"4.5.1\";}','yes'),(217,'woocommerce_default_country','GB','yes'),(218,'woocommerce_allowed_countries','all','yes'),(219,'woocommerce_specific_allowed_countries','','yes'),(220,'woocommerce_default_customer_address','geolocation','yes'),(221,'woocommerce_demo_store','no','yes'),(222,'woocommerce_demo_store_notice','This is a demo store for testing purposes — no orders shall be fulfilled.','no'),(223,'woocommerce_api_enabled','yes','yes'),(224,'woocommerce_currency','GBP','yes'),(225,'woocommerce_currency_pos','left','yes'),(226,'woocommerce_price_thousand_sep',',','yes'),(227,'woocommerce_price_decimal_sep','.','yes'),(228,'woocommerce_price_num_decimals','2','yes'),(229,'woocommerce_weight_unit','kg','yes'),(230,'woocommerce_dimension_unit','cm','yes'),(231,'woocommerce_enable_review_rating','yes','no'),(232,'woocommerce_review_rating_required','yes','no'),(233,'woocommerce_review_rating_verification_label','yes','no'),(234,'woocommerce_review_rating_verification_required','no','no'),(235,'woocommerce_shop_page_id','','yes'),(236,'woocommerce_shop_page_display','','yes'),(237,'woocommerce_category_archive_display','','yes'),(238,'woocommerce_default_catalog_orderby','menu_order','yes'),(239,'woocommerce_cart_redirect_after_add','no','yes'),(240,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(241,'woocommerce_enable_lightbox','yes','yes'),(242,'woocommerce_manage_stock','yes','yes'),(243,'woocommerce_hold_stock_minutes','60','no'),(244,'woocommerce_notify_low_stock','yes','no'),(245,'woocommerce_notify_no_stock','yes','no'),(246,'woocommerce_stock_email_recipient','bhoobal.webdesigner@gmail.com','no'),(247,'woocommerce_notify_low_stock_amount','2','no'),(248,'woocommerce_notify_no_stock_amount','0','no'),(249,'woocommerce_hide_out_of_stock_items','no','yes'),(250,'woocommerce_stock_format','','yes'),(251,'woocommerce_file_download_method','force','no'),(252,'woocommerce_downloads_require_login','no','no'),(253,'woocommerce_downloads_grant_access_after_payment','yes','no'),(254,'woocommerce_calc_taxes','no','yes'),(255,'woocommerce_prices_include_tax','no','yes'),(256,'woocommerce_tax_based_on','shipping','yes'),(257,'woocommerce_shipping_tax_class','title','yes'),(258,'woocommerce_tax_round_at_subtotal','no','yes'),(259,'woocommerce_tax_classes','Reduced Rate\nZero Rate','yes'),(260,'woocommerce_tax_display_shop','excl','yes'),(261,'woocommerce_tax_display_cart','excl','no'),(262,'woocommerce_price_display_suffix','','yes'),(263,'woocommerce_tax_total_display','itemized','no'),(264,'woocommerce_enable_coupons','yes','no'),(265,'woocommerce_enable_guest_checkout','yes','no'),(266,'woocommerce_force_ssl_checkout','no','yes'),(267,'woocommerce_unforce_ssl_checkout','no','yes'),(268,'woocommerce_cart_page_id','','yes'),(269,'woocommerce_checkout_page_id','','yes'),(270,'woocommerce_terms_page_id','','no'),(271,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(272,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(273,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(274,'woocommerce_calc_shipping','yes','yes'),(275,'woocommerce_enable_shipping_calc','yes','no'),(276,'woocommerce_shipping_cost_requires_address','no','no'),(277,'woocommerce_shipping_method_format','','no'),(278,'woocommerce_ship_to_destination','billing','no'),(279,'woocommerce_ship_to_countries','','yes'),(280,'woocommerce_specific_ship_to_countries','','yes'),(281,'woocommerce_myaccount_page_id','','yes'),(282,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(283,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(284,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(285,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(286,'woocommerce_logout_endpoint','customer-logout','yes'),(287,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(288,'woocommerce_enable_myaccount_registration','no','no'),(289,'woocommerce_enable_checkout_login_reminder','yes','no'),(290,'woocommerce_registration_generate_username','yes','no'),(291,'woocommerce_registration_generate_password','no','no'),(292,'woocommerce_email_from_name','Utility Watch','no'),(293,'woocommerce_email_from_address','bhoobal.webdesigner@gmail.com','no'),(294,'woocommerce_email_header_image','','no'),(295,'woocommerce_email_footer_text','Utility Watch - Powered by WooCommerce','no'),(296,'woocommerce_email_base_color','#557da1','no'),(297,'woocommerce_email_background_color','#f5f5f5','no'),(298,'woocommerce_email_body_background_color','#fdfdfd','no'),(299,'woocommerce_email_text_color','#505050','no'),(301,'woocommerce_db_version','2.3.11','yes'),(307,'_transient_woocommerce_cache_excluded_uris','a:0:{}','yes'),(308,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(310,'vc_version','4.12','yes'),(318,'woocommerce_meta_box_errors','a:0:{}','yes'),(374,'category_children','a:0:{}','yes'),(375,'portfolio-category_children','a:0:{}','yes'),(376,'product_cat_children','a:0:{}','yes'),(377,'product_shipping_class_children','a:0:{}','yes'),(550,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(566,'widget_twitter','a:2:{i:2;a:3:{s:5:\"title\";s:13:\"Recent Tweets\";s:10:\"twitter_id\";s:12:\"YPSolutions1\";s:5:\"count\";s:1:\"2\";}s:12:\"_multiwidget\";i:1;}','yes'),(567,'widget_nz-recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";i:3;}s:12:\"_multiwidget\";i:1;}','yes'),(835,'wpsupercache_start','1435905898','yes'),(836,'wpsupercache_count','0','yes'),(962,'finished_splitting_shared_terms','1','yes'),(963,'db_upgraded','','yes'),(967,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:29:\"bhoobal.webdesigner@gmail.com\";s:7:\"version\";s:6:\"4.6.11\";s:9:\"timestamp\";i:1523697531;}','no'),(987,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(988,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(989,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(990,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(991,'site_icon','0','yes'),(992,'medium_large_size_w','768','yes'),(993,'medium_large_size_h','0','yes'),(997,'widget_mojo_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(998,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(999,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1000,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1001,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1002,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1003,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1004,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1005,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1006,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1007,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1008,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1009,'widget_reglog','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1010,'widget_mailchimp','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1011,'widget_photos_from_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1012,'widget_recent_portfolio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1013,'widget_facebook','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1020,'woocommerce_calc_discounts_sequentially','no','no'),(1030,'woocommerce_admin_notices','a:3:{i:0;s:7:\"install\";i:1;s:6:\"update\";i:2;s:14:\"template_files\";}','yes'),(1034,'rewrite_rules','a:153:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:12:\"portfolio/?$\";s:29:\"index.php?post_type=portfolio\";s:42:\"portfolio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:37:\"portfolio/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:29:\"portfolio/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=portfolio&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"portfolio-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:52:\"portfolio-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:33:\"portfolio-category/(.+?)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:45:\"portfolio-category/(.+?)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:27:\"portfolio-category/(.+?)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:54:\"portfolio-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:49:\"portfolio-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-tag/([^/]+)/embed/?$\";s:46:\"index.php?portfolio-tag=$matches[1]&embed=true\";s:42:\"portfolio-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio-tag=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-tag/([^/]+)/?$\";s:35:\"index.php?portfolio-tag=$matches[1]\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"ninzio-slider/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"ninzio-slider/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"ninzio-slider/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"ninzio-slider/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"ninzio-slider/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"ninzio-slider/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"ninzio-slider/([^/]+)/embed/?$\";s:46:\"index.php?ninzio-slider=$matches[1]&embed=true\";s:34:\"ninzio-slider/([^/]+)/trackback/?$\";s:40:\"index.php?ninzio-slider=$matches[1]&tb=1\";s:42:\"ninzio-slider/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?ninzio-slider=$matches[1]&paged=$matches[2]\";s:49:\"ninzio-slider/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?ninzio-slider=$matches[1]&cpage=$matches[2]\";s:38:\"ninzio-slider/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?ninzio-slider=$matches[1]&page=$matches[2]\";s:30:\"ninzio-slider/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"ninzio-slider/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"ninzio-slider/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"ninzio-slider/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"ninzio-slider/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"ninzio-slider/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:50:\"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:45:\"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=156&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(1047,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1048,'woocommerce_all_except_countries','','yes'),(1049,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(1050,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(1051,'woocommerce_myaccount_orders_endpoint','orders','yes'),(1052,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(1053,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(1062,'woocommerce_version','2.6.4','yes'),(1064,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(1095,'redux_version_upgraded_from','3.5.8.10','yes'),(1105,'auth_key','#I9`bU0!W@&!}Tdn|-pb(cWO/yF48lXeT+Sgr~iO|AJZzQ 6W_kYaK1|- &&q SD','no'),(1106,'auth_salt','^2@cOh~u{c|oQJI#^5g*X`#UH7:{_^Q>0O[]y <-zG>&-qP`,kW=&852N)PYfWO]','no'),(1107,'logged_in_key','EZE[?J0i?(bJN$Nj8Td6| }UussXeB>+De*a.yl>=F8d3L[j1/]Iyyc=6F.YfbOe','no'),(1108,'logged_in_salt','i9MKO`0M)6JWVcWlO#L~kX`0CUHf~*HSU;KF&Yd7Q@$JvL% ;Q=*_zwji?V`}xIi','no'),(1109,'_transient_timeout__redux_activation_redirect','1524640674','no'),(1110,'_transient__redux_activation_redirect','1','no'),(1111,'nonce_key','K}>im-aBLKDK:/CI`s>m8[dZGW&A)PWG0WEzdxvW(PM#t_G9`f4_;d3,4Fds?+ $','no'),(1112,'nonce_salt','i1CZ7;_aOdLd_` 6HM%dZ9p*|J[0,L1[>k-E>xEO_U<Tvlq4CgtAi _S]7 }XHx7','no'),(1116,'_site_transient_timeout_browser_51874df863d9bfae72869c204369dfc7','1475756998','no'),(1117,'_site_transient_browser_51874df863d9bfae72869c204369dfc7','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"53.0.2785.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(1122,'can_compress_scripts','0','no'),(1136,'wpb_js_composer_license_activation_notified','yes','yes'),(1168,'_site_transient_timeout_browser_6a89f46f9fedac51174ac55fe62408d8','1475757400','no'),(1169,'_site_transient_browser_6a89f46f9fedac51174ac55fe62408d8','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"53.0.2785.116\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(4035,'_site_transient_timeout_browser_5e06a2d838c1690d9a4db2dbdca80389','1476336782','no'),(4036,'_site_transient_browser_5e06a2d838c1690d9a4db2dbdca80389','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"53.0.2785.143\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(4577,'_site_transient_timeout_browser_a577a018a38e33733b85874abbc32db6','1476877230','no'),(4578,'_site_transient_browser_a577a018a38e33733b85874abbc32db6','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"53.0.2785.143\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(4849,'_site_transient_timeout_browser_d1f91e7d7b92cc19cfba2458defafe8e','1479662407','no'),(4850,'_site_transient_browser_d1f91e7d7b92cc19cfba2458defafe8e','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"54.0.2840.71\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(4867,'_transient_timeout_select2-css_style_cdn_is_up','1479144071','no'),(4868,'_transient_select2-css_style_cdn_is_up','1','no'),(4869,'_transient_timeout_select2-js_script_cdn_is_up','1479144071','no'),(4870,'_transient_select2-js_script_cdn_is_up','1','no'),(4871,'_transient_timeout_ace-editor-js_script_cdn_is_up','1479144072','no'),(4872,'_transient_ace-editor-js_script_cdn_is_up','1','no'),(7168,'_site_transient_timeout_browser_5fa7ebffe219fd1d905c31e2f57542a7','1492096952','no'),(7169,'_site_transient_browser_5fa7ebffe219fd1d905c31e2f57542a7','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"57.0.2987.98\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(7182,'_site_transient_timeout_browser_754cdcc1e6416d7a56262cf3d275472d','1492097222','no'),(7183,'_site_transient_browser_754cdcc1e6416d7a56262cf3d275472d','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"56.0.2924.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(7672,'_site_transient_timeout_browser_4130101fe09bf8ad32e702450ff42e8e','1493634341','no'),(7673,'_site_transient_browser_4130101fe09bf8ad32e702450ff42e8e','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"57.0.2987.133\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(8229,'_site_transient_timeout_browser_5d9a37c6a96acca914609d0251644dda','1495720631','no'),(8230,'_site_transient_browser_5d9a37c6a96acca914609d0251644dda','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(8231,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1495159039','no'),(8232,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{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:49:\"\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:7:{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: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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 May 2017 22:39:31 +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=4.8-beta1-40736\";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:39:\"\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:48:\"WordPress 4.7.5 Security and Maintenance Release\";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:51:\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\";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:\"Tue, 16 May 2017 22:39:31 +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:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4734\";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:373:\"WordPress 4.7.5 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.4 and earlier are affected by six security issues: Insufficient redirect validation in the HTTP class. Reported by Ronni Skansing. Improper handling of post meta data values in the XML-RPC […]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pascal Birchler\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2349:\"<p>WordPress 4.7.5 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.4 and earlier are affected by six security issues:</p>\n<ol>\n<li>Insufficient redirect validation in the HTTP class. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>Improper handling of post meta data values in the XML-RPC API. Reported by <a href=\"https://hackerone.com/jazzy2fives\">Sam Thomas</a>.</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API. Reported by <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a> of the WordPress Security Team.</li>\n<li>A Cross Site Request Forgery (CRSF) vulnerability was discovered in the filesystem credentials dialog. Reported by <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer. Reported by <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> of the WordPress Security Team.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.5 contains 3 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.5\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.5&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.5</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.5.</p>\n<p>Thanks to everyone who contributed to 4.7.5.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4734\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:33:\"\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:26:\"WordPress Now on HackerOne\";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:62:\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\";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:\"Mon, 15 May 2017 16:02:19 +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:8:\"Security\";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:34:\"https://wordpress.org/news/?p=4730\";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:322:\"WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that WordPress is now officially […]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1718:\"<p>WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that <a href=\"https://hackerone.com/wordpress\">WordPress is now officially on HackerOne</a>!</p>\n<p><a href=\"https://www.hackerone.com/about\">HackerOne</a> is a platform for security researchers to securely and responsibly report vulnerabilities to our team. It provides tools that improve the quality and consistency of communication with reporters, and will reduce the time spent on responding to commonly reported issues. This frees our team to spend more time working on improving the security of WordPress.</p>\n<p>The security team has been working on this project for quite some time. Nikolay Bachiyski started the team working on it just over a year ago. We ran it as a private program while we worked out our procedures and processes, and are excited to finally make it public.</p>\n<p>With the announcement of the WordPress HackerOne program we are also introducing bug bounties. Bug bounties let us reward reporters for disclosing issues to us and helping us secure our products and infrastructure. We’ve already awarded more than $3,700 in bounties to seven different reporters! We are thankful to Automattic for paying the bounties on behalf of the WordPress project.</p>\n<p>The program and bounties cover all our projects including WordPress, BuddyPress, bbPress, GlotPress, and WP-CLI as well as all of our sites including WordPress.org, bbPress.org, WordCamp.org, BuddyPress.org, and GlotPress.org.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:33:\"\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:20:\"WordPress 4.8 Beta 1\";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:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\";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, 13 May 2017 00:15:59 +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:8:\"Releases\";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:34:\"https://wordpress.org/news/?p=4727\";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:342:\"We’re planning a smaller WP release early next month, bringing in three major enhancements: An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it’s hard to describe.) A revamp of the dashboard news widget to […]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1148:\"<p>We’re planning a smaller WP release early next month, bringing in three major enhancements:</p>\n<ul>\n<li>An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it’s hard to describe.)</li>\n<li>A revamp of the dashboard news widget to bring in nearby and upcoming events including meetups and WordCamps.</li>\n<li>Several new media widgets covering images, audio, and video, and an enhancement to the text widget to support visual editing.</li>\n</ul>\n<p>The first beta of 4.8 is now available for testing. You can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> (or just run trunk) to try the latest and greatest, and each of these areas could use a ton of testing. Our goals are to make editing posts with links more intuitive, make widgets easier for new users and more convenient for existing ones, and get many more people aware of and attending our community events.</p>\n<p><em>Four point eight is here<br />\nSmall changes with a big punch<br />\nBig ones come later</em></p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4727\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:36:\"\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:35:\"WordPress 4.7.4 Maintenance Release\";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:51:\"https://wordpress.org/news/2017/04/wordpress-4-7-4/\";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:\"Thu, 20 Apr 2017 17:54:32 +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:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4710\";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:376:\"After almost sixty million downloads of WordPress 4.7, we are pleased to announce the immediate availability of WordPress 4.7.4, a maintenance release. This release contains 47 bug fixes and enhancements, chief among them an incompatibility between the upcoming Chrome version and the visual editor, inconsistencies in media handling, and further improvements to the REST API.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pascal Birchler\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4518:\"<p>After almost sixty million downloads of WordPress 4.7, we are pleased to announce the immediate availability of WordPress 4.7.4, a maintenance release.</p>\n<p>This release contains 47 maintenance fixes and enhancements, chief among them an incompatibility between the upcoming Chrome version and the visual editor, inconsistencies in media handling, and further improvements to the REST API. For a full list of changes, consult the <a href=\"https://codex.wordpress.org/Version_4.7.4\">release notes</a> and the <a href=\"https://core.trac.wordpress.org/log/branches/4.7?rev=40487&stop_rev=40224\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.4</a> or visit <strong>Dashboard → Updates</strong> and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.4.</p>\n<p>Thanks to everyone who contributed to 4.7.4:<br />\n<a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aussieguy123/\">aussieguy123</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/boldwater/\">boldwater</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/chesio/\">chesio</a>, <a href=\"https://profiles.wordpress.org/curdin/\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidbenton/\">davidbenton</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/ghosttoast/\">Gustave F. Gerhardt</a>, <a href=\"https://profiles.wordpress.org/ig_communitysites/\">ig_communitysites</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/karinedo/\">karinedo</a>, <a href=\"https://profiles.wordpress.org/lukasbesch/\">lukasbesch</a>, <a href=\"https://profiles.wordpress.org/maguiar/\">maguiar</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mayurk/\">Mayur Keshwani</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/delawski/\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pratikshrestha/\">Pratik Shrestha</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/sagarkbhatt/\">sagarkbhatt</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati/\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/sboisvert/\">sboisvert</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford/\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4710\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:39:\"\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:48:\"WordPress 4.7.3 Security and Maintenance Release\";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:84:\"https://wordpress.org/news/2017/03/wordpress-4-7-3-security-and-maintenance-release/\";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:\"Mon, 06 Mar 2017 17:53: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:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4696\";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:396:\"WordPress 4.7.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.2 and earlier are affected by six security issues: Cross-site scripting (XSS) via media file metadata. Reported by Chris Andrè Dale, Yorick Koster, and Simon P. Briggs. Control characters can trick redirect […]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"James Nylen\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6191:\"<p>WordPress 4.7.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.2 and earlier are affected by six security issues:</p>\n<ol>\n<li>Cross-site scripting (XSS) via media file metadata. Reported by <a href=\"https://www.securesolutions.no/\">Chris Andrè Dale</a>, <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>, and Simon P. Briggs.</li>\n<li>Control characters can trick redirect URL validation. Reported by <a href=\"http://www.danielchatfield.com/\">Daniel Chatfield</a>.</li>\n<li>Unintended files can be deleted by administrators using the plugin deletion functionality. Reported by <a href=\"https://hackerone.com/triginc\">TrigInc</a> and <a href=\"http://b.360.cn/\">xuliang</a>.</li>\n<li>Cross-site scripting (XSS) via video URL in YouTube embeds. Reported by <a href=\"https://twitter.com/marcs0h\">Marc Montpas</a>.</li>\n<li>Cross-site scripting (XSS) via taxonomy term names. Reported by <a href=\"https://profiles.wordpress.org/deltamgm2\">Delta</a>.</li>\n<li>Cross-site request forgery (CSRF) in Press This leading to excessive use of server resources. Reported by Sipke Mellema.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.3 contains 39 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.3&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.3.</p>\n<p>Thanks to everyone who contributed to 4.7.3: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">blobfolio</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/drrobotnik/\">Brandon Lavigne</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/ccprog/\">ccprog</a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/davidakennedy/\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dhanendran/\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/drivingralle/\">Drivingralle</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jazbek/\">jazbek</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez/\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Mike Nelson</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/codegeass/\">Muhammet Arslan</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/reldev/\">reldev</a>, <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O’Rourke</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/triplejumper12/\">triplejumper12</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/wpfo/\">wpfo</a>.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4696\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\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:32:\"WordPress 4.7.2 Security Release\";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:68:\"https://wordpress.org/news/2017/01/wordpress-4-7-2-security-release/\";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:\"Thu, 26 Jan 2017 19:34:02 +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:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4676\";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:357:\"WordPress 4.7.2 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.1 and earlier are affected by three security issues: The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. […]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2142:\"<p>WordPress 4.7.2 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.1 and earlier are affected by three security issues:</p>\n<ol>\n<li>The user interface for assigning taxonomy terms in Press This is shown to users who do not have permissions to use it. Reported by David Herrera of <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>.</li>\n<li><code>WP_Query</code> is vulnerable to a SQL injection (SQLi) when passing unsafe data. WordPress core is not directly vulnerable to this issue, but we’ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href=\"https://github.com/mjangda\">Mo Jangda</a> (batmoo).</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered in the posts list table. Reported by <a href=\"https://iandunn.name/\">Ian Dunn</a> of the WordPress Security Team.</li>\n<li>An unauthenticated privilege escalation vulnerability was discovered in a REST API endpoint. Reported by <a href=\"https://twitter.com/MarcS0h\">Marc-Alexandre Montpas</a> of Sucuri Security. *</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.2</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.2.</p>\n<p>Thanks to everyone who contributed to 4.7.2.</p>\n<p>* Update: An additional serious vulnerability was fixed in this release and public disclosure was delayed. For more information on this vulnerability, additional mitigation steps taken, and an explanation for why disclosure was delayed, please read <a href=\"https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/\">Disclosure of Additional Security Fix in WordPress 4.7.2</a>.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4676\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\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:48:\"WordPress 4.7.1 Security and Maintenance Release\";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:84:\"https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-release/\";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:\"Wed, 11 Jan 2017 03:53:57 +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:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.7\";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:34:\"https://wordpress.org/news/?p=4650\";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:375:\"WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: […]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6520:\"<p>WordPress 4.7 has been <a href=\"https://wordpress.org/download/counter/\">downloaded over 10 million times</a> since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7 and earlier are affected by eight security issues:</p>\n<ol>\n<li>Remote code execution (RCE) in PHPMailer – <em>No specific issue appears to affect WordPress</em> or any of the major plugins we investigated but, out of an abundance of caution, we updated PHPMailer in this release. This issue was fixed in PHPMailer thanks to <a href=\"https://legalhackers.com/\">Dawid Golunski</a> and <a href=\"https://twitter.com/Zenexer\">Paul Buonopane</a>.</li>\n<li>The REST API exposed user data for all users who had authored a post of a public post type. WordPress 4.7.1 limits this to only post types which have specified that they should be shown within the REST API. Reported by <a href=\"https://poststatus.com/\">Krogsgard</a> and <a href=\"https://ithemes.com/\">Chris Jean</a>.</li>\n<li>Cross-site scripting (XSS) via the plugin name or version header on <code>update-core.php</code>. Reported by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a> of the WordPress Security Team.</li>\n<li>Cross-site request forgery (CSRF) bypass via uploading a Flash file. Reported by <a href=\"https://twitter.com/Abdulahhusam\">Abdullah Hussam</a>.</li>\n<li>Cross-site scripting (XSS) via theme name fallback. Reported by <a href=\"https://pentest.blog/\">Mehmet Ince</a>.</li>\n<li>Post via email checks <code>mail.example.com</code> if default settings aren’t changed. Reported by John Blackbourn of the WordPress Security Team.</li>\n<li>A cross-site request forgery (CSRF) was discovered in the accessibility mode of widget editing. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronnie Skansing</a>.</li>\n<li>Weak cryptographic security for multisite activation key. Reported by <a href=\"https://itsjack.cc/\">Jack</a>.</li>\n</ol>\n<p>Thank you to the reporters for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.1 fixes 62 bugs from 4.7. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.7.1\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.1</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.1.</p>\n<p>Thanks to everyone who contributed to 4.7.1: <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/chandrapatel/\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/dreamon11/\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Dorpe</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/hristo-sg/\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry/\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">monikarao</a>, <a href=\"https://profiles.wordpress.org/natereist/\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikschavan/\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nullvariable/\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/sirbrillig/\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/sanketparmar/\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sfpt/\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom/\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/timph/\">timph</a>, <a href=\"https://profiles.wordpress.org/voldemortensen/\">voldemortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4650\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:36:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 4.7 “Vaughan”\";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/2016/12/vaughan/\";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:\"Tue, 06 Dec 2016 19:27:41 +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:8:\"Releases\";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:34:\"https://wordpress.org/news/?p=4596\";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:240:\"Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah \"Sassy\" Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.\";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:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2016/12/starter-content.mp4\";s:6:\"length\";s:7:\"3736020\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\";s:6:\"length\";s:7:\"1127483\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2016/12/video-headers.mp4\";s:6:\"length\";s:7:\"1549803\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:45518:\"<p>Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah “Sassy” Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.</p>\n<div id=\"v-AHz0Ca46-1\" class=\"video-player\"><video id=\"v-AHz0Ca46-1-video\" width=\"632\" height=\"354\" poster=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg\" controls=\"true\" preload=\"metadata\" dir=\"ltr\" lang=\"en\"><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_dvd.mp4\" type=\"video/mp4; codecs="avc1.64001E, mp4a.40.2"\" /><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_fmt1.ogv\" type=\"video/ogg; codecs="theora, vorbis"\" /><div><img alt=\"Introducing WordPress 4.7\" src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg?resize=632%2C354\" data-recalc-dims=\"1\" /></div><p>Introducing WordPress 4.7</p></video></div>\n<hr />\n<h2 style=\"text-align:center\">Presenting Twenty Seventeen</h2>\n<p>A brand new default theme brings your site to life with immersive featured images and video headers.</p>\n<p><img class=\"alignnone wp-image-4618 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=632%2C356&ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=768%2C432&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1600&ssl=1 1600w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users.</p>\n<hr />\n<h2 style=\"text-align:center\">Your Site, Your Way</h2>\n<p>WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow.</p>\n<h3>Theme Starter Content</h3>\n<div style=\"width: 632px;\" class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<video class=\"wp-video-shortcode\" id=\"video-4596-1\" width=\"632\" height=\"346\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/starter-content.mp4?_=1\" /><a href=\"https://wordpress.org/news/files/2016/12/starter-content.mp4\">https://wordpress.org/news/files/2016/12/starter-content.mp4</a></video></div>\n<p>To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry – nothing new will appear on the live site until you’re ready to save and publish your initial theme setup.</p>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Edit Shortcuts</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-2\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Edit-Shortcuts.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4?_=2\" /><a href=\"https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4\">https://wordpress.org/news/files/2016/12/edit-shortcuts.mp4</a></video></div>\n<p>Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Video Headers</h3>\n<div style=\"width: 300px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-4596-3\" width=\"300\" height=\"173\" poster=\"https://wordpress.org/news/files/2016/12/4.7-—-Header-Video.jpg\" loop=\"1\" autoplay=\"1\" preload=\"metadata\" controls=\"controls\"><source type=\"video/mp4\" src=\"https://wordpress.org/news/files/2016/12/video-headers.mp4?_=3\" /><a href=\"https://wordpress.org/news/files/2016/12/video-headers.mp4\">https://wordpress.org/news/files/2016/12/video-headers.mp4</a></video></div>\n<p>Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use.</p>\n</div>\n<div style=\"clear: both\"></div>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Smoother Menu Building</h3>\n<p><img class=\"wp-image-4606 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?w=760&ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Custom CSS</h3>\n<p><img class=\"wp-image-4607 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?w=760&ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>PDF Thumbnail Previews</h3>\n<p><img class=\"wp-image-4609 size-medium alignright\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?w=760&ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Dashboard in your language</h3>\n<p><img class=\"wp-image-4608 size-medium alignright\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?w=760&ssl=1 760w\" sizes=\"(max-width: 300px) 100vw, 300px\" data-recalc-dims=\"1\" /></p>\n<p>Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles.</p>\n</div>\n<div style=\"clear: both\"></div>\n<hr />\n<h2 style=\"text-align:center\">Introducing REST API Content Endpoints</h2>\n<p>WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings.</p>\n<p><img class=\"size-large wp-image-4600 alignnone\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=632%2C205&ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=1024%2C332&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=300%2C97&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=768%2C249&ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1264&ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1896&ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? <a href=\"https://developer.wordpress.org/rest-api/reference/\">Check out the REST API reference.</a></p>\n<hr />\n<h2 style=\"text-align:center\">Even More Developer Happiness <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f60a.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></h2>\n<h3><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post Type Templates</a></h3>\n<p>By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy.</p>\n<h3>More Theme API Goodies</h3>\n<p>WordPress 4.7 includes <a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">new functions, hooks, and behavior</a> for theme developers.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\">Custom Bulk Actions</a></h3>\n<p>List tables, now with more than bulk edit and delete.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\"><code>WP_Hook</code></a></h3>\n<p>The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way.</p>\n<h3>Settings Registration API</h3>\n<p>register_setting() <a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\">has been enhanced</a> to include type, description, and REST API visibility.</p>\n<h3><a href=\"https://make.wordpress.org/core/2016/10/12/customize-changesets-technical-design-decisions/\">Customize Changesets</a></h3>\n<p>Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible.</p>\n<hr />\n<h2 style=\"text-align:center\">The Squad</h2>\n<p>This release was led by <a href=\"https://helen.blog\">Helen Hou-Sandí</a>, backed up by <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a> and <a href=\"http://aaron.jorb.in/\">Aaron Jorbin</a> as Release Deputies, and with the help of these fine individuals. There are 482 contributors with props in this release—the most ever—with 205 of them contributing for the first time. Pull up some sassy Sarah Vaughan on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/wraithkenny\">[Inactive]</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Björklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frankiet\">Francesco Taurino</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran Šerić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt Jaworski</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">mbelchev</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">monikarao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kekäläinen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/quasel\">quasel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Araújo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/soean\">Sören Wrede</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n<p> <br />\nSpecial thanks go to <a href=\"https://ramiabraham.com/\">Rami Abraham</a> for producing the release video and the many fine haiku we saw in the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">beta</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\">RC</a> announcement posts.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.7. Their efforts bring WordPress 4.7 fully translated to 52 languages at release time with more on the way. Additionally, the WordPress 4.7 release video has been captioned into 44 languages.</p>\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>. Thanks for choosing WordPress – we hope you enjoy!</p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4596\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:33:\"\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:17:\"Moving Toward SSL\";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:53:\"https://wordpress.org/news/2016/12/moving-toward-ssl/\";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:\"Thu, 01 Dec 2016 17:20:29 +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:11:\"Development\";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:34:\"https://wordpress.org/news/?p=4588\";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:327:\"We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle […]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1627:\"<p>We’re at a turning point: 2017 is going to be the year that we’re going to see features in WordPress which require hosts to have HTTPS available. Just as JavaScript is a near necessity for smoother user experiences and more modern PHP versions are critical for performance, SSL just makes sense as the next hurdle our users are going to face.</p>\n<p>SSL basically means the link between your browser and the server is encrypted. SSL used to be difficult to implement, and often expensive or slow. Modern browsers, and the incredible success of projects like <a href=\"https://letsencrypt.org/\">Let’s Encrypt</a> have made getting a certificate to secure your site fast, free, and something we think every host should support by default, especially in a post-Snowden era. Google also weighs <a href=\"https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html\">SSL as a search engine ranking factor</a> and will begin <a href=\"http://motherboard.vice.com/read/google-will-soon-shame-all-websites-that-are-unencrypted-chrome-https\">flagging unencrypted sites in Chrome</a>.</p>\n<p>First, early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts. Later we will begin to assess which features, such as API authentication, would benefit the most from SSL and make them only enabled when SSL is there.</p>\n<p>Separately, I also think the performance improvements in PHP7 are particularly impressive, and major kudos to everyone who worked on that. We will consider whether hosts use PHP7 by default for new accounts next year as well.</p>\n<p> </p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4588\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:33:\"\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:31:\"WordPress 4.7 Release Candidate\";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:67:\"https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\";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:\"Thu, 24 Nov 2016 04:26:23 +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:8:\"Releases\";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:34:\"https://wordpress.org/news/?p=4579\";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:328:\"The release candidate for WordPress 4.7 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, […]\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Helen Hou-Sandi\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4331:\"<p>The release candidate for WordPress 4.7 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.7 on <strong>Tuesday, December 6</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.7-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a <a href=\"http://2017.wordpress.net/\">new default theme</a>, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39353&stop_rev=39263&limit=200&verbose=on&sfp_email=&sfph_mail=\">quite a few refinements</a> since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.</p>\n<p>Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what’s new in version 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Think you’ve found a bug?</strong> Please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta support forum</a>. If any known issues come up, you’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.7 and update your plugin’s <em>Tested up to</em> version in the readme to 4.7. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release – we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a> And if you haven’t yet done so, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and send it on to your friends.</p>\n<p>Happy testing! And now for another <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a> haiku break.</p>\n<p><em>Select your language</em><br />\n<em>Then let your users choose theirs</em><br />\n<em><code>get_user_locale()</code></em></p>\n<p><em>Theme authors rejoice</em><br />\n<em>Any option may employ</em><br />\n<em>Selective refresh</em></p>\n<p><em>Custom header video</em><br />\n<em>Make sure to <code>add_theme_support</code></em><br />\n<em>Bling above the fold</em></p>\n<p><em>A new template dawns</em><br />\n<em>A hierarchy member</em><br />\n<em>Post-type templates live</em></p>\n<p><em>PDF updates</em><br />\n<em>Pack a parade of polish</em><br />\n<em>Prettier previews</em></p>\n<p><em>Template Post Type: New</em><br />\n<em>Template Post Type: And Useful</em><br />\n<em>Template Post Type: Thing</em></p>\n<p><em>Let lists live lively</em><br />\n<em>Laud <code>wp_list_sort()</code></em><br />\n<em>Less laconic lists</em></p>\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4579\";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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";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:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 18 May 2017 13:57:19 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 16 May 2017 22:39:31 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20130911040210\";}','no'),(8233,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1495159040','no'),(8234,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1495115840','no'),(8235,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1495159041','no'),(8236,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{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:53:\"WPTavern: Atom Editor Adds Git and GitHub Integration\";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:29:\"https://wptavern.com/?p=70245\";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:64:\"https://wptavern.com/atom-editor-adds-git-and-github-integration\";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:3355:\"<p>GitHub <a href=\"https://github.com/blog/1831-atom-free-and-open-source-for-everyone\" target=\"_blank\">open sourced its JavaScript-powered Atom editor</a> in 2014 with extensibility designed to be its single-most important feature. Over the past three years, a thriving ecosystem of more than 6,000 <a href=\"https://atom.io/packages\" target=\"_blank\">packages to extend the editor</a> has grown out of Atom’s open source community. GitHub estimates Atom now has 2.1 million active users.</p>\n<p>This week Atom added a major missing piece for developers who rely on GitHub as an indispensable part of their workflows. A <a href=\"https://github.atom.io/\" target=\"_blank\">new core package adds Git and GitHub integration</a> to the editor with a dock item and status bar widgets. The first iteration’s UI gives Atom users the ability to stage changes, create commits, create and switch branches, and resolve merge conflicts. Users can also see pull requests associated with the current branch in the sidebar, as well as a detailed view of issues or pull requests.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/github-package-git.png?ssl=1\"><img /></a></p>\n<p>The Atom editor is gaining popularity with WordPress developers. Its package directory lists more than a dozen <a href=\"https://atom.io/packages/search?q=WordPress\" target=\"_blank\">packages for WordPress development</a>, including <a href=\"https://wptavern.com/atom-editor-package-adds-autocomplete-for-wordpress-actions-and-filters\" target=\"_blank\">autocomplete for WordPress actions and filters</a> and <a href=\"https://wptavern.com/new-atom-editor-package-offers-code-snippets-for-wordpress-plugin-and-theme-developers\" target=\"_blank\">code snippets for plugin and theme developers</a>.</p>\n<p>GitHub also announced the launch of its new open source GitHub client. <a href=\"https://desktop.github.com/\" target=\"_blank\">GitHub Desktop Beta</a> has been redesigned in <a href=\"https://electron.atom.io/\" target=\"_blank\">Electron</a> to provide a simpler user experience for developers who are new to Git. Building the application on Electron also enables the product’s development team to move its existing desktop apps to a shared codebase, as outlined on the <a href=\"https://githubengineering.com/how-four-native-developers-wrote-an-electron-app/\" target=\"_blank\">GitHub Engineering blog</a>:</p>\n<blockquote><p>From the start, GitHub Desktop for macOS and Windows were two distinct products, each with their own team. We worked in two separate tech stacks using two different skill sets. To maintain parity across the codebases, we had to implement and design the same features twice. If we ever wanted to add Linux support, we’d have to do it all a third time. All this meant we had twice the work, twice the bugs, and far less time to build new features. As it turns out, building native apps for multiple platforms doesn’t scale.</p></blockquote>\n<p>Rewriting the desktop client on Electron allows GitHub to provide a unified cross-platform experience while reducing development time for the product. The beta app is open source and is <a href=\"https://desktop.github.com/\" target=\"_blank\">available for download</a> for users who want the newest desktop features before they are officially released.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 18 May 2017 03:31:43 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;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:94:\"WPTavern: WPWeekly Episode 273 – Mental Health Awareness With Bridget Willard and Ed Finkler\";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:58:\"https://wptavern.com?p=70259&preview=true&preview_id=70259\";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:101:\"https://wptavern.com/wpweekly-episode-273-mental-health-awareness-with-bridget-willard-and-ed-finkler\";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:2943:\"<p>The month of May is <a href=\"http://www.mentalhealthamerica.net/may\">Mental Health Awareness</a> month. On this episode, Ed Finkler, founder of <a href=\"https://osmihelp.org/\">Open Sourcing Mental Illness</a> (OSMI), and Bridget Willard, Marketing Manager for <a href=\"https://wordimpress.com/\">WordImpress</a>, join me to raise awareness of mental health.</p>\n<p>We start the show by discussing what mental health is and what it means to feel normal. We talk about the stigma associated with opening up to others and why it’s often seen as a brave action. Finkler shares tips on how people can help those battling mental illness. He also explains what not to do.</p>\n<p>The following resources were mentioned during the show:</p>\n<ul>\n<li><a href=\"http://wphugs.org/\">WPHugs</a> – A safe space for people to openly discuss mental health issues.</li>\n<li><a href=\"https://mental-health-support.herokuapp.com/\">Mental Health Support</a> – A public group on Slack that provides mental health support.</li>\n<li><a href=\"https://osmihelp.org/resources\">OSMI Handbooks</a> – Handbooks for employees, employers, and guidelines for good mental health in the workplace.</li>\n<li><a href=\"https://www.mentalhealthfirstaid.org/cs/\">Mental Health First Aid</a> – A course that educates people on how to help those with a mental health or substance-use crisis.</li>\n</ul>\n<p>Finkler announced on the show that he is stepping down from his role at Graph Story and will be working on the OSMI project full-time. OSMI is <a href=\"https://osmihelp.org/2017-campaign\">raising funds</a> for 2017. Funds will be used for traveling to speak at events, create and update helpful resources, and a salary. If you’re able, please consider donating. OSMI is a US 501(c)(3) organization, and all donations are tax-deductible.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wordpress-4-7-5-patches-six-security-issues-immediate-update-recommended\">WordPress 4.7.5 Patches Six Security Issues, Immediate Update Recommended</a><br />\n<a href=\"https://wptavern.com/what-to-expect-in-wordpress-4-8\">What to Expect in WordPress 4.8</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 24th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #273:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 18 May 2017 00:53:16 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;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:88:\"WPTavern: WordCamp Europe Contributor Day to Host 13 Workshops, Event is Nearly Sold Out\";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:29:\"https://wptavern.com/?p=70224\";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/wordcamp-europe-contributor-day-to-host-13-workshops-event-is-nearly-sold-out\";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:1707:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://2017.europe.wordcamp.org/2017/05/17/everything-you-need-to-know-about-wceu-contributor-day/#more-5991\" target=\"_blank\">WordCamp Europe’s Contributor Day</a> is set for Thursday, June 15th, 2017, the day before the conference days begin. Attendees will be split into contributor teams and this year the event will also feature four talks and 13 workshops. The selected team leaders are long-time WordPress core and community contributors from around the world.</p>\n<p>Scheduled talks include topics aimed at contributors, such as “How the WordPress Security Team Works” and “Why Your [Translation] Community Needs a Glossary.” The workshops are more educational sessions that kickstart contribution, i.e. setting up a development environment for contributing to WordPress, internationalization for developers, JavaScript in core, and learning how to contribute code to the Meta Team, among other topics.</p>\n<p>The Contributor Day <a href=\"https://2017.europe.wordcamp.org/schedule/contributor-day-schedule/\" target=\"_blank\">schedule</a> was published to the event’s website today with room locations identified for teams, talks, and workshops.</p>\n<p>Capacity for the event is 500 attendees, which is larger than many WordCamps. As of this morning, there were fewer than 50 spots remaining. <a href=\"http://wceurope.polldaddy.com/s/sign-up-for-contributor-day-2017\" target=\"_blank\">Contributor Day signup</a> is separate from the WordCamp registration and is still open for the last few available tickets.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Wed, 17 May 2017 19:30:35 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;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:60:\"HeroPress: Community saved my life: Falling down, lifted up.\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=1842\";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:65:\"https://heropress.com/essays/community-saved-life-falling-lifted/\";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:9287:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/05/051717-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: It is through helping others that I am helping myself every day... #mentalhealth\" /><blockquote><p>“Never doubt that a small group of thoughtful, committed, citizens can change the world. Indeed, it is the only thing that ever has.”<br />\n― Margaret Mead</p></blockquote>\n<p>This essay took me a long time to end; mainly because, in many ways, I am still writing it. My first essay for HeroPress was two years ago (“<a href=\"https://heropress.com/essays/w-w-waiting-for-the-right-circumstances/\">W-W-Waiting For The Right Circumstances</a>“), June 2015; an essay written at a time in which I was at my Zenith.</p>\n<p>It was a story written by a young man full of hope, dreams, and accomplishment. A young man peaking in his career and his relationships. A young man who still had a long way to learn in this world; especially about himself and what true community meant. This essay, the one you are reading now, is from rock bottom.</p>\n<h3>The Great Depression</h3>\n<p>People, mostly those who do not have depression, think of depression as a severe sadness; it is not sadness. Sadness can be felt. Depression is more of a vacuous endurance of life; each moment folding aimlessly into the next. Sadness would be a relief in comparison.</p>\n<p>I have had depression many times in my life prior to the one I am about to tell you about; previously I had managed to endure through it, this time was different and this time I needed help. I, unsurprisingly to me, was diagnosed with (aptly named) ‘manic depression’. This explained my amazing highs, my deepest lows, and the plateau of the in-between.</p>\n<p>What did this mean for me? I didn’t know, I was still me. Nothing about me had changed other than learning a new label that I had to bare. I was still me. I was still me.</p>\n<p>According to the World Health Organization (WHO) in <a href=\"http://www.who.int/whr/2001/media_centre/press_release/en/\">2001</a>:</p>\n<blockquote><p>“One in four people in the world will be affected by mental or neurological disorders at some point in their lives.”</p></blockquote>\n<p>I was one in that four people; a large number, yet I felt alone.</p>\n<p>Alone because there is so much stigma attached to having a Mental Wellness issue that we barely talk about it, its almost taboo. We are a society more comfortable with having a broken leg than to tell our bosses, colleagues, friends or peers that we are depressed.</p>\n<p>That needed to change.</p>\n<h3>WordCamp Closet</h3>\n<p>At WordCamp Cape Town 2016, I stood in-front of an audience and came out of the figurative closet with my presentation of: “<a href=\"https://wordpress.tv/2016/11/24/leo-gopal-the-wordpress-community-mental-wellness-and-you/\">The WordPress Community, Mental Wellness, and You</a>”</p>\n<p>After that talk, many people came out of their own closets to me and thanked me for being so ‘brave’ as to talk so openly about a subject so few understood much about. My hope with that talk, with this essay, that an act of openness like this is no longer seen as ‘being brave’ but being normal, being understood. It was the ‘bravery’ of people like Cory Miller and Rich Robinkoff that allowed me to be brave in telling my own story.</p>\n<p>That was September 2016. In February 2017, I reached my darkest hour when I attempted to take my own life.</p>\n<h3>A New Beginning</h3>\n<p>In many ways, this is my WordPress re-origin story.</p>\n<p>After surviving my own actions, it was the WordPress community that were there to support me. It was my friends I had made in the local WordPress community, and when I opened up about my experience, the international WordPress Community came to help me.</p>\n<blockquote><p>There are so many people in the WordPress Community who I owe a huge debt to. People who genuinely reached out and cared about the response I gave when asked, ‘How are you?’.</p></blockquote>\n<p>It was in this moment of realizing I had the WordPress Community that I began to live again; the WordPress community saved my life. It was in this moment that I realized that if I knew I could have this support sooner, I may not have gone as far as I had gone. It was in this moment that I vowed to be blatantly honest with the world so that no one else may ever feel that they are that alone again.</p>\n<p>Is there any other software specific community that can make the claim of being so caring as to have helped someone stay alive? I do not know the answer to that question, but I do know that WordPress and its community has definitely done that for me.</p>\n<h3>WPHugs: Giving back to community</h3>\n<p>I openly wrote about my experiences.</p>\n<p>I even mention it straight up in Job Interviews, and I do believe that this, knowingly or unknowingly, has costed me various positions I could have easily received had there not been any mention of a mental illness and my recent events – and its understandable.</p>\n<p>How would you react when you ask a candidate about why he left his previous employment, and he answers: “I am manic depressive, I went a few months off my meds, I did not understand it enough at the time, and then tried to take my own life and later moved cities to be closer to family and friends”? When all I could have said was I moved cities to be closer to family, with a smile that couldn’t be argued with.</p>\n<p>I started an initiative called <a href=\"https://wphugs.org/\">WPHugs</a>, a passion project hugely inspired by HeroPress, which is designed to be a safe space in the WordPress Community where topics of Mental Health, and general well-being and life balance can be freely and non-judgmentally spoken about, with care and compassion offered by all. This reminds me, we should have a creed, all great communities have one.</p>\n<p>It is simply fortunate timing that <a href=\"https://wphugs.org/\">WPHugs.org</a> and this essay are launched and written in Mental Health Awareness Month. Some may even go as far as calling it serendipity; a word I have tattooed in Braille on my wrists.</p>\n<p>It is through helping others that I am helping myself, everyday…</p>\n<h3>In conclusion-ipsum</h3>\n<p>My story is not unique – it is simply one that is told.</p>\n<p>In speaking out about Mental Wellness and the huge role our community plays in its stigma, I hope that someone, somewhere, also gets ‘brave enough’ to speak up and reach out.</p>\n<p>I have no conclusion to this essay… I continue, everyday, to write it; and I hope you do too.</p>\n<p>The WordPress community doesn’t just power a percentage of the internet; It empowers too.</p>\n<p>P.S. Talking about it will only become easier by talking about it, so please, continue the conversation; lets more of us talk and keep talking.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Community saved my life: Falling down, lifted up.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Community%20saved%20my%20life%3A%20Falling%20down%2C%20lifted%20up.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fcommunity-saved-life-falling-lifted%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Community saved my life: Falling down, lifted up.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fcommunity-saved-life-falling-lifted%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fcommunity-saved-life-falling-lifted%2F&title=Community+saved+my+life%3A+Falling+down%2C+lifted+up.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Community saved my life: Falling down, lifted up.\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/community-saved-life-falling-lifted/&media=https://heropress.com/wp-content/uploads/2017/05/051717-150x150.jpg&description=Community saved my life: Falling down, lifted up.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Community saved my life: Falling down, lifted up.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/community-saved-life-falling-lifted/\" title=\"Community saved my life: Falling down, lifted up.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/community-saved-life-falling-lifted/\">Community saved my life: Falling down, lifted up.</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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:\"Wed, 17 May 2017 12:00:48 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Leo Gopal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;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:16:\"Matt: New TV Ads\";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:22:\"https://ma.tt/?p=47336\";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:33:\"https://ma.tt/2017/05/new-tv-ads/\";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:416:\"<p></p>\n<p>As I mentioned in the <a href=\"https://ma.tt/2016/12/state-of-the-word-2016/\">State of the Word</a> this is the year we’re ramping up marketing. There is lots to learn and much to follow, but we have our first TV ads up in six markets to test. Each shares a story of a business in Detroit, and I actually got the chance to visit one of the businesses earlier today.</p>\n<p></p>\n<p></p>\n<p> </p>\";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:\"Wed, 17 May 2017 05:08:27 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;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:83:\"WPTavern: WordPress 4.7.5 Patches Six Security Issues, Immediate Update Recommended\";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:29:\"https://wptavern.com/?p=70198\";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:93:\"https://wptavern.com/wordpress-4-7-5-patches-six-security-issues-immediate-update-recommended\";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:2543:\"<p><a href=\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\" target=\"_blank\">WordPress 4.7.5</a> was released today with fixes for six security issues. If you manage multiple sites, you may have seen automatic update notices landing in your inbox this evening. The security release is for all previous versions and WordPress is recommending an immediate update. Sites running versions older than 3.7 will require a manual update.</p>\n<p>The vulnerabilities patched in 4.7.5 were responsibly disclosed to the WordPress security team by five different parties credited in the release post. These include the following:</p>\n<ul>\n<li>Insufficient redirect validation in the HTTP class</li>\n<li>Improper handling of post meta data values in the XML-RPC API</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API</li>\n<li>A Cross Site Request Forgery (CRSF) vulnerability was discovered in the filesystem credentials dialog</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer</li>\n</ul>\n<p>Several of the vulnerability reports came from security researchers on HackerOne. In a recent <a href=\"https://www.hackerone.com/blog/Q-and-A-with-Wordpress-security-team-lead-aaron-campbell\" target=\"_blank\">interview with HackerOne</a>, WordPress Security Team Lead Aaron Campbell said the team has had a spike in reports since <a href=\"https://wptavern.com/wordpress-is-now-on-hackerone-launches-bug-bounties\" target=\"_blank\">publicly launching its bug bounty program</a>.</p>\n<p>“The increase in volume of reports was drastic as expected, but also our team really hadn’t had to process any invalid reports before moving the program public,” Campbell said. “The dynamics of the Hacker Reputation system really came into play for the first time, and it was really interesting to figure out how to best work within it.”</p>\n<p>If WordPress continues to sustain the same volume of reports on its new HackerOne account, users may see more frequent security releases in the future.</p>\n<p>WordPress 4.7.5 also includes a handful of maintenance fixes. Check out the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.5&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\" target=\"_blank\">full list of changes</a> for more details.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Wed, 17 May 2017 01:44:14 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;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:41:\"WPTavern: What to Expect in WordPress 4.8\";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:29:\"https://wptavern.com/?p=70132\";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:52:\"https://wptavern.com/what-to-expect-in-wordpress-4-8\";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:4951:\"<p>WordPress 4.8 Beta 1 <a href=\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\">is available for testing</a> and has a couple of features that will likely have a big impact.</p>\n<h2>New Image, Video, and Audio Widgets</h2>\n<p>WordPress 4.8 has three new core widgets and adds a visual editor to the Text widget. Adding video, audio, or images to text widgets typically involves using custom HTML.</p>\n<p>Each of the new widgets in 4.8 takes advantage of the WordPress Media Library. Because the widgets use the media modal, users can insert content from a URL. This is particularly convenient for the Video widget as most videos are not stored locally.</p>\n\n<a href=\"https://wptavern.com/what-to-expect-in-wordpress-4-8/corevideowidget\"><img width=\"341\" height=\"454\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/CoreVideoWidget.png?fit=341%2C454&ssl=1\" class=\"attachment-full size-full\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/what-to-expect-in-wordpress-4-8/coreaudiowidget\"><img width=\"341\" height=\"251\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/CoreAudioWidget.png?fit=341%2C251&ssl=1\" class=\"attachment-full size-full\" alt=\"\" /></a>\n<a href=\"https://wptavern.com/what-to-expect-in-wordpress-4-8/coreimagewidget\"><img width=\"341\" height=\"360\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/CoreImageWidget.png?fit=341%2C360&ssl=1\" class=\"attachment-full size-full\" alt=\"Core Image Widget\" /></a>\n\n<p>Here is what the core widgets look like on Twenty Seventeen after they’ve been configured.</p>\n<img />Core Widgets on The Frontend\n<p>The text widget now has a visual editor with a couple of basic formatting tools available. The visual editor supports Keyboard shortcuts. However, it does not support <a href=\"https://codex.wordpress.org/Embeds\">oEmbed</a>. Like the post editor, you can switch between Visual and HTML mode. The HTML version of the editor benefits from the upgrade as it provides users with the same formatting tools that are available in the visual editor.</p>\n<img />Text Widget HTML Mode\n<h2>Link Boundaries</h2>\n<p>Link boundaries are <a href=\"https://github.com/WordPress/gutenberg/issues/89\">a byproduct</a> of the ongoing work to <a href=\"https://wptavern.com/wordpress-core-editor-team-publishes-ui-prototype-for-gutenberg-an-experimental-block-based-editor\">Gutenberg</a>, WordPress’ new block-based editor. If you’ve ever written links in the visual editor, you may have noticed that sometimes it’s difficult to move the cursor outside of the link element.</p>\n<p>In WordPress 4.8, link boundaries provide a visual cue of when the cursor is inside a link element. <a href=\"https://cloudup.com/c49BKKIE7SW\">This video</a> recorded by Matias Ventura provides a visual demonstration of how link boundaries work.</p>\n<img />Inside Link Boundary\n<img />Outside Link Boundary\n<p>During testing it felt like this was more of a bug fix to how the visual editor behaves rather than a new feature.</p>\n<h2>Dashboard News Widget Includes Upcoming Local WordPress Meetups</h2>\n<p>There are <a href=\"https://www.meetup.com/topics/wordpress/\">1,180 WordPress meetups</a> registered on Meetup.com and <a href=\"https://central.wordcamp.org/\">close to 100 WordCamps</a> scheduled for this year. In an effort to remind users of the WordPress communities that exist around them world-wide, the WordPress News Dashboard widget has been modified to include Meetups and WordCamps near a user’s location.</p>\n<img />News Widget Shows Upcoming Meetups and WordCamps\n<p>The widget will try to guess your location automatically. If it’s incorrect, clicking the Pencil button opens a box where you can type in your city. The bottom of the widget includes links to the <a href=\"https://make.wordpress.org/community/meetups-landing-page\">WordPress Meetup landing page</a>, <a href=\"https://central.wordcamp.org/schedule/\">WordCamp Central Schedule</a>, and the <a href=\"https://wordpress.org/news/\">WordPress.org news blog</a>.</p>\n<h2>WordPress 4.8 Sets the Stage for Gutenberg</h2>\n<p>It should be noted that WordPress 4.8 will not include Gutenberg. It does, however, lay the foundation for Gutenberg to arrive in a future release.</p>\n<p>The easiest way to install and test WordPress 4.8 Beta 1 is to install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Beta Tester plugin</a> on a staging site. Once activated, visit Tools > Beta Testing and select Point release nightlies and then update WordPress.</p>\n<p>If you believe you’ve encountered a bug, you can report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the WordPress support forums. Please provide as much detail about the bug as possible. WordPress 4.8 is <a href=\"https://make.wordpress.org/core/4-8/\">tentatively scheduled</a> for release June 8th.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Tue, 16 May 2017 23:26:05 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;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:94:\"WPTavern: Hookr Plugin Rebrands as WP Inspect, Project to Shift to a Module-Based Architecture\";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:29:\"https://wptavern.com/?p=70093\";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:104:\"https://wptavern.com/hookr-plugin-rebrands-as-wp-inspect-project-to-shift-to-a-module-based-architecture\";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:3162:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/wp-inspect.png?ssl=1\"><img /></a></p>\n<p>A year and a half after the <a href=\"https://wptavern.com/new-free-hookr-plugin-displays-all-available-hooks-inside-wordpress\" target=\"_blank\">initial release</a> of the controversially-named Hookr plugin, its creator, Christopher Sanford, has rebranded the plugin as WP Inspect. The plugin provides a WordPress hook/API reference for developers and displays the actions and filters that fired as the page loaded. At launch Sanford was fairly committed to the Hookr brand, despite criticism, due to an oversaturated market for WordPress developer plugins. After 3,500 downloads, Sanford decided to rebrand and put the plugin in the official directory.</p>\n<p>“Based on the usage and positive feedback, I wanted to target a broader audience, which led to both the re-brand and submission to the WordPress Plugin repository,” Sanford said. “Leveraging the plugin repo, it will be much easier to coordinate/communicate updates, which is somewhat lacking today.”</p>\n<p>The 1.0.0 release of <a href=\"https://wordpress.org/plugins/wp-inspect/\" target=\"_blank\">WP Inspect</a> includes mostly bug fixes and technical debt cleanup with two major enhancements:</p>\n<ul>\n<li>WP Inspect will only be active under specific roles, with Administrators being enabled by default. (Previously it was active for everyone.)</li>\n<li>Action detail now requires no additional clicks. (Before, if users wanted to inspect an action, they would have to click the action name.)</li>\n</ul>\n<p>Sanford said WP Inspect will be migrating to a module-based architecture that will allow users to create their own tooling. He is also planning to release several commercial modules that will expand the debugging capabilities of the plugin. He said he doesn’t anticipate the type of demand or usage that would warrant a marketplace for third-party modules, but he’s open to the idea.</p>\n<p>With the plugin now rebranded and released, Sandford is using his time to create the infrastructure to offer Hookr as a SaaS product for commercial theme and plugin developers.</p>\n<p>“Depending on membership level, users can interface with HookrAPI to get additional details for debugging,” Sandford said. “Users may submit their current codebase for ‘comment coverage’ analysis, which is great for determining the quantity and quality of inline code documentation. Finally, users may submit their projects to HookrAPI for real time code parsing and documentation to be included with their commercial theme or plugin.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/hookr-api-e1494965787732.png?ssl=1\"><img /></a></p>\n<p>Sanford plans to launch a sister site to the online <a href=\"http://hookr.io/\" target=\"_blank\">Hookr.io</a> reference, under another “G-rated” name with a simplified interface, as well as an offline version of Hookr. These will lay the groundwork for the next item on the roadmap: native mobile applications with offline data.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Tue, 16 May 2017 22:54:45 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;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:58:\"Dev Blog: WordPress 4.7.5 Security and Maintenance Release\";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:34:\"https://wordpress.org/news/?p=4734\";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:51:\"https://wordpress.org/news/2017/05/wordpress-4-7-5/\";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:2304:\"<p>WordPress 4.7.5 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.7.4 and earlier are affected by six security issues:</p>\n<ol>\n<li>Insufficient redirect validation in the HTTP class. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>Improper handling of post meta data values in the XML-RPC API. Reported by <a href=\"https://hackerone.com/jazzy2fives\">Sam Thomas</a>.</li>\n<li>Lack of capability checks for post meta data in the XML-RPC API. Reported by <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a> of the WordPress Security Team.</li>\n<li>A Cross Site Request Forgery (CRSF) vulnerability was discovered in the filesystem credentials dialog. Reported by <a href=\"https://twitter.com/yorickkoster\">Yorick Koster</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered when attempting to upload very large files. Reported by <a href=\"https://dk.linkedin.com/in/ronni-skansing-36143b65\">Ronni Skansing</a>.</li>\n<li>A cross-site scripting (XSS) vulnerability was discovered related to the Customizer. Reported by <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a> of the WordPress Security Team.</li>\n</ol>\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p>In addition to the security issues above, WordPress 4.7.5 contains 3 maintenance fixes to the 4.7 release series. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.7.5\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=4.7.5&group=component&col=id&col=summary&col=component&col=status&col=owner&col=type&col=priority&col=keywords&order=priority\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.7.5</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.7.5.</p>\n<p>Thanks to everyone who contributed to 4.7.5.</p>\";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:\"Tue, 16 May 2017 22:39:31 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pascal Birchler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;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:86:\"WPTavern: U.S. District Court Denies Pre-Trial Motion to Dismiss GPL Infringement Case\";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:29:\"https://wptavern.com/?p=70100\";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:96:\"https://wptavern.com/u-s-district-court-denies-pre-trial-motion-to-dismiss-gpl-infringement-case\";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:6120:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/gavel.jpg?ssl=1\"><img /></a>photo credit: weiss_paarz_photos <a href=\"http://www.flickr.com/photos/141290938@N03/27193168442\">Gavel – Courtroom and Gavel</a> – <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">(license)</a>\n<p>The District Court for the Northern District of California has denied a motion to dismiss a complaint of breach of contract and copyright infringement claims in <a href=\"https://docs.justia.com/cases/federal/district-courts/california/candce/3:2016cv06982/305835/32\" target=\"_blank\">a case regarding the GPL</a>. The plaintiff, <a href=\"http://artifex.com/\" target=\"_blank\">Artifex Software Inc.</a>, is the creator of <a href=\"http://artifex.com/products-ghostscript-overview/\" target=\"_blank\">Ghostscript</a>, an AGPL-licensed PDF interpreter. In 2016, the company filed a lawsuit against <a href=\"http://hancom.com\" target=\"_blank\">Hancom</a>, a South Korean software company that incorporated Ghostscript into its Hangul word processing software without complying with the GPL.</p>\n<p>Ghostscript is available for free for those who use it in compliance with its AGPL license. Artifex also offers a <a href=\"http://artifex.com/licensing/\" target=\"_blank\">commercial license of Ghostscript</a> that is required if the user is including it and distributing it within an application that is not licensed under the AGPL. Richard Stallman outlined this common practice of <a href=\"https://www.fsf.org/blogs/rms/selling-exceptions\" target=\"_blank\">“selling exceptions” to the GPL</a> in 2010, saying that he has considered it acceptable since the 1990’s, because “this approach has made it possible for important programs to become free software.”</p>\n<p>According to the <a href=\"https://docs.justia.com/cases/federal/district-courts/california/candce/3:2016cv06982/305835/32\" target=\"_blank\">complaint</a>, Hancom failed to purchase a commercial license and also did not distribute the source code as required by the AGPL:</p>\n<blockquote><p>Because Defendant did not have a commercial license for Ghostscript, its use and distribution of Ghostscript constituted consent to the terms of the GNU GPL…In addition, Defendant’s website stated that it had licensed Ghostscript under the GNU GPL. Nonetheless, Defendant failed to comply with key provisions of the GNU GPL. In particular, because Defendant integrated Ghostscript into its software without revealing to the end-user that Ghostscript was part of the Hancom software, the GNU GPL required Defendant to distribute its software with the accompanying source code. Defendant did not do so and thus violated the GNU GPL, terminating Defendant’s license to use Ghostscript. Defendant’s failure to obtain a commercial license deprived Plaintiff of a licensing fee, or, alternatively, its failure to comply with the GNU GPL deprived Plaintiff of the opportunity “to further promote the advancement of interpreter technologies.”</p></blockquote>\n<p>Although Hancom is said to have removed Ghostscript from its software in August 2016, Artifex is asking for a court order for Hancom to stop the infringement and seeks compensation for damages. Artifex also requests that the court require Hancom to distribute to each licensee of Hangul and Hancom Office the complete source code for the products in accordance with the GPL.</p>\n<p>Hancom responded by filing a motion to dismiss the complaint on the grounds that Artifex had not demonstrated the existence of a contract, how it was breached, or the damages caused by a breach.</p>\n<p>An order issued by Magistrate Judge Jacqueline Scott Corley ruled that Artifex has sufficiently established the existence of a contract:</p>\n<blockquote><p>The GNU GPL, which is attached to the complaint, provides that the Ghostscript user agrees to its terms if the user does not obtain a commercial license. Plaintiff alleges that Defendant used Ghostscript, did not obtain a commercial license, and represented publicly that its use of Ghostscript was licensed under the GNL GPU. These allegations sufficiently plead the existence of a contract.</p></blockquote>\n<p>Furthermore, the ruling also recognized the damage that results from a company failing to comply with an open source license, citing the 2008 ruling on Jacobsen v. Katzer, another open source licensing dispute:</p>\n<blockquote><p>Indeed, as the Federal Circuit has recognized, there is harm which flows from a party’s failure to comply with open source licensing: “[t]he lack of money changing hands in open source licensing should not be presumed to mean that there is no economic consideration” because “[t]here are substantial benefits, including economic benefits, to the creation and distribution of copyrighted works under public licenses that range far beyond traditional license royalties.” Jacobsen v. Katzer, 535 F.3d 1373, 1379 (Fed. Cir. 2008).</p></blockquote>\n<p>Although QZ.com and other media outlets are reporting that this is a groundbreaking ruling that <a href=\"https://qz.com/981029/a-federal-court-has-ruled-that-an-open-source-license-is-an-enforceable-contract/\" target=\"_blank\">makes open source licenses an enforceable contract</a>, the case has not yet gone to trial. The court has simply denied Hancom’s arguments that because the company didn’t sign anything, the GPL does not constitute a contract. The ruling states that Artifex’s allegations regarding the dual licensing structure for its product are enough for the company to begin the process of pleading damages for its claim that Hancom breached its contract. It is not a ruling about whether or not copyleft licenses are enforceable.</p>\n<p>Artifex is now free to pursue its case of breach of contract and copyright infringement claims against Hancom, but it’s still very early and may end in a settlement. Hancom is ordered to file its answer by May 18 and both parties are scheduled to appear for an Initial Case Management Conference on June 15.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Tue, 16 May 2017 19:09:28 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;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:115:\"WPTavern: WordPress.com Experiments With Allowing Business Plan Customers to Install Third-Party Plugins and Themes\";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:29:\"https://wptavern.com/?p=70129\";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:126:\"https://wptavern.com/wordpress-com-experiments-with-allowing-business-plan-customers-to-install-third-party-plugins-and-themes\";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:2521:\"<p>One of the most important things that distinguishes self-hosted WordPress from WordPress.com is the ability to install custom themes and plugins. A <a href=\"https://en.support.wordpress.com/com-vs-org/\">recent change</a> to WordPress.com’s Business Plan removes this limitation, allowing customers to install most third-party plugins and themes.</p>\n<img />WordPress.com Comparison Chart\n<p>In a <a href=\"https://en.forums.wordpress.com/topic/plugins-817?replies=9#post-2944050\">WordPress.com support thread</a> created in February, a user asked how to install plugins on WordPress.com. Volunteers responded with the usual explanation that plugins can not be installed on WordPress.com and that they would need to use the self-hosted version of WordPress instead.</p>\n<p>A few days ago, Valedeoro, a member of WordPress.com’s support staff, <a href=\"https://en.forums.wordpress.com/topic/plugins-817?replies=9#post-2943898\">updated the thread</a> announcing that third-party plugin support had recently been opened to customers on the WordPress.com Business Plan.</p>\n<blockquote><p>Quick update on third-party plugins: We’ve recently opened the opportunity to install plugins for Business Plan users. Keep in mind that most features are covered already by the plugin included in your WordPress.com account, so it is possible that you do not need any additional plugins.</p></blockquote>\n<p>Further into the thread, a second support staff member <a href=\"https://en.forums.wordpress.com/topic/plugins-817?replies=9#post-2944050\">acknowledged</a> that WooCommerce can be installed. A third support staff member <a href=\"https://en.forums.wordpress.com/topic/plugins-817?replies=9#post-2944290\">confirmed</a> that the ability to install most third-party plugins and themes was added to the Business Plan.</p>\n<p>Details of the changes have not been published yet. “We’re still in an experimentation phase,” Automattic representative Mark Armstrong said. “It’s something we’ve rolled out to Business Plan users over the last couple weeks, and we’re looking forward to continued testing.”</p>\n<p>This move would place WordPress.com squarely in the managed WordPress hosting space. If installing custom plugins and themes becomes a permanent feature, it will be interesting to see how it affects <a href=\"https://bobwp.com/living-in-a-state-of-wordpress-confusion/\">the confusion</a> between WordPress.com and self-hosted WordPress.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Tue, 16 May 2017 08:30:07 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;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:25:\"Matt: Rules for Standards\";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:22:\"https://ma.tt/?p=47321\";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:42:\"https://ma.tt/2017/05/rules-for-standards/\";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:187:\"<p>Dave Winer has <a href=\"http://scripting.com/2017/05/09/rulesForStandardsmakers.html\">one rule that matters and a number of other good points on making standards and protocols</a>.</p>\";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:\"Mon, 15 May 2017 20:34:49 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;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:62:\"WPTavern: WordPress Is Now on HackerOne, Launches Bug Bounties\";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:29:\"https://wptavern.com/?p=66796\";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:72:\"https://wptavern.com/wordpress-is-now-on-hackerone-launches-bug-bounties\";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:2607:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/02/hackerone-logo.png?ssl=1\"><img /></a></p>\n<p>WordPress now has its own <a href=\"https://hackerone.com/wordpress\" target=\"_blank\">official HackerOne account</a> where security researchers can responsibly disclose vulnerabilities to the security team. The project’s page was previously listed under Automattic’s profile before <a href=\"https://wptavern.com/hackerone-launches-free-community-edition-for-non-commercial-open-source-projects\" target=\"_blank\">HackerOne launched its free community edition for open source projects</a>. WordPress has now <a href=\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\" target=\"_blank\">transitioned to its own account</a>, which also includes sister projects BuddyPress, bbPress, GlotPress, and WP-CLI, along with all of their respective websites.</p>\n<p>The WordPress Security team launched its HackerOne profile privately at first and had been inviting reporters to use it when they reported security issues via email. Having the profile public makes it possible for the team to work together on triaging the issues that are submitted. WordPress Security Czar Aaron Campbell said the new system will reduce the time spent on responding to commonly reported issues, allowing the team to spend its time more effectively.</p>\n<p>“We have about 40 people with access to triage reports, although, like most volunteer groups, not everyone is usually triaging at the same time,” Campbell said.</p>\n<p>The project also launched bug bounties to reward reporters for responsibly disclosing security issues and Campbell said the team has awarded more than $3,700 in bounties to seven different reporters.</p>\n<p>“So far bounties have ranged from $150 to $1,337,” Campbell said. “Anything that qualifies for a cash bounty will be $150+. We have a few swag bounties (hoodies) for really small things that will be going out soon as well (finishing getting everything set up with the swag store to do this now).”</p>\n<p>Campbell confirmed that $1,337 is not the upper limit of the bounties and that there are bugs that could qualify for larger bounties.</p>\n<p>“Bounties are calculated based on bug severity, the product or site it’s on (WordPress core being weighted more heavily than say the swag store), and also the quality of the report,” Campbell said. <a href=\"https://automattic.com/\" target=\"_blank\">Automattic</a> is sponsoring the bounty payouts on behalf of the WordPress project.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Mon, 15 May 2017 19:51:04 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;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:73:\"BuddyPress: Naturkontakt, Organising Sweden’s Largest Environmental NGO\";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:32:\"https://buddypress.org/?p=265947\";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:89:\"https://buddypress.org/2017/05/naturkontakt-organising-swedens-largest-environmental-ngo/\";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:9271:\"<div><em>This is a guest post by Alexander Berthelsen (<a href=\"https://profiles.wordpress.org/lakrisgubben\">lakrisgubben</a>) from the Swedish WordPress agency <a href=\"https://www.klandestino.se/\">Klandestino AB</a></em>.</div>\n<p>Peer reviewed by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/boonebgorges/\" rel=\"nofollow\">@boonebgorges</a></p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/front-page.png\" alt=\"Naturkontakt front page\" width=\"1675\" height=\"919\" class=\"size-full wp-image-265953\" /></p>\n<p><a href=\"https://naturkontakt.naturskyddsforeningen.se/\">Naturkontakt</span></a> (Nature contact) is the home for members of the <a href=\"http://www.naturskyddsforeningen.se/in-english\">Swedish Society for Nature Conservation</a> (SSNC), Sweden’s largest environmental NGO with over 200,000 members. This is a private site where SSNC members can read and publish internal news about the organisation, take part in forum discussions, and join or create groups to help them organise their work. Members of SSNC can create WordPress user accounts using their membership numbers from the organization’s CRM (Customer Relationship Management) software.</p>\n<h2>Background</h2>\n<p>Naturkontakt has been around since the 90’s, powered by <a href=\"https://en.wikipedia.org/wiki/FirstClass\">FirstClass</a>. By 2010, that platform had become outdated and its market share was declining. This led some members to write proposals to find a new platform. Their goal was to select a platform which would serve as a hub for all the different aspects of SSNC’s mission and vision. These include “spreading knowledge, charting environmental threats, proposing solutions, and influencing politicians and authorities, both nationally and internationally. Under democratic forms, we work regionally in 24 county branches and locally in 270 community branches.”</p>\n<h2>Moving to WordPress</h2>\n<p>In 2011, SSNC acted on their decision to set up a new web-based platform for internal communications and contacted us at <a href=\"https://www.klandestino.se/\">Klandestino</a> to work on this project. After evaluating different platforms, we chose WordPress. Some deciding factors include WordPress’ open source licensing, our experience working with the platform, and the plethora of different plugins that extended WordPress to make it suitable for online communities.</p>\n<p>The first iteration of the new Naturkontakt site was launched in 2011, powered by WordPress and <a href=\"https://wordpress.org/plugins/wp-symposium-pro/\">WP Symposium</a>. This was quite a while ago but as I recall (plus email logs), the choice stood between BuddyPress and WP Symposium. At that time, WP Symposium already had a forums component while BuddyPress lacked a solid forum integration. Remember that this was the time of the stand-alone bbPress forums which took a tortuous and unstable route to integrate to both WordPress and BuddyPress.</p>\n<h2>bbPress 2.0 to the Rescue</h2>\n<p>A year after we launched the new site, we undertook an evaluation which revealed some pain points. To name a few, WP Symposium had limited extensibility, some security issues, and major problems with performance. With those challenges in mind, we researched again into other community solutions for WordPress. By that time, the <a href=\"https://bbpress.org/blog/2011/09/bbpress-2-0-now-available/\">new bbPress 2.0 plugin was available</a> and it worked very well with BuddyPress.</p>\n<p>It was an easy decision to switch from WP Symposium to BuddyPress and bbPress. The major tasks were the arduous migration of data and continuous testing. This new set up has stood the test of time, we’re really pleased with it. The BuddyPress-bbPress combination gave us a running start with forums, groups, profiles, and messages, which are some of the required pieces of functionality needed on Naturkontakt. </p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/profile-forums-page.png\" alt=\"Profile page\" width=\"1668\" height=\"785\" class=\"size-full wp-image-265954\" /></p>\n<p>Further development of Naturkontakt 2.0 led to the introduction of multisite features to the community. Fortunately, BuddyPress works very well in a multisite environment. Each local organisation (group) of SSNC could have their own subsite to publish news.</p>\n<p>To make this work as smoothly as possible, we wrote custom plugins for the following functionalities:</p>\n<ul>\n<li>Many-to-many relationships between groups and subsites. For example, the group coordinating work on forest issues could be connected to the subsite publishing news about forest issues.</li>\n<li>File archives for groups so that members can upload and version docs, PDFs, images, etc.</li>\n<li>Sitewide search, a plugin that indexes all content from the entire multisite network into a “ghost” site to make it possible to have a centralised search throughout the entire network and blog/archive pages that lists posts from all sites.</li>\n<li>A drag and drop front page workflow where the editors of the site can search for and list articles from all sites on the network on the main site front page.</li>\n</ul>\n<p>This second version of Naturkontakt was released in late 2012. Since then, the basic functionalities have remained more or less the same. The site did get a facelift a few years ago when we focused on making the site work better on phones and tablets.</p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/blog-archive.png\" alt=\"Blog Archive\" width=\"1677\" height=\"920\" class=\"size-full wp-image-265955\" /></p>\n<h2>Going forward with PHP 7</h2>\n<p>Last year, after a month of capacity/speed problems, a new evaluation showed that some long-delayed upgrades had to be made. We started a new project to focus mainly on stability and speed improvements. We finished the project just right before this article was written.</p>\n<p>We implemented the following improvements:</p>\n<ul>\n<li><strong>Combed through the codebases</strong>. We searched for deprecated functions and places where custom functionality could be replaced with newly added functionality from BuddyPress, WordPress, and bbPress. We decreased the number of active plugins by a third because of the new features that had been rolled into the above-mentioned projects.</li>\n<li><strong>Switched over to<a href=\"https://www.elastic.co/\"> Elasticsearch</a>/<a href=\"https://www.elasticpress.io/\">ElasticPress</a></strong>. Our custom sitewide search has served its purpose well. However, since it’s only been used on this platform its development has fallen behind. And compared to new technologies such as Elasticsearch it didn’t cut the mustard. By switching to Elasticsearch we have offloaded a lot of the most expensive queries currently done by WordPress to a server/platform that’s fine-tuned for that kind of work.</li>\n<li><strong>Upgraded to PHP 7</strong>. This was the last part of the project. We’ve seen major improvements in the response time from the server, on average about 50%-70% decrease in response times! That is, of course, very important on a dynamic site such as for any community where static page caching often isn’t an option.</li>\n</ul>\n<h2>In conclusion</h2>\n<p>Our stats show the continued growth of the SSNC community, even though the competition from Facebook can be really hard. One of the major advantages of using WordPress, BuddyPress, and bbPress is that SSNC owns its own data.</p>\n<p>Of course, there are always things to improve on. When we completed the recent project to improve performance, despite limited budgets and time constraints, we were all satisfied and hopeful that the site will be around for many more years. We also expect that upcoming development work will be focused more on the user interaction elements of the site, hopefully by building upon and extending the great work that has gone into <a href=\"https://github.com/buddypress/next-template-packs\">BP Nouveau.</a> <3</p>\n<p>To end on a personal note I’d like to thank all of the wonderful contributors to BuddyPress who have welcomed me into the community and helped me along with trac tickets and patches. Beyond my satisfaction with Naturkontakt and working with SSNC (whom I share a lot of political views with), and the functionality that BuddyPress has provided for the project, the best part of having worked on this site is that I also feel that I’ve become part of a community that tries to do something constructive about the unpleasant grip that Facebook has over our personal and professional lives.</p>\n<div><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/lakrisgubben.jpeg\" alt=\"lakrisgubben\" width=\"150\" height=\"150\" class=\"alignleft size-full wp-image-265950\" /> <em><a href=\"https://profiles.wordpress.org/lakrisgubben\">Alexander Berthelsen</a> and his two colleagues are co-owners of the web development co-operative <a href=\"http://klandestino.se/\">Klandestino AB</a>. Based in the suburbs of Stockholm, Sweden they mainly do WordPress work with a focus on NGO’s and member organisations. Alexander spends most of his five-for-the-future time on making small contributions to BuddyPress.</em>\n</div>\n<p> </p>\";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:\"Mon, 15 May 2017 16:16:39 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;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:36:\"Dev Blog: WordPress Now on HackerOne\";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:34:\"https://wordpress.org/news/?p=4730\";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:62:\"https://wordpress.org/news/2017/05/wordpress-now-on-hackerone/\";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:1717:\"<p>WordPress has grown a lot over the last thirteen years – it now powers more than 28% of the top ten million sites on the web. During this growth, each team has worked hard to continually improve their tools and processes. Today, the WordPress Security Team is happy to announce that <a href=\"https://hackerone.com/wordpress\">WordPress is now officially on HackerOne</a>!</p>\n<p><a href=\"https://www.hackerone.com/about\">HackerOne</a> is a platform for security researchers to securely and responsibly report vulnerabilities to our team. It provides tools that improve the quality and consistency of communication with reporters, and will reduce the time spent on responding to commonly reported issues. This frees our team to spend more time working on improving the security of WordPress.</p>\n<p>The security team has been working on this project for quite some time. Nikolay Bachiyski started the team working on it just over a year ago. We ran it as a private program while we worked out our procedures and processes, and are excited to finally make it public.</p>\n<p>With the announcement of the WordPress HackerOne program we are also introducing bug bounties. Bug bounties let us reward reporters for disclosing issues to us and helping us secure our products and infrastructure. We’ve already awarded more than $3,700 in bounties to seven different reporters! We are thankful to Automattic for paying the bounties on behalf of the WordPress project.</p>\n<p>The program and bounties cover all our projects including WordPress, BuddyPress, bbPress, GlotPress, and WP-CLI as well as all of our sites including WordPress.org, bbPress.org, WordCamp.org, BuddyPress.org, and GlotPress.org.</p>\";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:\"Mon, 15 May 2017 16:02:19 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"HeroPress: HeroPress Geography: Western Europe\";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:29:\"https://heropress.com/?p=1834\";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:57:\"https://heropress.com/heropress-geography-western-europe/\";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:4897:\"<img width=\"960\" height=\"402\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/05/western_europe_heropress-1024x429.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Map of Western Europe with HeroPress points on it\" /><p>When HeroPress started I didn’t plan on having contributors from western Europe, any more than the U.S. As it turns out, we ended up with lots of people from both places. I’d still love to get people from Spain, Portugal, Italy, and Ireland. If you know anyone in those places with a great WordPress story, please have them <a href=\"https://heropress.com/contribute/\">fill out the contributor form</a>.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/going-back-roots/\">Going Back To My Roots</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/over-the-atlantic/\">Over The Atlantic</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/uncomfortable-doesnt-mean-walk-away/\">Uncomfortable doesn’t mean walk away</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/burning-the-midnight-oil/\">Burning the Midnight Oil</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/bumpy-journey-becoming/\">The Bumpy Journey of Becoming</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/learn-wordpress-without-doing-it-on-your-own/\">How to Learn WordPress Without Doing It on Your Own</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/living-better-life-thanks-wordpress/\">Living A Better Life Thanks To WordPress</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/sense-true-freedom/\">A Sense Of True Freedom</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/my-road-to-wordpress/\">My Road to WordPress</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/getting-a-life/\">Getting A Life</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/wordpress-is-what-we-make-of-it/\">WordPress is What We Make of It</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/coming-home/\">Coming Home</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/moving-on-from-moving-on-stage/\">Moving On From Moving On Stage</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: HeroPress Geography: Western Europe\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=HeroPress%20Geography%3A%20Western%20Europe&via=heropress&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-western-europe%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: HeroPress Geography: Western Europe\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fheropress-geography-western-europe%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-western-europe%2F&title=HeroPress+Geography%3A+Western+Europe\" rel=\"nofollow\" target=\"_blank\" title=\"Share: HeroPress Geography: Western Europe\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/heropress-geography-western-europe/&media=https://heropress.com/wp-content/uploads/2017/05/western_europe_heropress-150x150.png&description=HeroPress Geography: Western Europe\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: HeroPress Geography: Western Europe\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/heropress-geography-western-europe/\" title=\"HeroPress Geography: Western Europe\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-geography-western-europe/\">HeroPress Geography: Western Europe</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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:\"Sun, 14 May 2017 00:21:40 +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:\"\";}}}}}i:16;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:30:\"Dev Blog: WordPress 4.8 Beta 1\";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:34:\"https://wordpress.org/news/?p=4727\";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:56:\"https://wordpress.org/news/2017/05/wordpress-4-8-beta-1/\";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:1147:\"<p>We’re planning a smaller WP release early next month, bringing in three major enhancements:</p>\n<ul>\n<li>An improved visual editor experience, with a new TinyMCE that allows you to navigate more intuitively in and out of inline elements like links. (Try it out to see, it’s hard to describe.)</li>\n<li>A revamp of the dashboard news widget to bring in nearby and upcoming events including meetups and WordCamps.</li>\n<li>Several new media widgets covering images, audio, and video, and an enhancement to the text widget to support visual editing.</li>\n</ul>\n<p>The first beta of 4.8 is now available for testing. You can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">beta tester plugin</a> (or just run trunk) to try the latest and greatest, and each of these areas could use a ton of testing. Our goals are to make editing posts with links more intuitive, make widgets easier for new users and more convenient for existing ones, and get many more people aware of and attending our community events.</p>\n<p><em>Four point eight is here<br />\nSmall changes with a big punch<br />\nBig ones come later</em></p>\";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, 13 May 2017 00:15:59 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;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:92:\"WPTavern: WPWeekly Episode 272 – Interview With James Farmer, Co-Founder and CEO of Incsub\";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:58:\"https://wptavern.com?p=70009&preview=true&preview_id=70009\";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/wpweekly-episode-272-interview-with-james-farmer-co-founder-and-ceo-of-incsub\";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:4563:\"<p>On this episode of WordPress Weekly, I’m joined by <a href=\"https://premium.wpmudev.org/blog/author/james/\">James Farmer</a>, co-founder and CEO of <a href=\"https://incsub.com/\">Incsub</a>. Farmer has been involved in the WordPress community for 11 years and in that time, he and I have butted heads, mildly speaking.</p>\n<p>Last year, Farmer <a href=\"https://premium.wpmudev.org/blog/10-years-as-a-wordpress-entrepreneur/\">looked back</a> at the last 10 years of being a WordPress entrepreneur. In that post, he shares emails and conversations he has had in the WordPress community that are cringe-worthy. Because of the extremely poor interactions I’ve had with Farmer in the past, I’ve kept away from his work and the projects he is associated with.</p>\n<p>In the past few months, I’ve read interviews with Farmer where he appears to have turned over a new leaf. In an <a href=\"https://torquemag.io/2017/04/qa-wpmu-dev-ceo-james-farmer/\">interview on Torquemag</a> congratulating him on WPMU Dev’s Smush Image Compression plugin <a href=\"http://torquemag.io/2017/04/wp-smush-defeats-wordfence-wins-plugin-madness-2017/\">winning the Plugin Madness competition</a>, Farmer is asked what advice he would give to aspiring plugin developers?</p>\n<p>“Make the free version as brilliant as you possibly can. Give back to the community as much as you can and it’ll come back to you in spades,” Farmer said. “Contribute to the wordpress.org support forums and community, commit code if you can, speak at WordCamps, and be as helpful and useful as possible, it’ll ALL be worth it, I promise.”</p>\n<p>When asked what’s the most important lesson he’s learned as CEO and co-founder of WPMU Dev, he responded:</p>\n<blockquote><p>That is a very good question, and one I think I’m actually probably not able to answer as there are basically so so many important things.</p>\n<p>I think though if I had to pick one, it goes along the same lines as my last answer: the more you give out, the more you give of yourself and the more, kinda, selfless that you are… the more you get back. And, sadly (and from painful experience), the opposite is also true.</p></blockquote>\n<p>Because of the way he answered these questions and my curiosity for his career in WordPress, I invited him on WordPress Weekly. We talked about his entrepreneurial career and some of the failures along the way. He explains the genesis behind the <a href=\"https://wordpress.org/plugins/wp-smushit/\">Smush Image Optimization Plugin</a> and shares what it’s like to be part of the WordPress community in Australia.</p>\n<p>My favorite part of the interview is when Farmer describes his experience at WordCamp Europe a few years ago that fundamentally changed his perception of the WordPress community.</p>\n<p>After this interview, I can confidently say that the past between us is water under the bridge. I look forward to future conversations with Farmer and taking a closer look at his company’s products.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/bbpress-2-6-beta-3-likely-as-team-focuses-on-solid-data-migration-path\">bbPress 2.6 Beta 3 Likely as Team Focuses on Solid Data Migration Path</a><br />\n<a href=\"https://wptavern.com/versionpress-4-0-tentatively-scheduled-to-ship-in-september\">VersionPress 4.0 Tentatively Scheduled to Ship in September</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-release-targeted-for-june-8\">WordPress 4.8 Release Targeted for June 8</a><br />\n<a href=\"https://wptavern.com/wphugs-a-community-devoted-to-educating-discussing-and-raising-awareness-of-mental-health\">WPHugs: A Community Devoted to Educating, Discussing, and Raising Awareness of Mental Health</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 17th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #272:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 11 May 2017 23:34:28 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;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:69:\"WPTavern: VersionPress 4.0 Tentatively Scheduled to Ship in September\";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:58:\"https://wptavern.com?p=69948&preview=true&preview_id=69948\";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:80:\"https://wptavern.com/versionpress-4-0-tentatively-scheduled-to-ship-in-september\";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:2320:\"<p>Nealy a year ago, <a href=\"https://wptavern.com/versionpress-3-0-adds-new-search-feature-bulk-undo-and-commit-tracking-per-environment\">VersionPress 3.0 was released</a>. This version added new search capabilities, bulk undo, and a number of bug fixes. It was the first release since it became a <a href=\"https://wptavern.com/versionpress-transitions-into-a-free-open-source-project\">free, open source project</a>.</p>\n<p>In a post on the <a href=\"https://blog.versionpress.net/2017/05/versionpress-4-0-update/\">project’s development blog</a>, Borek Bernard, co-founder of VersionPress, describes what the team is focusing on for 4.0 which includes a tentative release schedule.</p>\n<p>VersionPress 4.0 beta is planned to ship in June with 4.0-final scheduled to ship in September. In addition, the team will be labeling the project as a Developer Preview to better indicate its production-readiness.</p>\n<p>“With every major release, you rightfully ask about the status of the project when it comes to production-readiness,” Bernard said. “The answer is ‘your mileage may vary’ but we feel we should better indicate that it’s only really intended for developers, currently. Therefore, we’ll be adding the ‘Developer Preview’ label for the project as a whole.”</p>\n<p>VersionPress 4.0 beta 1 will support Jetpack and WooCommerce via <a href=\"https://github.com/versionpress/versionpress/blob/master/docs/Plugin-Support.md\">plugin definitions</a>. Updates to internal data structures, compatibility fixes with WordPress 4.7, and other improvements are also slated to be in 4.0.</p>\n<p>Bernard also provides an outline of what to expect from the project in the near future. The team hopes to release Version 5.0 later this year or early next year with definitions for the most popular plugins. It will also be the first version rolled out on the project’s upcoming platform. Version 6.0 is expected a year after that.</p>\n<p>To contribute to VersionPress, you can get in touch with the founders through <a href=\"https://gitter.im/versionpress/versionpress\">Gitter</a> or visit the <a href=\"https://github.com/versionpress/versionpress/projects/2\">project’s Github page</a> where pull requests are welcomed.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 11 May 2017 00:34:27 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;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:53:\"Akismet: Akismet WordPress Plugin 3.3.2 Now Available\";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:31:\"http://blog.akismet.com/?p=1940\";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:67:\"https://blog.akismet.com/2017/05/10/akismet-wordpress-plugin-3-3-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:869:\"<p>Version 3.3.2 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. This update fixes a bug that was preventing some JavaScript from executing in wp-admin in some older browsers.</p>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1940/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1940/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1940&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";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:\"Wed, 10 May 2017 17:19:23 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;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:121:\"HeroPress: There is No Shortcut to Success – सफलता का कोई शॉर्टकट नहीं है\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=1813\";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:49:\"https://heropress.com/essays/no-shortcut-success/\";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:13563:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/05/051017-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress gave me a chance in my life to prove that I could do something different.\" /><p><a href=\"http://heropress.com/feed/#hindi\">वर्डप्रेसने मुझे मेरे ज़िंदगी में कुछ अलग करने का मौक़ा दिया।</a></p>\n<p>Udaipur is known as the city of lakes, is one of the beautiful city in Rajasthan and that is where I come from. Since the beginning, I have been close to Udaipur. With the studies and growing up here, the thought of leaving this beautiful city have never occurred to me. Everything I have achieved in life could never have been possible without the support of my parents.</p>\n<p>The 6 months after the graduation have been the most troublesome. At the time it felt as if finding a job was a big challenge, but I never gave up. There is a saying that “No work is big or small. It’s not the stature of work that matters, but what you learn from working that counts” and that is when I started to look for a job out of my field of expertise. My life had a new turn and me, fortunately, got a job at KPO and that was a new beginning of my life.</p>\n<h3>How I got into WordPress</h3>\n<p>Before joining into IdeaBox I don’t know much about WordPress. Before knowing about WordPress my identity was just a beginner. By keep working on WordPress I got so much involvement in that. WordPress gave me a chance in my life to prove that I could do something different and I felt like I have the skills and potential and I could do something. I got my confidence back. I always try to learn something new in WordPress.</p>\n<p>I do theme development in WordPress. I have learned so much from WordPress. I can proudly say I am the part of WordPress community. One thing I got a chance to learn is in life, there is no shortcut for success. Whatever person get in life is only because of the hard work.</p>\n<p>I have completed 3 years in WordPress and I love to be a part of it. I love WordPress and it has the wonderful community. In my free time, I do WordPress translations. I try to contribute in every possible way by giving support, translating and any other things.</p>\n<h3>First Speaking Experience at WordCamp</h3>\n<p>WordCamp Udaipur got organized recently. In that, I was the organizer and speaker. It was the amazing experience which I never felt before. After WordCamp only I get to know that how big community it is. When I become the speaker of the WordPress is the most memorable and the greatest experience of my life. I will never forget this moment in my life.</p>\n<p>One thing is I was part of the organizing team and my first session. I was totally nervous. The session went so well and all nervousness went away in happiness. Because I realized that talking in front of these many people is not an easy task. So, I was very Happy. If I get a chance to perform In WordPress community, I will do my contribution in any way.</p>\n<h3>Thank you note</h3>\n<p>Thanks to WordPress for changing my life and I want to especially thank my parents for supporting and believe me always.</p>\n<hr />\n<h1 id=\"hindi\">सफलता का कोई शॉर्टकट नहीं है</h1>\n<p>उदयपुर को झीलों के शहर के रूप में भी जाना जाता है, यह राजस्थान के खूबसूरत शहर में से एक है और यही वह जगह है जहाँ से मैं हूं। शुरुआत से ही मैं उदयपुर में रहने और पढ़ाई के साथ और यहां पले बड़े होने की वजह से इस खूबसूरत शहर को छोड़ने का विचार मुझे कभी नहीं आया। जीवन में जो कुछ भी हासिल किया है, वह मेरे माता-पिता के समर्थन के बिना कभी संभव नहीं हो सकता था।</p>\n<p>पढ़ाई पूरी होने के ६ महीने बाद तक सबसे ज्यादा परेशानी रही। समय के साथ ऐसा महसूस हुआ जैसे काम ढूंढना काम करने से ज्यादा कठिन था, लेकिन मैंने अपना मनोबल टूटने नहीं दिया और धैर्य से काम लिया। जैसा कि कहा जाता है “कोई काम बड़ा या छोटा नहीं है, किसी काम को करने से जो आप सीखते है वह मायने रखता है” और तब मैंने अपने विशेषज्ञता के क्षेत्र से हटकर नौकरी खोजना शुरू कर दिया। मेरी जिंदगी का एक नया मोड़ था और मुझे सौभाग्य से केपीओ में नौकरी मिली और यही वह जगह थी जहां मेरे जीवन की एक नई शुरुआत शुरू हुई।</p>\n<h3>कैसे मैंने WordPress को जाना</h3>\n<p>आइडियाबॉक्स में शामिल होने से पहले मुझे वर्डप्रेस के बारे में अधिक जानकारी नहीं थी। वर्डप्रेस के बारे में जानने से पहले मेरी पहचान सिर्फ एक प्रवर्तक के रूप में थी। वर्डप्रेस पर काम करते रहने से, मेरी इसमें सहभागिता बढ़ती गयी। वर्डप्रेस ने मुझे अपने जीवन में एक मौका दिया है ताकि साबित हो कि मैं कुछ अलग कर सकती हूं और मुझे लगा कि मेरे पास कौशल और क्षमता है और मैं कुछ कर सकती हूं। मुझे अपना आत्मविश्वास वापस मिल गया। मैं हमेशा वर्डप्रेस में कुछ नया सीखने की कोशिश करती हूं।</p>\n<p>मैं वर्डप्रेस में थीम डेवलपमेंट करती हूं। मैंने वर्डप्रेस में बहुत कुछ सीखा है। मैं गर्व से कह सकता हूं कि मैं वर्डप्रेस समुदाय का हिस्सा हूं। एक बात मुझे जीवन में जानने को मिली है कि सफलता के लिए कोई शॉर्टकट नहीं है। जो कुछ भी जीवन में मिलता है, कड़ी मेहनत के कारण ही मिलता है।</p>\n<p>मैंने वर्डप्रेस में 3 साल पूरे किए हैं और मैं इसका हिस्सा बनकर बेहद खुश हूं। मुझे वर्डप्रेस पसंद है और इसमें अद्भुत समुदाय है मेरे खाली समय में मैं वर्डप्रेस अनुवाद करती हूं। मैं वर्डप्रेस में समर्थन, अनुवाद और अन्य चीजें देने के हर संभव तरीके से योगदान करने की कोशिश करती हूं।</p>\n<h3>WordCamp में पहली बार वक्ता बनने का अनुभव</h3>\n<p>Wordcamp उदयपुर हाल ही में आयोजित किया गया। उसमें मैं आयोजक और स्पीकर थी यह अद्भुत अनुभव था जिसे मैंने पहले कभी महसूस नहीं किया था। वर्डकैंप में मुझे पता है कि यह कितना बड़ा समुदाय है। यह मेरे जीवन का सबसे यादगार और सबसे बड़ा अनुभव है। मैं इसे एक क्षण के लिए भी नहीं भूलूंगी।</p>\n<p>एक बात यह है कि मैं आयोजक टीम का हिस्सा थी और मेरा पहला सेशन। मैं पूरी तरह नर्वस थी। सेशन बहुत अच्छा गया और सभी घबराहट खुशी में बदल गई। क्योंकि मुझे एहसास हुआ कि इतने लोगों के सामने बात करना आसान बात नहीं थी। इसलिए मैं बहुत खुश थी। यदि मुझे वर्डप्रेस समुदाय में प्रदर्शन करने का मौका मिलता है तो मैं किसी भी तरह से योगदान करुँगी।</p>\n<h3>धन्यवाद पत्र</h3>\n<p>वर्डप्रेस के लिए धन्यवाद जिसने मुझे खुद को साबित करने का मौका दिया और मैं अपने माता-पिता के लिए विशेष रूप से धन्यवाद करना चाहती हूं कि उन्होंने हमेशा मुझ पर विश्वास किया और मुझे प्रोत्साहित किया।</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: There is No Shortcut to Success – सफलता का कोई शॉर्टकट नहीं है\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=There%20is%20No%20Shortcut%20to%20Success%20%2D%20%E0%A4%B8%E0%A4%AB%E0%A4%B2%E0%A4%A4%E0%A4%BE%20%E0%A4%95%E0%A4%BE%20%E0%A4%95%E0%A5%8B%E0%A4%88%20%E0%A4%B6%E0%A5%89%E0%A4%B0%E0%A5%8D%E0%A4%9F%E0%A4%95%E0%A4%9F%20%E0%A4%A8%E0%A4%B9%E0%A5%80%E0%A4%82%20%E0%A4%B9%E0%A5%88&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fno-shortcut-success%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: There is No Shortcut to Success – सफलता का कोई शॉर्टकट नहीं है\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fno-shortcut-success%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fno-shortcut-success%2F&title=There+is+No+Shortcut+to+Success+%26%238211%3B+%E0%A4%B8%E0%A4%AB%E0%A4%B2%E0%A4%A4%E0%A4%BE+%E0%A4%95%E0%A4%BE+%E0%A4%95%E0%A5%8B%E0%A4%88+%E0%A4%B6%E0%A5%89%E0%A4%B0%E0%A5%8D%E0%A4%9F%E0%A4%95%E0%A4%9F+%E0%A4%A8%E0%A4%B9%E0%A5%80%E0%A4%82+%E0%A4%B9%E0%A5%88\" rel=\"nofollow\" target=\"_blank\" title=\"Share: There is No Shortcut to Success – सफलता का कोई शॉर्टकट नहीं है\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/no-shortcut-success/&media=https://heropress.com/wp-content/uploads/2017/05/051017-150x150.jpg&description=There is No Shortcut to Success - सफलता का कोई शॉर्टकट नहीं है\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: There is No Shortcut to Success – सफलता का कोई शॉर्टकट नहीं है\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/no-shortcut-success/\" title=\"There is No Shortcut to Success – सफलता का कोई शॉर्टकट नहीं है\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/no-shortcut-success/\">There is No Shortcut to Success – सफलता का कोई शॉर्टकट नहीं है</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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:\"Wed, 10 May 2017 12:00:53 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Nidhi Jain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;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:80:\"WPTavern: bbPress 2.6 Beta 3 Likely as Team Focuses on Solid Data Migration Path\";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:29:\"https://wptavern.com/?p=69367\";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:91:\"https://wptavern.com/bbpress-2-6-beta-3-likely-as-team-focuses-on-solid-data-migration-path\";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:3387:\"<p>For the past few months, users have been testing <a href=\"https://bbpress.org/forums/topic/bbpress-2-6-beta/\">bbPress 2.6 Beta 2</a>. bbPress 2.6 will be the first major version update since 2014 and will include the following features:</p>\n<ul>\n<li>Per-forum moderators</li>\n<li>Improved favorites and subscriptions management</li>\n<li>Improved BuddyPress integration</li>\n<li>Performance improvements</li>\n<li>User experience improvements to meta-boxes and admin-area tools</li>\n<li>Tighter integration with the WordPress Dashboard</li>\n<li>Template tweaks and clean-up</li>\n</ul>\n<p>In an <a href=\"https://bbpress.org/forums/topic/bbpress-2-6-beta/page/3/#post-183637\">interview published last week</a>, John James Jacoby, bbPress lead developer, shared insight into bbPress 2.6’s development. According to Jacoby, there will likely be a third beta as the team continues to work on a solid data migration path from 2.5 to 2.6.</p>\n<p>“In the process of working on 2.6, some interesting things sort of happened all at the same time,” he said. “It kind of goes back to the old bbPress problem where WordPress.org is running 2.5 and is also running a hybrid of 2.6 to take advantage of performance improvements.”</p>\n<p>Throughout the process of migrating WordPress.org from bbPress 2.5 to 2.6, the development team was able to resolve a number of bottlenecks associated with <a href=\"https://wptavern.com/mattnote-from-wordcamp-san-francisco\">turning bbPress into a plugin</a>.</p>\n<p>“With every beta comes more feedback and the closer we get to release, the more feedback that comes in,” he said. “As we upgrade WordPress.org and receive more feedback, we fix more things.”</p>\n<p>“With a small team, there’s no dedicated resources on the project which is the same problem that existed in 2014 when I did my <a href=\"https://wptavern.com/john-james-jacoby-launches-indiegogo-campaign-to-fund-buddypress-bbpress-and-glotpress-development\">Indiegogo campaign</a>. I’m really trying to spend a lot of time working on it but I’m also spending a lot of time on the security team, contributing to WordPress core, Multisite, and other projects. bbPress is my focus for as much as I can afford it to be.</p>\n<p>“bbPress 2.6 will ship, I promise, and it will be a better bbPress than it has ever been.”</p>\n<p>Jacoby confirmed that there will likely be a third beta released sometime in the near future. Those who have upgraded to bbPress 2.6 Beta 2 are <a href=\"https://bbpress.org/forums/topic/bbpress-2-6-beta/page/3/#post-183637\">reporting substantial performance improvements</a>.</p>\n<p>If you use bbPress 2.5 and want to upgrade to 2.6 Beta 2, Jacoby encourages users to create a full backup of the site’s database as the upgrade migrates data for subscriptions and favorites. These changes are not easily reverted should you choose to downgrade back to 2.5.</p>\n<p>For your convenience, I’ve clipped the portion from the full interview that includes our conversation about bbPress and BuddyPress that you can listen too below.</p>\n<a href=\"https://wptavern.com/wp-content/uploads/2017/05/John-James-Jacoby-Gives-bbPress-2.6-Update.mp3\">https://wptavern.com/wp-content/uploads/2017/05/John-James-Jacoby-Gives-bbPress-2.6-Update.mp3</a>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Tue, 09 May 2017 20:19:23 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;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:92:\"WPTavern: New WordPress Plugin Blocks Spam User Registrations Using Stop Forum Spam Database\";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:29:\"https://wptavern.com/?p=69810\";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:103:\"https://wptavern.com/new-wordpress-plugin-blocks-spam-user-registrations-using-stop-forum-spam-database\";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:3435:\"<p>When it comes to spam, comments are one of the first things that comes to mind. However, spam user registrations can be just as prolific on sites with open registration. Leland Fiegel, founder of <a href=\"https://themetry.com/\">Themetry</a>, has developed a new plugin called <a href=\"https://wordpress.org/plugins/stop-signup-spam/\">Stop Signup Spam</a> that prevents users from registering an account if their email or IP address is on the <a href=\"http://stopforumspam.com/\">Stop Forum Spam</a> database.</p>\n<p>Stop Forum Spam is a free service that records reports of spam registrations from blogs, forums, wikis, and more. Stop Signup Spam integrates with the WordPress registration form and Restrict Content Pro. Fiegel launched a new site over the weekend and despite not announcing it, it received a handful of spam registrations.</p>\n<p>After Googling the registrants’ email addresses, he discovered a number of them were reported on Stop Forum Spam’s site. “I had never heard of Stop Forum Spam before, but it is basically an Akismet equivalent for forum sign up spam,” Fiegel said. “I noticed they had a dead link to a WordPress plugin. I looked up the <a href=\"http://stopforumspam.com/usage\">Stop Forum Spam API documentation</a> and built a basic one myself a couple of days ago. I submitted it to WordPress.org and it was approved within a day.”</p>\n<p>When a user is blocked from registering, the following error is displayed: Cannot register. Please contact site administrator for assistance.</p>\n<p>Although users can check the<a href=\"http://stopforumspam.com/search\"> Stop Forum Spam database</a> to see if their email or IP address is blocked, the error message doesn’t inform them that Stop Forum Spam is what blocked their registration.</p>\n<p>“I wanted to keep the error message vague so users wouldn’t lash out at site administrators for accusing them of being ‘spammers’ but clear enough that the site administrator would know it was a false positive when it was reported to them,” Fiegel said.</p>\n<p>In the <a href=\"https://wordpress.org/plugins/stop-signup-spam/\">plugin’s description</a>, Fiegel is clear about <a href=\"https://www.stopforumspam.com/privacy\">what data</a> is sent to the service. Each time a user attempts to register an account, an API call that contains the user’s email and IP address is sent to Stop Forum Spam and checked against its database. Although the plugin uses the service’s API, it does not require users to register for an API key. This allows the plugin to function upon activation without having to configure anything. Registrants that are incorrectly blocked as spammers can <a href=\"http://stopforumspam.com/removal\">submit a request</a> to have their IP or email address removed from the database.</p>\n<p>Fiegel has no plans to integrate support for other forms but is open to <a href=\"https://github.com/lelandf/stop-signup-spam\">pull requests</a> from those who would like to contribute integration support of their own. I did not test this plugin on an active site, but Fiegel says it has dramatically cut down on the number of spam registrations on his new site. If user spam registration is an issue you’re dealing with, consider giving <a href=\"https://wordpress.org/plugins/stop-signup-spam/\">Stop Signup Spam</a> a try.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Mon, 08 May 2017 22:39:25 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;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:27:\"Matt: Everything is Hitched\";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:22:\"https://ma.tt/?p=47310\";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:44:\"https://ma.tt/2017/05/everything-is-hitched/\";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:184:\"<p><img /></p>\n<blockquote><p>“When we try to pick out anything by itself, we find it hitched to everything else in the Universe.”</p></blockquote>\n<p>— John Muir</p>\";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:\"Mon, 08 May 2017 18:29:20 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;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:65:\"BuddyPress: Largest Turkish Recipe Site Spiced Up with BuddyPress\";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:32:\"https://buddypress.org/?p=265777\";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:85:\"https://buddypress.org/2017/05/largest-turkish-recipe-site-spiced-up-with-buddypress/\";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:9626:\"<div><em>This a guest post by Mustafa Uysal (<a href=\"https://profiles.wordpress.org/m_uysl\">m_uysl</a>). He is from Turkey and works as a full-stack developer at <a href=\"http://www.nefisyemektarifleri.com/\">NefisYemekTarifleri.com</a>.</em></div>\n<p>Peer reviewed by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/boonebgorges/\" rel=\"nofollow\">@boonebgorges</a></p>\n<p><img class=\"alignnone size-large wp-image-265785\" src=\"https://buddypress.org/wp-content/uploads/1/2017/05/nefis-yemek-tarifleri-1024x805.jpg\" alt=\"nefisyemektarifleri site\" width=\"700\" height=\"550\" /></p>\n<p><a href=\"http://www.nefisyemektarifleri.com/\">NefisYemekTarifleri.com</a> is the largest Turkish recipe sharing platform in the world. It has more than 290,000 recipes that reach millions of users every single day. <a href=\"http://www.nefisyemektarifleri.com/\">NefisYemekTarifleri</a> is a unique platform that uses WordPress and BuddyPress for all its applications — desktop, mobile web, Android, iOS, and AndroidTV.</p>\n<p><strong>Current status:</strong></p>\n<ul>\n<li>290k+ recipes, <code>~500</code> new recipes from different authors per day</li>\n<li><code>~2.2M+</code> registered users with <code>~2.6M</code> xprofile_data, 24M+ usermeta</li>\n<li><code>~4M</code> native apps download, <code>~1M</code> active usage</li>\n<li><code>~100TB</code> CDN BW usage per month</li>\n<li>3M+ BuddyPress activities and <code>~4M+</code> notifications</li>\n<li>300k+ search requests per day</li>\n</ul>\n<p>We use <a href=\"https://uysalmustafa.com/2016/04/12/how-to-scale-10m-search-request-with-elasticpress/\">ElasticPress to handle 10M+ requests</a>. To scale this platform, we use various tools which we <a href=\"https://stackshare.io/nefisyemektarifleri-com/nefisyemektarifleri\">share at Stackshare</a>. We share some of our stats on Twitter <a href=\"https://twitter.com/search?q=nytstats&src=typd\">#nytstats</a>.</p>\n<h2>BuddyPress for a Growing User Base</h2>\n<p>NefisYemekTarifleri.com is turning 10 years old this August and has been using BuddyPress for the last 5 years. According to my boss, “BuddyPress has helped a lot to increase our user base.”</p>\n<p>Our platform is community-driven, i.e., all the recipes come from our users. The membership and number of recipes submitted have increased dramatically since we started using BuddyPress. The users feel more welcome because they have their “own space” where they can easily add their avatars, cover images, post their recipes, and share other social media links. BuddyPress has enabled users to engage more with other registered members as well as invite new users to the site. Our editorial team spends a majority of their time editing user recipe submissions.</p>\n<p>Currently, we are using all BuddyPress core components except Friends and Groups. Thankfully, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>‘s <a href=\"https://wordpress.org/plugins/buddypress-followers/\">BuddyPress Followers</a> plugin is a great replacement to the built-in Friends component.</p>\n<h2>Customized BuddyPress Features</h2>\n<h3>Notifications</h3>\n<p>Our notification system is quite different from the standard BuddyPress notifications. It supports push and web push notifications and works async over the message queue.</p>\n<p><img class=\"alignnone size-large wp-image-265786\" src=\"https://buddypress.org/wp-content/uploads/1/2017/05/nyt-notification-1024x512.jpg\" alt=\"Site notifications schema\" width=\"700\" height=\"350\" /></p>\n<p>There are a lot of activities which can trigger notifications. There were and are many instances when we send notifications to tens of thousands users every day. For example, when one author with thousands of “followers” publishes a new recipe, it took a long time to send a simple notification like, “Hi there! Jane Doe published a new recipe, take a look!” Consider when we have 10 authors with many followers publishing new recipes at the same time.</p>\n<p>In the early days, we created a custom `nyt_bp_add_notification` script which called BuddyPress’ own notification that added a function for bulk messaging. We found out that it was causing lags on our slave MySQL servers because the impact on the disk IO was dramatic. Our solution was a new custom script, `nyt_bp_add_bulk_notification`, which inserts data directly to database (as a bulk SQL query). By the way, we highly recommend Percona’s <a href=\"https://www.percona.com/doc/percona-monitoring-and-management/index.html\">PMM</a> for catching performance hogs.</p>\n<p>At the end of 2016, we migrated from parse.com to our <a href=\"https://github.com/parse-community/parse-server\">self hosted parse</a> for push notifications. After which, we used <a href=\"https://github.com/web-push-libs/web-push-php\">web-push-php</a> for the web push notifications.</p>\n<h3>Cover Image</h3>\n<p>We decided to replace the built-in cover image feature and create our own Facebook-inspired UI which was more user-friendly. The feedback has been quite positive from our members.</p>\n<p><img src=\"https://uysalmustafa.files.wordpress.com/2017/04/cover-image.gif\" width=\"981\" height=\"398\" alt=\"New cover image UI\" class=\"alignnone size-large\" /></p>\n<p>Features of our new cover image UI:</p>\n<ul>\n<li>A user can directly upload a cover image by clicking on an icon on top of the cover image area.</li>\n<li>The full-size image is saved behind the scenes.</li>\n<li>Quick image resizing after the image upload has completed.</li>\n<li>A user can change image position via drag-drop.</li>\n<li>The full path and image coordinates are recorded as meta.</li>\n</ul>\n<h3>Messages</h3>\n<p>The Messaging component is active but not fully open for the end users. We will make this available for everyone when we’ve completed our mobile app integration. This is how we are setting this up for our site:</p>\n<ul>\n<li>All messages have to be between two people, we canceled group messaging.</li>\n<li>When someone you are not following sends a message, that message is marked as “pending”. You also “block” that person.</li>\n<li>Fluent messaging: all conversations between two people use the same thread.</li>\n</ul>\n<h2>Workarounds/Hacks/Yikes!</h2>\n<p><strong>Cache:</strong> We hated touching BuddyPress directly, but we had to hack core file to fix memory issues. (We have submitted <a href=\"https://buddypress.trac.wordpress.org/attachment/ticket/7130/7130.diff\">a patch </a>that reduces memory usage for <a href=\"https://buddypress.trac.wordpress.org/ticket/7130\">BP#7130</a>)</p>\n<p><strong>Messaging, reimagined</strong>: We made some necessary changes a bit in a hacky way on the messaging component. Changing messaging behavior was not easy and there are some edge cases we have to monitor and address.</p>\n<p><strong>Limit notifications</strong>: Only allow 200 notifications per user, WordPress’ cron cleans up on a daily basis.</p>\n<p><strong>API Endpoints</strong>: We had to be careful on managing API endpoints, addressing the mobile apps a bit differently than web, especially when you do caching inside the device.</p>\n<p><strong>Long-running process</strong>: MQ workers are long-running PHP scripts and they caused memory problems on production after a while. We fixed this issue with <a href=\"https://github.com/10up/ElasticPress/blob/157e65b112d90bcc15e532dc33f86592805cdb13/bin/wp-cli.php#L795\">stop_the_insanity</a>.</p>\n<h2>In the Works</h2>\n<p>Following are some of the features we have in queue:</p>\n<ul>\n<li>Upgrading BuddyPress, of course</li>\n<li>Elasticsearch integration over ElasticPress. (We haven’t tried it yet but <a href=\"https://github.com/swissspidy\">Pascal</a> already wrote <a href=\"https://github.com/swissspidy/wptalents/blob/feature/buddypress-integration/classes/core/ElasticPress.php\">some code</a> we can start playing with.)</li>\n<li>User suggestion to follow a member.</li>\n<li>Activity improvements (currently, just acting like feed).</li>\n<li>PHP 7.1 upgrade with dockerizing all the things. (Still using different versions of PHP)</li>\n</ul>\n<p>BuddyPress allows us to build one of the largest niche communities in the world. Fortunately for everyone, BuddyPress is being maintained by developers who are active contributors to WordPress core. Our thanks to all BuddyPress contributors, especially the BP core team.</p>\n<div><img class=\"alignleft size-full wp-image-265793\" src=\"https://buddypress.org/wp-content/uploads/1/2017/05/m_uysl.jpeg\" alt=\"Mustafa Uysal\" width=\"150\" height=\"150\" /> <em><a href=\"https://profiles.wordpress.org/m_uysl\">Mustafa Uysal</a> of <a href=\"http://www.nefisyemektarifleri.com/\">NefisYemekTarifleri.com</a> also runs his own company, <a href=\"http://skop.com.tr/\">SKOP</a>. He’s a plugin developer who enjoys solving tough problems and making things faster and scalable. He’s also a workaholic and was interested in archery <a href=\"https://uysalmustafa.com/2015/10/14/im-an-archer/\">once upon a time</a>. Mustafa is one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=tr_TR\">WordPress Translation Editors</a> for the Turkish language.<br />\nLinks: <a href=\"https://twitter.com/m_uysl\">Twitter</a>, <a href=\"https://github.com/mustafauysal\">Github</a>, <a href=\"https://profiles.wordpress.org/m_uysl\">WordPress.org</a>, <a href=\"https://www.linkedin.com/in/uysalmustafa/\">Linkedin</a>, <a href=\"https://www.instagram.com/m_uysl/\">Instagram</a>, <a href=\"https://uysalmustafa.com/\">My Blog</a>, and <a href=\"http://www.nefisyemektarifleri.com/u/mustafauysal/hakkinda/\">nefisyemektarifleri</a></em></div>\n<p> </p>\";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:\"Mon, 08 May 2017 16:55:50 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"HeroPress: TOMORROW is the last day to apply!\";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:29:\"https://heropress.com/?p=1792\";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:46:\"https://heropress.com/tomorrow-last-day-apply/\";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:2668:\"<img width=\"960\" height=\"639\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/04/ipad-uandr-1-1024x682.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Two hands holding an ipad so we can see the screen.\" /><p>Tomorrow is the last day to apply for the <a href=\"https://heropress.com/up-running-scholarship-heropress-wpshout/\">The Up and Running Scholarship, from HeroPress and WPShout</a>! Once the entry time is closed then we’ll package up the submissions and send them to the judging panel.</p>\n<p>NO SUBMISSIONS WILL BE ACCEPTED after 23:59:59 UTC 09 May.</p>\n<p>If you’ve been waiting to apply, don’t wait any more!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: TOMORROW is the last day to apply!\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=TOMORROW%20is%20the%20last%20day%20to%20apply%21&via=heropress&url=https%3A%2F%2Fheropress.com%2Ftomorrow-last-day-apply%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: TOMORROW is the last day to apply!\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Ftomorrow-last-day-apply%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Ftomorrow-last-day-apply%2F&title=TOMORROW+is+the+last+day+to+apply%21\" rel=\"nofollow\" target=\"_blank\" title=\"Share: TOMORROW is the last day to apply!\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/tomorrow-last-day-apply/&media=https://heropress.com/wp-content/uploads/2017/04/ipad-uandr-1-150x150.png&description=TOMORROW is the last day to apply!\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: TOMORROW is the last day to apply!\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/tomorrow-last-day-apply/\" title=\"TOMORROW is the last day to apply!\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/tomorrow-last-day-apply/\">TOMORROW is the last day to apply!</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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:\"Mon, 08 May 2017 13:28:35 +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:\"\";}}}}}i:26;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:65:\"WPTavern: Weglot Multilingual Plugin Closes $450K in Seed Funding\";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:29:\"https://wptavern.com/?p=69667\";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:75:\"https://wptavern.com/weglot-multilingual-plugin-closes-450k-in-seed-funding\";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:3879:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/10/weglot.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://weglot.com/\" target=\"_blank\">Weglot</a>, a multilingual plugin which has been in the WordPress market for a little over a year, has <a href=\"http://blog.weglot.com/7k-21keuromonthly-6months-growth-e450k-fundraising/\" target=\"_blank\">closed $450K in seed funding from SIDE Capital</a>. Co-founder Rémy Berda reports that there are now more than 10,000 websites using Weglot and the company has passed 30K€ in monthly revenue.</p>\n<p>Over the past six months Berda and his small team have been working to add improvements based on user feedback. Weglot will now detect a visitor’s language and automatically redirect to serve the translated page. Weglot users can also connect with <a href=\"https://www.textmaster.com/\" target=\"_blank\">Textmaster</a>‘s marketplace to order professional translations through their accounts. The support burden has also increased from 10-20 emails per day to more than 80 per day, challenging the small team’s resources.</p>\n<p>“Over the past few months, we started to be overworked by the amount of support or the number of features we wanted to add to the product,” Berda said. “We got a bit frustrated not to be able to improve the product as we wanted to through lack of time. So we understood that if we wanted to keep growing at a fast pace, we would need to scale up our two-person company and raising money was the perfect way to do it.”</p>\n<p>After making the connection with SIDE Capital at the end of 2016, Weglot decided to partner with them to fund the further expansion if its support team. The team is currently comprised of two founders, one lead developer, one head of support, and one support agent. Approximately 1,500 of Weglot’s 10,000 users are on an active paid plan, but the remaining 85% of free users make up a significant portion of the support load. Berda said they are investing their resources in support, which serves both free and paid users, in order to maintain the same quality.</p>\n<p>In tandem with improving the performance of the plugin and its support, Berda said the team is also developing other integrations to test Weglot’s service outside of the WordPress market.</p>\n<p>Weglot is growing rapidly in the North American market. Although the Asian market is not represented on the plugin’s user breakdown below, Berda said it has more than doubled in the past two months.</p>\n<p>“We have been seeing an accelerating growth in the Americas in the past 6 months,” Berda said. “We went from 5% of our clients to 25% now. Asia is still small but has been quickly growing in the past two months from 3% to 8%.”</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/05/weglot-users-countries-breakdown.png?ssl=1\"><img /></a></p>\n<p>One year after officially launching Weglot, Berda and his team have found that WordPress is a ripe market for entrepreneurs who are ready to move quickly and provide a high level of customer service. His advice to newcomers?</p>\n<p>“You’re in the right place,” Berda said. “WordPress is a huge market with real needs, and it is often overlooked by many entrepreneurs. There is an active and strong community with ‘caring’ values. So WordPress is definitely a great place to build a business.” He recommends keeping to a brisk timeline:</p>\n<p>“One month after you have the idea, you must have some people (1 to 10) testing a MVP,” Berda said. “One more month later, you must have your first paying customer to validate the needs. Finally, never neglect customer support. Done carefully, customer supports transforms into customer acquisition.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Fri, 05 May 2017 20:13:22 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;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:51:\"WPTavern: WordPress 4.8 Release Targeted for June 8\";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:29:\"https://wptavern.com/?p=69778\";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:62:\"https://wptavern.com/wordpress-4-8-release-targeted-for-june-8\";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:2349:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/gutenberg-editor.png?ssl=1\"><img /></a></p>\n<p>WordPress 4.8 kicked off in this week’s core developer meeting and the <a href=\"https://make.wordpress.org/core/4-8/\" target=\"_blank\">schedule</a> for the upcoming release is now published. Beta 1 is scheduled for May 12 and the official release is targeted for June 8. This will be the first major release in 2017 and is focused on laying the foundation for the new <a href=\"https://github.com/WordPress/gutenberg\" target=\"_blank\">Gutenberg</a> editor. The schedule identifies the features that contributors are aiming to ship in 4.8:</p>\n<ul>\n<li>TinyMCE inline element / link boundaries</li>\n<li>New media widgets</li>\n<li>WYSIWYG in text widget</li>\n<li>WordCamp / meetup dashboard upgrade to the “news” section</li>\n</ul>\n<p>Several contributors expressed concern during the meeting about the compressed timeline, as both the beta and RC testing times have roughly half the time they have been given in the past. Also, the release’s close proximity to WordCamp Europe, which officially begins activities the following week, presented additional concerns about the added workload of a release within the May/June timeframe.</p>\n<p>“I think people are thinking of this as a normal release, a train leaving the station that a bunch of stuff (multisite! meta!) has to get on to make it in,” 4.8 release lead Matt Mullenweg said. “I agree that needs a much longer timeframe.</p>\n<p>“What is really going on is that we have a few simple, already working as plugin enhancements that add a few files, and we want to get those in the hands of users sooner rather than later. We already update TinyMCE all the time. Potential breakage or compatibility should be limited to things that interact with the text widget or the news dashboard module.”</p>\n<p>After a brief discussion on the <a href=\"https://make.wordpress.org/core/2017/05/04/dev-chat-summary-may-3rd-4-8-week-1/\" target=\"_blank\">dev meeting notes</a>, the proposed schedule was confirmed. The feature project merge deadline is coming up on May 10, followed by Beta 1 two days later. Any enhancements that are not ready to proceed on this timeline will be put on hold for a future release.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Fri, 05 May 2017 18:13:14 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;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:102:\"WPTavern: WPHugs: A Community Devoted to Educating, Discussing, and Raising Awareness of Mental Health\";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:29:\"https://wptavern.com/?p=69625\";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:110:\"https://wptavern.com/wphugs-a-community-devoted-to-educating-discussing-and-raising-awareness-of-mental-health\";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:3983:\"<p>In the past two years, there has been an increased effort in the WordPress community to raise awareness of mental health. <a href=\"http://wordpress.tv/2016/12/10/cory-miller-managing-your-iceberg/\">Cory Miller</a>, <a href=\"https://videopress.com/v/n53MNL3C\">Rich Robinkoff</a>, <a href=\"https://videopress.com/v/fBYZcOBz\">Michele Butcher</a>, and <a href=\"https://wphugs.org/talks/\">others</a> have presented on the subject at numerous WordCamps.</p>\n<p>A common theme that surrounds mental health is the fear of discussing it openly. <a href=\"https://wphugs.org/\">WPHugs.org</a>, a passion project by Leo Gopal, aims to provide a safe space for people to connect, educate, and raise awareness of mental health.</p>\n<p>“I suffered many times in my life so far with extreme depression,” Gopal said. “One of the most difficult parts of dealing with extreme depression is the feeling that you can’t tell anyone about it. This can include your boss or colleagues who you spend most of your time with.”</p>\n<p>“Until, at <a href=\"https://videopress.com/v/dhGqDhV5\">WordCamp Cape Town 2016</a>, I stood in front of a conference room full of people and ‘confessed’ that I am afflicted with depression. After the talk, many people came to me and called me ‘brave’ to be so open, and many opened up and thanked me for helping them realize that they too are not alone.</p>\n<p>“After my recovery from attempted suicide, it was the friends I had made in the WordPress Community that gave me the most support. I reached my darkest point, and I got there feeling alone. WPHugs hopes to be a torch that allows others to never get to such a space.”</p>\n<p>WPHugs has a <a href=\"https://wphugs.org/wp-login.php?action=slack-invitation\">Slack group</a> that’s free to join that provides an opportunity for like-minded people to discuss topics in real-time. While the conversations in the Slack channel are not private, Gopal is hopeful that the community will be built around trust and honesty.</p>\n<p>“I suspect that there will be more direct messages than there will be channel messages, and that’s okay, the connections are being made, we are talking more,” he said.</p>\n<p>WPHugs is a not-for-profit passion project and although the site has <a href=\"https://wphugs.org/sponsorships/\">sponsorship opportunities</a> available, Gopal is looking for companies and people who can contribute time and resources.</p>\n<p>“If companies want to contribute licenses to their software to help expand, grow, reach more people, by all means it is completely welcome,” Gopal said. “Sponsor time or resources, whatever you can to make this project thrive and survive, because it’s important, it could save someone’s life.”</p>\n<p>Gopal admits he’s not an authority on how to maintain good mental health but plans to crowdsource tips, tricks, and host conversations to help others. Heavily inspired by <a href=\"http://heropress.com/\">HeroPress</a>, Gopal wants to publish weekly essays called Mental Health War Stories.</p>\n<p>The most important message WPHugs wants to get across is that people who are suffering from mental illnesses are not alone.</p>\n<p>“It’s about making us aware of ourselves, taking care of our own mental health and how important it is for those around us. It’s also about being more empathetic for those around us who suffer in their own way and know that someone cares,” Gopal said.</p>\n<p>“I went through a struggle discovering my mental illness and learning about it, and I did it alone. I don’t want that journey for others to be as solitary. I am a hugger.”</p>\n<p>To share a mental health war story or to get involved with the project, you can get in touch with Gopal through the WPHugs <a href=\"https://wphugs.org/contact/\">contact form</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Fri, 05 May 2017 02:39:41 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;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:89:\"WPTavern: WordPress Security Issue in Password Reset Emails to Be Fixed in Future Release\";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:29:\"https://wptavern.com/?p=69665\";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:100:\"https://wptavern.com/wordpress-security-issue-in-password-reset-emails-to-be-fixed-in-future-release\";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:4135:\"<p>Security researcher Dawid Golunski of <a href=\"https://legalhackers.com/\" target=\"_blank\">Legal Hackers</a> has published the details of an <a href=\"https://exploitbox.io/vuln/WordPress-Exploit-4-7-Unauth-Password-Reset-0day-CVE-2017-8295.html\" target=\"_blank\">unauthorized password reset vulnerability</a> in WordPress core. Golunski demonstrated how, under certain circumstances, an attacker could intercept the password reset email and gain access to a user’s account.</p>\n<p>His proof of concept takes advantage of WordPress using the SERVER_NAME variable to get the hostname of the server in order to create a From/Return-Path header of the outgoing password reset email.</p>\n<blockquote><p>Major web servers such as Apache by default set the SERVER_NAME variable using the hostname supplied by the client (within the HTTP_HOST header):</p>\n<p>https://httpd.apache.org/docs/2.4/mod/core.html#usecanonicalname</p>\n<p>Because SERVER_NAME can be modified, an attacker could set it to an arbitrary domain of his choice e.g:</p>\n<p>attackers-mxserver.com</p>\n<p>which would result in WordPress setting the $from_email to </p>\n<p>wordpress@attackers-mxserver.com</p>\n<p>and thus result in an outgoing email with From/Return-Path set to this malicious address.</p></blockquote>\n<p>The results of this particular attack would depend on the server environment, the specific configuration of the mail server, and in some cases would require interaction from the user in question. Golunski’s <a href=\"https://exploitbox.io/vuln/WordPress-Exploit-4-7-Unauth-Password-Reset-0day-CVE-2017-8295.html\" target=\"_blank\">report</a> has a more specific breakdown of the possible methods that could be employed.</p>\n<p>After reporting the issue to the WordPress security team in July 2016 and also via the HackerOne website, Golunski saw no progress on it and decided to release the vulnerability details to the public.</p>\n<p>Although there is no official patch yet, WordPress Security Czar Aaron Campbell said the issue is not quite as severe as it may seem.</p>\n<p>“It’s a lower priority issue, but we are aware of it and it is in our queue to address,” Campbell said. He explained the unique set of conditions that would be required in order for this to be a serious vulnerability.</p>\n<p>“In order for the issue to have a security impact, a server needs to allow a user-supplied header to overwrite <code>$_SERVER[\'SERVER_NAME\']</code>,” Campbell said. “We would consider that a poor server configuration (like leaving <code>display_errors</code> on on a production server), which is unfortunately outside our control.”</p>\n<p>Campbell tested his personal Apache and nginx servers and none of them allowed for this. In addition to having a poorly configured server, Campbell said one of the following actions also needs to happen:</p>\n<ul>\n<li>a user needs to reply to a password reset email</li>\n<li>an auto-reply needs to reply to the E-Mail and include the original</li>\n<li>an E-Mail server has to be compromised or overloaded and the message returned to sender with content intact</li>\n</ul>\n<p>“If your server is susceptible and you don’t have the ability to fix the actual server configuration, you still don’t have to make changes to WordPress files to mitigate the issue,” Campbell said. “A little PHP like this in a plugin will set the from E-Mail to a static E-Mail address of your choice:”</p>\n<p><code>add_filter( \'wp_mail_from\', function( $from_email ) { return \'wordpress@mysite.com\'; } );</code></p>\n<p>Campbell said any changes WordPress makes to core will likely be done via a <a href=\"https://core.trac.wordpress.org/ticket/25239\" target=\"_blank\">ticket</a> that is currently tracking the issue from a non-security perspective. He said a fix is mostly likely not going to be coming in the next security release, but the team is actively working on it. If they find a good mitigation for the issue, Campbell said they will share it once they have worked through all the potential ramifications.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 04 May 2017 22:41:32 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;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:71:\"WPTavern: WordPress Community Team Considers New Retreat-Style WordCamp\";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:29:\"https://wptavern.com/?p=69642\";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:82:\"https://wptavern.com/wordpress-community-team-considers-new-retreat-style-wordcamp\";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:3741:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/06/journey.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/2DEL42UQ7M\">Jesse Bowser</a>\n<p>The WordPress Community Team is <a href=\"https://make.wordpress.org/community/2017/05/03/a-new-type-of-wordcamp/\" target=\"_blank\">debating the merits of a new type of WordCamp</a>, a hybrid event with the traditional WordCamp content in a retreat-style format. <a href=\"https://profiles.wordpress.org/mahype/\" target=\"_blank\">Sven Wagener</a> and the <a href=\"https://www.meetup.com/WordPress-Meetup-Koln/\" target=\"_blank\">Köln meetup group</a> in Germany, which has more than 700 members, have proposed a new style of camp that would potentially be called “WordCamp in the Green” or “WordCamp Retreat.”</p>\n<p>The event would be held outside of town at a venue where all attendees stay in the same hotel. In addition to the regular WordCamp sessions and Contributor Day, attendees have the opportunity to participate in local outdoor activities.</p>\n<p>The WordPress Community Team is open to considering different formats for WordCamps that serve a specific niche. <a href=\"https://wptavern.com/wordcamp-for-publishers-to-be-held-in-denver-august-17-19\" target=\"_blank\">WordCamp for Publishers</a>, the first WordCamp focused around a specific topic, is a recent example of this flexibility.</p>\n<p>The proposed format is very similar to the interest-based meetups that the <a href=\"https://wptavern.com/community-translation-and-wapuu-how-japan-is-shaping-wordpress-history\" target=\"_blank\">Japanese WordPress community</a> has been doing for years. Members spend time together in activities unrelated to WordPress, as opposed to simply focusing on improving technical skills, and as a result they become more connected with their local community. For example, the <a href=\"http://2014onsen.wbsendai.com/\" target=\"_blank\">Word温泉 (WordOnsen) meetup</a> includes members who enjoy hot springs. They gather in Fukushima where they stay at the same hotel, host WordPress sessions, and end with a party night. This format has successfully grown the Japanese meetup community to more than 50 local groups.</p>\n<p>The Köln meetup group’s proposal for a WordCamp doesn’t stray too far from the traditional WordCamp program, as the only differences seem to be a more rural setting where everyone stays at the same venue. A more radical change would be an event where WordPress community members meet simply for networking and connecting with no planned educational component. These types of niche unofficial WordCamps have been happening for years outside of the WordPress-sanctioned events.</p>\n<p>The WordPress Community Team is seeking feedback on the proposed “WordCamp Retreat,” as approval of the event would set a precedent.</p>\n<p>“If we introduce a new type of WordCamp event like this, we want it to be something that works in many communities, scales effectively for larger (or smaller) groups, and is able to be reproduced by any organizers who wish to do so,” Commnity Team member Hugh Lashbrooke said.</p>\n<p>The organizing team for the proposed WordCamp has already prepared a budget and is ready to move forward once given approval. Lashbrooke said the Community Team anticipates the new event types will have “a huge amount of interest from other communities around the world,” so they wanted to pitch it to the community for feedback.</p>\n<p>If you have strong opinions on the topic, you can <a href=\"https://make.wordpress.org/community/2017/05/03/a-new-type-of-wordcamp/\" target=\"_blank\">join the discussion on WordPress.org</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 04 May 2017 02:05:07 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;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:89:\"WPTavern: WPWeekly Episode 271 – Recapping WordCamp Chicago 2017 With John James Jacoby\";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:58:\"https://wptavern.com?p=69622&preview=true&preview_id=69622\";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:96:\"https://wptavern.com/wpweekly-episode-271-recapping-wordcamp-chicago-2017-with-john-james-jacoby\";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:2066:\"<p>In this episode, I’m joined by <a href=\"https://jjj.blog/\">John James Jacoby</a>. We recap WordCamp Chicago 2017 and learn about what he’s been up to as of late. Jacoby was recently elected as a trustee by the Village of East Troy, WI. We discussed what lessons he’s learned through open source software development that he’ll apply to his Trustee role.</p>\n<p>We talk about how important mental health is and near the end of the show, he provides status updates on the bbPress and BuddyPress projects. Jacoby also weighed in on the stories making headlines in recent weeks.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/shopify-discontinues-its-official-plugin-for-wordpress\">Shopify Discontinues Its Official Plugin for WordPress</a><br />\n<a href=\"https://wptavern.com/wordcamp-us-2017-ramps-up-ticket-sales-organizers-plan-for-2500-attendees\">WordCamp US 2017 Ramps Up Ticket Sales, Organizers Plan for 2,500 Attendees</a><br />\n<a href=\"https://wptavern.com/automattic-to-close-san-francisco-office\">Automattic to Close San Francisco Office</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-will-end-support-for-internet-explorer-versions-8-9-and-10\">WordPress 4.8 Will End Support for Internet Explorer Versions 8, 9, and 10</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, May 10th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #271:</strong><br />\n</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 04 May 2017 00:26:48 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;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:26:\"Matt: Exploiting Democracy\";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:22:\"https://ma.tt/?p=47306\";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://ma.tt/2017/05/exploiting-democracy/\";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:153:\"<p>One of my favorite talks from TED last week was by Laura Galante. The most hackable device on the planet is your own mind:</p>\n<p></p>\n<p> </p>\";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:\"Wed, 03 May 2017 19:48:42 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;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:60:\"WPTavern: Jetpack 4.9 Introduces EU Cookie Law Banner Widget\";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:29:\"https://wptavern.com/?p=69520\";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:71:\"https://wptavern.com/jetpack-4-9-introduces-eu-cookie-law-banner-widget\";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:2298:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/05/eu-cookie-law-banner-widget-jetpack.png?ssl=1\"><img /></a><a href=\"https://jetpack.com/2017/05/02/jetpack-4-9-widgets-and-improvements/\" target=\"_blank\">Jetpack 4.9</a> gives self-hosted WordPress users access to some of the widgets that are available on WordPress.com. One of the most useful ones for European websites is the new EU Cookie Law Banner widget. The WordPress plugin directory has <a href=\"https://wordpress.org/plugins/search/eu+cookie+law/\" target=\"_blank\">dozens of plugins related to cookie consent</a>, but Jetpack users can now get this feature bundled with the popular plugin.</p>\n<p>The widget launches a notice at the bottom of the screen where users can click to accept cookies. The widget banner text, color scheme, policy URL, and button text can be customized, and administrators can hide the banner based on different user behaviors.</p>\n<p>The EU Cooke Law is an online privacy directive that was introduced in 2011 with the objective of allowing website visitors the right to refuse cookies that reduce their privacy. Sites that serve primarily EU audiences are required to comply. Companies in the U.S. and outside the EU with no legal EU presence are not likely to have any consequences for not complying, as the law is difficult to enforce outside the EU.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/internet-defense-league-red-cat.png?ssl=1\"><img /></a>Jetpack 4.9 also adds a new Flickr widget and one for the <a href=\"https://www.internetdefenseleague.org/\" target=\"_blank\">Internet Defense League</a>, an organization dedicated to defending internet freedom. The widget lets users select from three different badges to show support. Note that this widget does not sign the website up to broadcast specific campaigns. That feature is available in the <a href=\"https://wordpress.org/plugins/cat-signal/\" target=\"_blank\">Internet Defense League Cat Signal</a> plugin.</p>\n<p>This release also includes several minor fixes and improvements under the hood. Check out the full <a href=\"https://wordpress.org/plugins/jetpack/#developers\" target=\"_blank\">changelog</a> on WordPress.org to see everything included in version 4.9.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Wed, 03 May 2017 17:55:27 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;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: Manage Multiple Social Media Accounts in WordPress With Social Media Suite\";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:29:\"https://wptavern.com/?p=69526\";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:95:\"https://wptavern.com/manage-multiple-social-media-accounts-in-wordpress-with-social-media-suite\";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:2613:\"<p>Managing social media accounts across multiple networks can be a cumbersome task. <a href=\"https://wordpress.org/plugins/social-web-suite/\">Social Media Suite</a> by <a href=\"https://www.linkedin.com/in/tinatodorovic/\">Tina Todorovic</a> and <a href=\"https://twitter.com/dejanmmarkovic\">Dejan Markovic</a>, based in Toronto, Canada, aims to make managing those accounts a breeze.</p>\n<p>At its core, Social Media Suite is a social media marketing management platform. To use it, you’ll first have to install the <a href=\"https://wordpress.org/plugins/social-web-suite/\">Social Media Suite connector Plugin</a> to connect your site to the service.</p>\n<p>Once activated, click the Go to Control Panel button which loads Social Web Suite’s control panel where you can connect social media accounts.</p>\n<p><img /></p>\n<p>I highly recommend that you open the control panel in a new browser tab as opening it in the same browser tab makes it difficult to browse back to the WordPress backend.</p>\n<p>Through Social Web Suite, users can publish or schedule Tweets and other messages across social networks such as Facebook. After connecting my Twitter account, I was able to publish a Tweet from the site’s interface.</p>\n<img />Social Media Suite Twitter Interface\n<p>Social Web Suite includes a number of sharing options. You can configure whether or not to share posts, pages, or both, how many times they can be shared, if the featured image is displayed, and if content is shared at the same time it’s published.</p>\n<p>Other configuration options include, message formatting, hashtag support, which categories to include or exclude, and the ability to exclude specific pages or posts.<img /></p>\n<p>To see how well messages are performing, Social Web Suite offers an analytics dashboard that displays a similar set of statistics provided by Twitter. This allows you to quickly see which messages are having the most impact.</p>\n<img />Social Media Suite Analytics Dashboard\n<p>As far as privacy is concerned, Social Media Suite stores marketing management content on its servers and will not ask users for their login information. The service is currently in Beta and is available by <a href=\"https://socialwebsuite.com/get-your-invitation/\">invitation only</a>. I tested <a href=\"https://wordpress.org/plugins/social-web-suite/\">Social Media Suite</a> on WordPress 4.7.4 and didn’t encounter any issues. If you’re looking for a service to manage your social media marketing strategy, consider giving Social Media Suite a try.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Wed, 03 May 2017 16:09:46 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;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:36:\"HeroPress: Notes From My Former Self\";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:56:\"https://heropress.com/?post_type=heropress-essays&p=1759\";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:55:\"https://heropress.com/essays/notes-from-my-former-self/\";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:11029:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/05/050317-min-1-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Sleep more, worry less, rely on those around you, and just get on with doing what you do best.\" /><p>I’ve written and rewritten this essay so many times now I’ve forgotten what it originally looked like. In the beginning it was going to be the short(ish) story of my first year with WordPress and the lessons I’ve learned about myself. It always ends up being a long and boring story of a year of my life without ever getting to the purpose of why I want to share it. I’ve decided to over simplify it as much as possible, in order to get to the ‘why’. If you really want to read about my ‘WordPress Year 1’ you can probably put most of it together from reading my blog for 2016.</p>\n<p>So in the spirit of TL;DR:</p>\n<p>After an amazing first WordCamp experience at WordCamp Cape Town 2015 I chose the path of freelance WordPress developer. My current situation doesn’t lend itself to being employed full time and I decided (at the time possibly stupidly) that building WordPress websites was what I was going to do. It would be easy right?</p>\n<blockquote><p>I had a developer license for the Divi theme and all I had to do was find small business clients to build websites for. What could possibly go wrong?</p></blockquote>\n<p>I spent the first year banging my head against a quite a few walls, trying to expand my mind, my skills and my experience to reach a goal that, for me anyway, was wholly unobtainable. In the end I realised the what I needed to do was trust in myself and my experience, find a better system for obtaining work and focus on the areas that I was actually good at.</p>\n<p>I also learned the importance of community.</p>\n<p>What follows are the notes I would send to myself, were I able to send a time capsule back one year, to be read on January 1, 2016. Hopefully it helps someone else out there.</p>\n<h3>The WordPress community is an amazing thing.</h3>\n<p>I’ve often said that the reason everyone in the community is (mostly) so open and welcoming and helpful is that it was founded in the spirit of open source. Open source software at it’s core is about being free, open and available, the ability to question a specific solution and find answers to problems and being able to extend and adapt to new requirements. The WordPress community is that in spades. Sure, there are some aspects of it that can get brutal or nasty, sometimes some parts of the community feel unheard or ignored and when I read about things like that it makes me sad. In my experience it has been a positive part of my journey.</p>\n<blockquote><p>From the local WordPress South Africa Slack team, to the two WordCamps in Cape Town and Johannesburg I attended this year, all the way to the international Slacks, forums and Facebook groups, almost everyone I’ve dealt with is positive and supportive.</p></blockquote>\n<p>I’ve contacted CEOs and owners of premium WordPress business, asking them questions via Slack. Every time they answered. In what corporate culture does the owner or CEO of a company take time to answer some random developer question? I’ve met some amazing people, locally and internationally, in person and online, and they have all been the same. Friendly, helpful and willing to answer questions. I can honestly say that without the help and support of the WordPress community I would have been able to make it ‘on my own’ last year.</p>\n<h3>Being a freelancer is more about finding your purpose and less about finding clients.</h3>\n<p>I spent the majority of 2016 trying to force myself down a new path. One where I had little or no experience and where I was surrounded by giants. My gut told me that clients would be looking for websites. So building websites with WordPress became the logical step. However I am not a web designer, a content strategist or an SEO expert. In the words of Jeremy Clarkson, ‘How hard can it be?’. I soon learned how hard. While it is good to try and expand on your weaknesses, trying to earn an income this way is eventually going to kill you. The path to true work/life fulfilment lies at the intersection of that which you love, that which you are good at, that which the world needs and (most importantly) that which you can be paid for (the Japanese call it ‘Ikigai’, roughly translated as ‘a reason for being’).</p>\n<blockquote><p>The biggest mistake I made was thinking that because of WordPress there would be no work for a PHP developer.</p></blockquote>\n<p>I soon learned that the reality was that because of WordPress there was an abundance of work for a PHP developer, I was just looking at it the wrong way. Once I knew what my Ikigai was, finding the right platform and clients to match that became much, much easier.</p>\n<h3>Never judge your experience based on someone else.</h3>\n<p>I’ll be the first to admit, I’m not the most up to date of developers. I only recently really grasped the concepts of name spacing and I still don’t quite get the whole MySQL character set thing. And that is OK. Being a developer is more about solving a problem than the tools you use to do so. There isn’t one ‘right’ way to build a plugin. There are a few recommended ways, which often differ from each other in small but important ways but they are all ‘the right way’. The important thing is to pay attention to things like standards, simplicity and security. Everything else can be learned from others. The beauty of an open source project is that everyone is learning from the community. So whatever I don’t know I can learn from someone else. At the end of the day the community benefits and you benefit. (also, refer back to ‘The WordPress community is an amazing thing’).</p>\n<h3>Look after yourself.</h3>\n<p>These seem obvious, but I soon found myself in some very bad patterns. Sleep was the first to go. It is way too easy to end up working until 1 or 2am, ‘just to get this one thing finished’. That’s great if you can sleep in the next morning, but when you are guaranteed to be woken at around 7am by your 5 year old, it soon starts adding up.</p>\n<blockquote><p>Once the sleep deprivation starts the bad food choices kick in.</p></blockquote>\n<p>Coffee becomes more of a crutch than an enjoyment and meal time decision making is ruled more by what tastes nice than what is healthy. Eventually you end up getting sick for a week and you are so run down you get nothing done until you recover, meaning your earning potential lessens. So you start trying to work longer hours. It is a vicious cycle. The problem, however, is actually a bit deeper….</p>\n<h3>Your time is valuable.</h3>\n<p>The quickest way to the downward sleep/life cycle is to devalue yourself and your time.</p>\n<p>Learn to estimate better. Spend more (paid) time on researching the intricacies of a project to ensure you have thought about everything you can, then estimate accordingly. Otherwise you end up realising you missed something half way through, and you have to make a choice. Usually that choice is to suck up the time and add the feature. That is the wrong choice.</p>\n<p>Your time is valuable. It is better to admit to a client that you missed something and that you will need to adjust the time line or quote than to try and kill yourself to make it based on your original estimates. Worse case the client says no and cancels the project. Learn and apply the knowledge to the next one. Better case they agree to give you more time but not more money. Well at least you aren’t going to kill yourself to get it done. Best case they understand everyone is human. I’ve rarely found clients who don’t get it.</p>\n<h3>You are capable.</h3>\n<p>Have you ever experienced this? – You have a project coming up. You’ve done all the ground work and made sure you’ve estimated to the best of your abilities, but suddenly you are gripped with fear/concern/worry that the actual project is going to be above your capabilities. So you keep putting it off and do other less important things, trying to build up the courage to tackle it. When you eventually sit down and start you realise it is well within your capabilities and had you started sooner you would probably be done already, instead of now where you are a bit behind and you’ll have to either work in some extra time to make that deadline or come up with some excuse as to why you missed it.</p>\n<p>All. The. Damn. Time.</p>\n<p>Stop it. You can do it. You’ve done it a 100 times before. Trust in your experience and yourself.</p>\n<p>So in short, sleep more, worry less, rely on those around you and just get on with doing what you do best. It isn’t really much simpler than that. I’m still trying to figure out why I tried to make it more complicated than what it is, but perhaps that is another journey in the human psyche, for another day.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Notes From My Former Self\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Notes%20From%20My%20Former%20Self&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fnotes-from-my-former-self%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Notes From My Former Self\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fnotes-from-my-former-self%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fnotes-from-my-former-self%2F&title=Notes+From+My+Former+Self\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Notes From My Former Self\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/notes-from-my-former-self/&media=https://heropress.com/wp-content/uploads/2017/05/050317-min-1-150x150.jpg&description=Notes From My Former Self\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Notes From My Former Self\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/notes-from-my-former-self/\" title=\"Notes From My Former Self\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/notes-from-my-former-self/\">Notes From My Former Self</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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:\"Wed, 03 May 2017 11:00:42 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Jonathan Bossenger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;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:56:\"Akismet: Limited Time 20% Discount off all Jetpack Plans\";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:31:\"http://blog.akismet.com/?p=1931\";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:63:\"https://blog.akismet.com/2017/05/03/discount-off-jetpack-plans/\";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:1119:\"<p>As part of #SmallBusinessWeek, Jetpack and Akismet are offering a limited time 20% discount off all Jetpack’s <a href=\"https://jetpack.com/pricing/\">paid plans</a> — all of which include the Akismet service as well as other security essentials like automated backups and priority support.</p>\n<p>You can read more about why Akismet and Jetpack are the ideal WordPress plugins for small business websites over on the <a href=\"https://jetpack.com/2017/04/30/jetpack-the-ideal-small-business-plugin/\">Jetpack blog</a>.</p>\n<p>To take advantage of this offer, just use the code <span>SMALLBIZ</span> at checkout, and of course, if you have any questions, please don’t hesitate to <a href=\"https://jetpack.com/contact-support\">contact us</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1931/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1931/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1931&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";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:\"Wed, 03 May 2017 08:26:47 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Richard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;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: Seattle to Host WooConf 2017 in October, Conference to Focus on Developers\";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:29:\"https://wptavern.com/?p=69514\";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:94:\"https://wptavern.com/seattle-to-host-wooconf-2017-in-october-conference-to-focus-on-developers\";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:4507:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/05/wooconf.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://wooconf.com\" target=\"_blank\">WooConf</a>, the official WooCommerce developer’s conference, is returning for its third edition October 19-20, 2017. In line with previous years’ events that were hosted in major U.S. tech hubs (San Francisco and Austin), WooConf 2017 will be held in Seattle. The organizing team, which is made up of almost a dozen people from around the world of WooCommerce, is planning for 500 attendees.</p>\n<p>WooCommerce downloads have doubled from 12 million in 2016 to 24 million today. The plugin is active on more than 3 million websites and has a strong third-party plugin and theme ecosystem contributing to its growth.</p>\n<p>This year’s speaker lineup will feature more than 30 sessions aimed at developers, along with hands-on workshops. Organizers announced the event with a note that this edition of WooConf will cater specifically to developers:</p>\n<blockquote><p>Anyone who runs their business with WooCommerce will enjoy WooConf. However, we’re building out this year’s speaker list and workshops to appeal mainly to freelancers, agencies, WooExperts, and other developers working with WooCommerce on a daily basis.</p>\n<p>This includes anyone writing code, designing websites, or working with clients as a project manager or business owner. It also includes those of you who design, customize, and write code for your own store (or lend your services to a friend now and then).</p></blockquote>\n<p>Last year’s conference in Austin included content for both store owners and developers, and attendees were a mixture of experts and casual WooCommerce fans. The organizing team decided that the event could benefit from a more narrow focus.</p>\n<p>“Basically, we realized that we need to focus on either developers or store owners,” WooConf co-organizer Patrick Rauland said. “The content at last year’s WooConf was great. But you can’t have two priorities.</p>\n<p>“We want to have a conference that’s remarkable, meaning people talk about it. There are a lot of great WordPress events and a lot of great e-commerce events. We want people to talk about WooConf in both of those circles. And by focusing on one target we hope to achieve that.”</p>\n<p>Speaker submissions are already open and the suggested topics reflect this year’s developer focus:</p>\n<ul>\n<li>Running an Agency / Client Relations – Scoping projects, fostering repeat business, keeping projects on track, finding and hiring developers, productizing client functionality and so on.</li>\n<li>Extending WooCommerce – Using the REST API, JavaScript frameworks (React & Backbone), case studies on customization, tips and tricks for customizing specific parts of WooCommerce (emails, checkout flow, product pages and so on) and accessibility.</li>\n<li>Scaling – Anything from server-side, backend, frontend or case studies</li>\n<li>eCommerce Fundamentals – Creating a cohesive experience (between multiple sites, apps, mobile sites, Amazon, etc), personalization, conversion rate optimization</li>\n</ul>\n<p><a href=\"https://wooconf.com/product/early-bird-ticket/\" target=\"_blank\">Early bird tickets</a> for WooConf are on sale for $499 until July 1 when the price will go up $200.</p>\n<p>Organizers will also be hosting the Golden Ticket competition this year, which offers prospective attendees the chance to win an all-expenses-paid trip to the event in Seattle, including travel, accommodation, and admission to the conference. Developers who want to be considered are asked to create a video showing how they use WooCommerce and post it to Instagram. The call for submissions will kick off later this month and the competition has historically been fairly stiff. In 2014, <a href=\"https://woocommerce.com/2014/08/case-study-o-v-e-r-clothing/\" target=\"_blank\">Sinisa from OVER Clothing</a> won out over 2,000 other entrants.</p>\n<p>WooConf 2017 will take place at <a href=\"https://www.bellharbor.com/\" target=\"_blank\">Bell Harbor International Conference Center</a>, within walking distance of Pike Place Market, the Space Needle, and many hotels. For the thousands of WooCommerce developers and enthusiasts around the world who are not able to attend, a live streaming option will be available and recorded talks will be published after the event.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Wed, 03 May 2017 02:36:12 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;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:53:\"Akismet: Akismet WordPress Plugin 3.3.1 Now Available\";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:31:\"http://blog.akismet.com/?p=1928\";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:67:\"https://blog.akismet.com/2017/05/02/akismet-wordpress-plugin-3-3-1/\";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:1383:\"<p>Version 3.3.1 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>For a full list of the changes in this release, see the <a href=\"https://plugins.trac.wordpress.org/log/akismet/trunk?action=stop_on_copy&mode=stop_on_copy&rev=1649900&stop_rev=1604754+&limit=100&sfp_email=&sfph_mail=\">revision log</a>, but here are the highlights:</p>\n<ul>\n<li>A couple of bugs that could cause PHP warnings in the error log have been fixed.</li>\n<li>Performance has been improved by preventing some comments-specific code from running on pages without comments.</li>\n<li>Both the “Remove author URL” and link preview features now work after a comment is Quick Edited in wp-admin.</li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1928/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1928/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1928&subd=akismet&ref=&feed=1\" width=\"1\" height=\"1\" />\";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:\"Tue, 02 May 2017 19:15:34 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;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:39:\"Matt: Longreads and Original Journalism\";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:22:\"https://ma.tt/?p=47299\";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:56:\"https://ma.tt/2017/05/longreads-and-original-journalism/\";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:809:\"<p class=\"simple-headline\"><a href=\"http://www.niemanlab.org/2017/05/amid-the-wreckage-of-fallen-startups-longreads-is-increasing-the-original-reporting-it-funds/\">Amid the wreckage of fallen startups, Longreads is increasing the original reporting it funds</a>:</p>\n<blockquote>\n<p class=\"simple-headline\">Longreads has raised about $250,000 from “thousands of members” since it added memberships in 2012. The suggested monthly amount is now $5 a month or $50 a year, though readers can choose to donate any amount, and Armstrong said that the company’s gotten some thousand-dollar donations. All of that money now goes to pay authors, and WordPress.com matches every $1 from a reader with an additional $3, which clearly makes it a lot easier for Longreads to do what it wants to do.</p>\n</blockquote>\";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:\"Tue, 02 May 2017 04:52:32 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;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:80:\"WPTavern: WP Elevation is Focusing All Content on Mental Health for Month of May\";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:29:\"https://wptavern.com/?p=69499\";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:91:\"https://wptavern.com/wp-elevation-is-focusing-all-content-on-mental-health-for-month-of-may\";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:4356:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/05/tea.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://stocksnap.io/photo/04E3HNGAKH\">Jorge Garcia</a>\n<p>May is <a href=\"https://en.wikipedia.org/wiki/Mental_Health_Awareness_Month\" target=\"_blank\">Mental Health Awareness Month</a> in the US, dedicated to educating people about mental health and illnesses since 1949. WP Elevation is joining the observance this year with a special emphasis on freelancers and the tech industry. The company, which provides education for WordPress consultants, will be <a href=\"http://www.wpelevation.com/wp-elevation-mental-health-month/\" target=\"_blank\">focusing all of its content on mental health topics</a>, including blogs, podcasts, newsletters, and livestreams.</p>\n<p>The WP Elevation podcast will feature interviews with mental health experts on Thursdays throughout May:</p>\n<ul>\n<li>May 4: Ed Finkler from <a href=\"https://osmihelp.org/\" target=\"_blank\">Open Sourcing Mental Illness</a>, interviewed by Gin McInneny</li>\n<li>May 11: Cory Miller from <a href=\"https://ithemes.com/\" target=\"_blank\">iThemes</a>, interviewed by Kristina Romero</li>\n<li>May 18: Andrew Pearce from <a href=\"https://www.facebook.com/AnxietyTaskforce/\" target=\"_blank\">Anxiety Free Living</a>, interviewed by Cath Hughes</li>\n<li>May 25: Amy Felman – Psychologist and Podcast Presenter of <a href=\"http://weallwearitdifferently.com/\" target=\"_blank\">We All Wear it Differently</a>, interviewed by Mike Killen</li>\n</ul>\n<p>WP Elevation founder Troy Dean said various employees at the company have been affected by mental health issues and are often conscious of how digital life can keep people separated from each other.</p>\n<p>“I have experienced anxiety and depression in the past – to the point where I couldn’t get out of bed some days,” Dean said. “I work very hard to manage my mental health these days through exercise, family life, and hobbies, as well as working hard in business which I find fulfilling. We will be sharing some of our personal stories on our blog during May.”</p>\n<p>Focusing on mental health topics is a drastic change from WP Elevation’s normal business topics, but Dean said he hasn’t even thought about how it might affect the company’s revenue.</p>\n<p>“We all believe that mental health issues are still weighed down with a certain stigma and we want to encourage people to be more open in having these conversations,” Dean said. “I actually don’t care whether it affects my revenue or not. Without good mental health, revenue is meaningless.”</p>\n<p>Working within the WordPress community comes with its own set of unique mental health risks, as many people have their lives deeply embedded in online work. Those who work remotely or by themselves have a greater likelihood of feeling isolated and cut off from others.</p>\n<p>“The digital life can keep us isolated for periods of time as we toil away on our projects in front of our computers,” Dean said. “I’ve met a lot of WordPress users over the years at WordCamps who have confided in me that the events are so important because they get to connect with their tribe. I think there is also a risk of online bullying that can make people feel inadequate or ostracized.”</p>\n<p>WP Elevation will be supporting <a href=\"https://osmihelp.org/\" target=\"_blank\">Open Sourcing Mental Illness</a> (OSMI), a non-profit organization dedicated to supporting mental wellness and providing resources for those facing mental illness in the tech community. The company is <a href=\"https://osmihelp.org/donate\" target=\"_blank\">promoting OSMI’s fundraising campaign</a> throughout the month alongside raising awareness around mental health-related topics.</p>\n<p>“We have no measurable goals for this initiative,” Dean said. “It is not part of our marketing plan or some larger scheme for us. We have these conversations on a regular basis internally and some of our members have indicated it would be a good idea to have them publicly, so that’s what this is all about. If we can help one person feel less isolated or find the courage to reach out and ask for help when they need it, I’ll consider it a success.”</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Tue, 02 May 2017 03:59:25 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;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:102:\"WPTavern: 10up Releases WP Docker, an Open Source Docker Configuration for Local WordPress Development\";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:29:\"https://wptavern.com/?p=69468\";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:112:\"https://wptavern.com/10up-releases-wp-docker-an-open-source-docker-configuration-for-local-wordpress-development\";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:3363:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/02/docker-logo.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://10up.com/blog/2017/wp-docker/\" target=\"_blank\">WP Docker</a> is a new project from 10up that makes it easy to set up a local WordPress development environment with Docker. Last year 10up worked with <a href=\"https://www.joyent.com/\" target=\"_blank\">Joyent</a>, a cloud infrastructure company, to create a production-ready implementation of WordPress in Docker. After their experience with this project, 10up created WP Docker as a simple, open source development environment based on <a href=\"https://docs.docker.com/compose/\" target=\"_blank\">docker-compose</a>.</p>\n<p>Docker is a virtualization technology that allows developers to work on websites and applications in isolated containers. It has many advantages over Vagrant, which takes up a lot more space with each virtual machine having its own operating system included. Docker runs off of a single Linux instance and the containers hold the application and its dependencies.</p>\n<p>“While still viable, VVV, Vagrant, and Virtual Box/Hyper-V take up extreme disk space and are slow to provision, start up, and SSH into,” 10up Director of Engineering Taylor Lovett said. “Because of this, engineers tend to use one ‘mega’ VVV install for all of their development websites. This workflow poses a number of problems: system service version and configuration ‘normalization’ across all projects (i.e. PHP 7 on everything when some projects run PHP 5.6 in production), and legacy clutter (i.e. old websites and system packages undeleted).”</p>\n<p>WP Docker is much more lightweight than VVV and starts up much faster. It comes packaged with Elasticsearch by default, so 10up’s <a href=\"https://wordpress.org/plugins/elasticpress/\" target=\"_blank\">ElasticPress</a> plugin works out-of-the-box. The environment includes the following technologies by default:</p>\n<ul>\n<li>PHP7</li>\n<li>MariaDB</li>\n<li>NGINX</li>\n<li>Elasticsearch</li>\n<li>Gearman</li>\n<li>Memcached</li>\n</ul>\n<p><a href=\"https://github.com/Varying-Vagrant-Vagrants/VVV\" target=\"_blank\">VVV</a> was started by a former 10up employee, Jeremy Felt, and the company still uses the project for local development in many cases. Certain instances, however, may lend themselves more to using VVV as opposed to WP Docker. Lovett said those include projects that are highly dependent on specific versions of system packages, such as PHP 5.6 and Elasticsearch 5.1.</p>\n<p>“WP Docker lends itself well to enterprise clients that want to version control an environment specifically for their web application to be distributed to developers,” Lovett said. “This is common for large clients with large development teams. WP Docker lets a team standardize on a local setup which decreases bugs and ‘I see this but you don’t’ issues.”</p>\n<p>Lovett said teams at 10up are still using VVV more often than WP Docker since it’s still quite new, but the company plans to let project requirements and team preferences drive adoption. The project is <a href=\"https://github.com/10up/wp-docker\" target=\"_blank\">available on GitHub</a> and has nearly 80 stars less than a week after its release.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Mon, 01 May 2017 19:52:08 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;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:61:\"BuddyPress: Total Wellness Challenge: Fitness with BuddyPress\";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:32:\"https://buddypress.org/?p=265691\";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:80:\"https://buddypress.org/2017/05/total-wellness-challenge-fitness-with-buddypress/\";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:9175:\"<div><em>This a guest post by Tara Claeys (<a href=\"https://profiles.wordpress.org/taraclaeys\">taraclaeys</a>) of <a href=\"https://designtlc.com/\">Design TLC, LLC</a>. When she’s not working, Tara enjoys cycling, running, watching movies and spending time with friends and family.</em></div>\n<p>Peer reviewed by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/boonebgorges/\" rel=\"nofollow\">@boonebgorges</a>.</p>\n<p><a href=\"http://twcfit.com/\"><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/twc.jpg\" alt=\"Total Wellness Challenge site\" width=\"1131\" height=\"619\" class=\"aligncenter size-full wp-image-265694\" /></a></p>\n<h2>Background</h2>\n<p>Ginny Wright started an outdoor boot camp fitness business, <a href=\"http://bodybyginny.com/\">Body By Ginny</a>, in Arlington, Virginia in 2003. The business grew and Ginny expanded into nutrition and wellness coaching. As a result, she began offering “Challenges” on printed sheets to her clients a few years later. They could track their daily wellness activities (nutrition, fitness, and mental health) on the sheet, giving themselves points for good behaviors and subtracting points for negative activities. This “game” became popular among her clients, just as online wellness communities started offering similar experiences on websites and apps.</p>\n<p>Tara Claeys, a fitness client and friend, offered to help Ginny expand her existing WordPress site by adding a membership component, allow commenting to create interaction between members, and also include the ability for people to track their “Challenge Points” online using a Google Spreadsheet. This was the rudimentary beginning of the online program for her Challenges.</p>\n<h2>Implementation</h2>\n<p>In 2015, Ginny decided to brand her Challenges and decided to launch a separate website for this program, The <a href=\"https://twcfit.com/\">Total Wellness Challenge</a> (TWC). Her goal was to expand the program beyond her fitness clients and to offer branded Challenges for corporate wellness programs. Tara worked with her to create a multisite installation with BuddyPress and MemberPress that would have:</p>\n<ul>\n<li>Subsites for individual, private Challenges in corporate and other groups</li>\n<li>Restricted access to Challenges for members only</li>\n<li>Allow a “Reflections” commenting page for Challengers to interact with each other</li>\n<li>Point Logging for 3 components of the Challenge\n<ul>\n<li>Limit submission to same day after 8pm until next day until 5pm. </li>\n<li>Allow users to select one day to be a “Free” day where they would receive the maximum nutrition score, no matter what they ate</li>\n<li>Add a “bonus” point automatically if a user logs 5 consecutive 12-point days</li>\n<li>Show points for all Challengers on a Totals Page</li>\n<li>Limits to only one entry per user per day</li>\n<li>Each category (nutrition, fitness, lifestyle) has limit on max points per day </li>\n<li>Ability for admin to edit user points on the back end</li>\n</ul>\n</li>\n</ul>\n<p>Tara hired <a href=\"https://twitter.com/tomaransom?lang=en\">Tom Ransom</a> of <a href=\"https://www.1bigidea.com/\">One Big Idea</a> to help develop a custom plugin that would connect MemberPress with BuddyPress. They chose BuddyPress because is primed for multisite configuration, it worked well with MemberPress, and is very customizable. Plus, the BuddyPress Groups functionality was a good fit for the separate Challenges. For TWC, each Challenge is a unique BuddyPress Group, set up on the front end by the admin. </p>\n<p>The TWC is a point-logging game at its core. Participants keep track of their activity throughout each day for about 4 weeks and must log in to the website each day to record their points. There are 3 components of the Challenge:</p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/groups-1024x313.png\" alt=\"TWC groups\" width=\"700\" height=\"214\" class=\"aligncenter size-large wp-image-265695\" /></p>\n<p><strong>1. Nutrition</strong>: Players can earn up to 12 points per day. Everyone starts the day with 5 points, and can gain points for positive food choices, such as avoiding white flour, eating 3 cups of greens and drinking a specified amount of water based on their weight. Players lose points for unhealthy choices, such as eating too much sugar, eating processed foods, and consuming more than one serving of beer or wine.</p>\n<p><strong>2. Fitness</strong>: Players can earn up to 2 points per day. They earn one point for doing 30 minutes or more of exercise per day and another point for stretching for at least 10 minutes.</p>\n<p><strong>3. Lifestyle</strong>: Players earn one point for posting a daily Reflection on the twcfit.com website, and a second point for participating in the lifestyle challenge of the week. Each week, a different lifestyle activity is listed, including behaviors such as noting 3 things you are grateful for each day, getting 7 hours of sleep, or doing an act of kindness for someone. A maximum of 2 lifestyle points can be earned each day.</p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/bbg-log-886x1024.jpg\" alt=\"Log Points\" width=\"700\" height=\"809\" class=\"aligncenter size-large wp-image-265720\" /></p>\n<p>The participant can go to the Totals page to check their score against other players.</p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/totals-1024x466.png\" alt=\"Totals page\" width=\"700\" height=\"319\" class=\"aligncenter size-large wp-image-265697\" /></p>\n<p>Tom’s plugin includes code that directs the PayPal IPN to the respective subsite for MemberPress (MP) purchases. In addition, this plugin adds the new MP user into the corresponding BuddyPress group once the MP transaction was returned compete. (twc-fit-challenges-member-management.php)</p>\n<p><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/twc-customplugin.png\" alt=\"TWC custom plugin\" width=\"884\" height=\"712\" class=\"aligncenter size-full wp-image-265698\" /></p>\n<p>Other components of the custom plugin include:</p>\n<ul>\n<li>buddypress.php: sets up BuddyPress (message for logged out users, custom date picker)</li>\n<li>Challenges-bp-points.php: Extends BP Group functionality: add_points => adds to database</li>\n<li>admin-menu-points — UI for front end</li>\n<li>admin-points — Doing work</li>\n<li>admin-menus — puts nav in Dashboard</li>\n<li>twcfit-challenges.php — timezones – offset GMT, returns city timezone (php only reads city)</li>\n</ul>\n<p>In addition, a separate twc-utility plugin hides some BuddyPress content that is not needed and redirects login to BuddyPress.</p>\n<p>Tara customized the style sheets and some BuddyPress theme files to add a custom button to the BuddyPress Group page, and edited the BuddyPress navigation and styles. For example:</p>\n<ul>\n<li>activity > post-form.php customized “What is your reflection for the xx Challenge today, name?”</li>\n<li>groups > single > group-header.php — Adds RESOURCES button to header<br /><img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/bp-customization.jpg\" alt=\"BuddyPress Customization\" width=\"235\" height=\"139\" class=\"alignnone size-full wp-image-265719\" />\n</li>\n</ul>\n<p>The site also uses the BuddyPress Custom Profile Menu and Custom User Profile Photo plugins.</p>\n<h2>Current Status</h2>\n<p>Over the past 13+ years, Ginny has hired 4 instructors, expanded her business to McLean, Virginia, and wrote the “<a href=\"http://bodybyginny.com/good-food-recipe-book-by-ginny-wright/\">Good Food Recipe Book</a>” which is available for sale on her website. At this time, Ginny is still deciding whether she wants to invest in marketing Total Wellness Challenge or keep it small, mostly based on word of mouth. The increased competition in this space has made it harder to gain exposure without a large marketing budget.</p>\n<p>The <a href=\"https://twcfit.com/\">Total Wellness Challenge</a> website has been running well for a little over a year. Six Challenges have been conducted so far, and participants have loved interacting with each other. Tara and Tom are happy with the positive feedback on their customized “gamification” of BuddyPress and how it has helped provide additional clients and exposure for Ginny’s outdoor boot camps. </p>\n<div>\n<img src=\"https://buddypress.org/wp-content/uploads/1/2017/05/taraclaeys.jpeg\" alt=\"Tara Claeys\" width=\"150\" height=\"150\" class=\"alignleft size-full wp-image-265693\" /> <em><a href=\"https://profiles.wordpress.org/taraclaeys\">Tara Claeys</a> of <a href=\"https://designtlc.com/\">Design TLC, LLC</a> provides custom website and graphic design services, with a focus on creating effective, clean and personal communication platforms for small businesses. Tara has a marketing background, combined with design and website coding expertise. Tara is the proud recipient of the Arlington Chamber of Commerce 2016 “Best Technology Business Award.”<br />\nLinks: <a href=\"https://twitter.com/design_tlc\">Twitter</a>, <a href=\"https://www.linkedin.com/in/taraclaeys\">Linkedin</a> </em>\n</div>\n<p> </p>\";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:\"Mon, 01 May 2017 15:50:35 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"HeroPress: Scholarship Update\";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:29:\"https://heropress.com/?p=1771\";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:41:\"https://heropress.com/scholarship-update/\";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:2731:\"<img width=\"960\" height=\"639\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/04/ipad-uandr-1-1024x682.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Two hands holding an ipad so we can see the screen.\" /><p>The <a href=\"https://heropress.com/up-running-scholarship-heropress-wpshout/\">Up and Running Scholarship</a> has been open for 10 days now, with 9 more to go! We’ve gotten many applications, from all of the world. I’ve been really pleased with the diversity of the applicants. They really are all over the map, both in location and gender.</p>\n<p>Several people have come to me privately asking if they should apply, if perhaps they’re too privileged to qualify. I’ve encouraged everyone to apply. We have some very wise people on the selection board, and I have no doubt they’ll make sure the winners are the best fit.</p>\n<p>Good wishes to all!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Scholarship Update\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Scholarship%20Update&via=heropress&url=https%3A%2F%2Fheropress.com%2Fscholarship-update%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Scholarship Update\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fscholarship-update%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fscholarship-update%2F&title=Scholarship+Update\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Scholarship Update\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/scholarship-update/&media=https://heropress.com/wp-content/uploads/2017/04/ipad-uandr-1-150x150.png&description=Scholarship Update\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Scholarship Update\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/scholarship-update/\" title=\"Scholarship Update\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/scholarship-update/\">Scholarship Update</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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:\"Mon, 01 May 2017 13:59:18 +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:\"\";}}}}}i:44;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:68:\"Post Status: Maintaining Legacy WordPress Websites — Draft podcast\";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:31:\"https://poststatus.com/?p=36610\";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:75:\"https://poststatus.com/maintaining-legacy-wordpress-websites-draft-podcast/\";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:1903:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Joe Hoyle — the CTO of Human Made — and Brian Krogsgard.</p>\n<p>Brian and Joe discuss many of the factors that are a part of maintaining a website for the long term. They discuss it both in the sense of when you own the site (like Brian with Post Status), and when you are doing long-term client work (like Human Made with retainers).</p>\n<p>There are several things to consider, whether it’s in your own code, or the decisions you make on which third party developer’s tools to use.</p>\n<p><!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/68341.mp3\">https://audio.simplecast.com/68341.mp3</a><br />\n<a href=\"https://audio.simplecast.com/68341.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"http://semver.org/\">Semantic Versioning</a></li>\n<li><a href=\"https://woocommerce.wordpress.com/2017/04/04/say-hello-to-woocommerce-3-0-bionic-butterfly/\">WooCommerce 3.0 and moving to SemVer</a></li>\n</ul>\n<h3>Sponsor: SearchWP</h3>\n<p>SearchWP makes WordPress search better. Instantly improve your site search without writing a line of code! SearchWP enables custom algorithms, searching custom fields, product data, and much more. Improve your site’s search today with our newest partner, <a href=\"https://searchwp.com\">SearchWP</a>.</p>\";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:\"Sun, 30 Apr 2017 14:31:59 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Katie Richards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"HeroPress: HeroPress Geography: Eastern Europe\";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:29:\"https://heropress.com/?p=1766\";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:57:\"https://heropress.com/heropress-geography-eastern-europe/\";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:3924:\"<img width=\"960\" height=\"399\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/04/heropress_eastern_europe-1024x426.png\" class=\"attachment-large size-large wp-post-image\" alt=\"Google map of eastern Europe.\" /><p>I don’t have nearly as many countries from Eastern Europe as I’d like. The ones I do have are along the western edge. Several of the countries represented have more than one essay from them.</p>\n<p>Also of note, the first HeroPress essay ever came from Ukraine, and is listed here.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/finding-your-place/\">Finding Your Place</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/wordpress-mantra-mine/\">The WordPress Mantra Is Mine Too</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/really-no-excuse/\">You Really Have No Excuse</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/taking-chance-wordpress/\">Taking A Chance With WordPress</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/rebirth/\">Rebirth</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/growing-a-business-in-europe-with-wordpress/\">Growing a Business in Europe with WordPress</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/even-crisis-has-options/\">Even Crisis Has Options</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/blogging-solopreneurship-terrorism/\">Blogging, Solopreneurship, & Terrorism</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: HeroPress Geography: Eastern Europe\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=HeroPress%20Geography%3A%20Eastern%20Europe&via=heropress&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-eastern-europe%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: HeroPress Geography: Eastern Europe\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fheropress-geography-eastern-europe%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fheropress-geography-eastern-europe%2F&title=HeroPress+Geography%3A+Eastern+Europe\" rel=\"nofollow\" target=\"_blank\" title=\"Share: HeroPress Geography: Eastern Europe\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/heropress-geography-eastern-europe/&media=https://heropress.com/wp-content/uploads/2017/04/heropress_eastern_europe-150x150.png&description=HeroPress Geography: Eastern Europe\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: HeroPress Geography: Eastern Europe\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/heropress-geography-eastern-europe/\" title=\"HeroPress Geography: Eastern Europe\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/heropress-geography-eastern-europe/\">HeroPress Geography: Eastern Europe</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";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, 29 Apr 2017 22:45:10 +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:\"\";}}}}}i:46;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:64:\"WPTavern: Shopify Discontinues Its Official Plugin for WordPress\";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:29:\"https://wptavern.com/?p=69415\";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:75:\"https://wptavern.com/shopify-discontinues-its-official-plugin-for-wordpress\";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:2735:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/04/shopify-logo.jpg?ssl=1\"><img /></a></p>\n<p><a href=\"https://wordpress.org/plugins/shopify-ecommerce-shopping-cart/\" target=\"_blank\">Shopify’s official plugin for WordPress</a> was removed from the plugin directory this week. The plugin allowed users to create “Buy Buttons” for products from their Shopify stores and insert them into WordPress posts and pages using a shortcode. It was built by <a href=\"https://webdevstudios.com/\" target=\"_blank\">WebDevStudios</a> and had approximately 9,000 active installations before it was removed.</p>\n<p>Shopify’s <a href=\"https://help.shopify.com/manual/sell-online/buy-button/wordpress-for-shopify\" target=\"_blank\">documentation</a> says the plugin has been discontinued and will not be supported after June 30, 2017. WordPress users who want to display Shopify products on their sites are now instructed to <a href=\"https://help.shopify.com/manual/sell-online/buy-button/create-buy-button\" target=\"_blank\">create a Buy Button for a product or collection</a> and paste the embed code into WordPress instead.</p>\n<p>The WordPress plugin team would not comment on why the plugin was removed, but a support representative from Shopify said it was outdated and difficult to maintain.</p>\n<p>“The reason it was removed is that it was being replaced by Buy Button, which is a better way of selling in WordPress,” Shopify customer support representative Jacquelyn Failano said. “The WordPress plugin was built by a third party and even if we support it, it could break at any time as we make future updates to the Buy Button channel.”</p>\n<p>Failano said that by switching from using the plugin to creating Buy Buttons with Shopify, users will have access to updated features, including fonts, colors, layouts, buttons, and multiple images on variants. Merchants will also be in a better position to take advantage of future updates.</p>\n<p>“The plugin uses older code and methods that will no longer be updated or supported,” Failano said. “There is no longer a dedicated development team for it. This means that there are no resources to maintain or rebuild the plugin.”</p>\n<p>Failano would not confirm whether or not the plugin was removed from the directory by Shopify at the company’s discretion or whether it was forcibly removed by WordPress for a violation of the guidelines.</p>\n<p>“I’m afraid I cannot confirm on that part – the main reason why it was discontinued was because the plugin uses older code and methods that will no longer be updated or supported,” Failano said.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Fri, 28 Apr 2017 02:02:10 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;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:92:\"WPTavern: How the San Francisco WordPress Meetup is Using Open Collective to Fund Activities\";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:29:\"https://wptavern.com/?p=69286\";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:103:\"https://wptavern.com/how-the-san-francisco-wordpress-meetup-is-using-open-collective-to-fund-activities\";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:5065:\"<p>In 2016, WordPress meetups had the fastest growth the community has seen in five or six years with more than 62,566 people attending in 58 different countries. Meetups are the seeds of future WordCamps. These local gatherings help users further their WordPress skills and underpin the community’s growth across the globe.</p>\n<p>Funding a local meetup can be a challenge, as organizers often have to seek out sponsors just like a WordCamp but at a smaller scale. The San Francisco WordPress meetup (WPSFO) is trying something new by publicly managing its budget and expenses with <a href=\"https://opencollective.com/wordpress-sf\" target=\"_blank\">Open Collective</a>. Last week we featured the service in an <a href=\"https://wptavern.com/open-collective-is-a-new-transparent-way-to-fund-open-source-projects\" target=\"_blank\">article</a> and WPSFO lead organizer Shannon Dunn commented on his meetup’s experience with it so far.</p>\n<p>“It creates a level of transparency for the whole community and lets current and prospective customers understand where the money goes,” Dunn said. “I’d say we’re pretty happy with it and it’s an integral part of managing our meetup.”</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/04/wpsfo.png?ssl=1\"><img /></a></p>\n<p>Dunn started attending and helping out with WPSFO in 2011 and stepped up to be lead organizer at the beginning of 2016. Former lead organizer Zach Berke, who started in 2007, was the one who initially suggested the idea of using Open Collective.</p>\n<p>“Before we started with Open Collective, sponsors paid for things directly,” Dunn said. “We’ve had various host sponsors (Automattic, Exygy, Pantheon) that have provided meeting space, food, and drinks. These hosts have always paid for the food directly. We also had a relationship with WPEngine at one point. They paid a videographer to film the meetups. All other expenses, usually for minor things, were paid for by the organizers.”</p>\n<p>Dunn said that Open Collective has helped to reduce the out-of-pocket expenses for meetup organizers, as it provides a straightforward process for posting expenses and getting reimbursed.</p>\n<p>“Funding a meetup can be pretty tough,” Dunn said. “It’s great that we have hosts to cover the big items, but various other expenses come up. Those small things are usually paid for by the organizers. Also, there are times when one of our primary hosts can’t provide a space to meet. We have several alternative meeting spaces but not all of them provide food and drinks. On those occasions, organizers have paid for the food and drink out of pocket. We could have gone without, but we try to keep each meetup a consistent experience.”</p>\n<p>Dunn said the team wanted to cover these costs without digging into the pockets of the organizers, who already volunteer a lot of time and energy to the meetup. They do not charge for the events and don’t plan on doing it in the future, so having additional funds on hand became a priority.</p>\n<p>“Pia from Open Collective reached out to Zach about a year ago,” Dunn said. “Zach had a prior relationship with another OC founder, Xavier, from his early Storify days. Zach agreed to sign up for OC because it seemed to address a pain point. Zach handed the reins of OC to Michelle and I, who have brought sponsors onto the platform.”</p>\n<p>Dunn said using Open Collective has had many positive advantages over the previous system WPSFO had for managing funds. Receiving donations and submitting expenses is now streamlined into a transparent pipeline. The meetup has an estimated annual budget of $6,658, based on current donations.</p>\n<p>“Being able to provide recognition to our sponsors is a big plus,” Dunn said. “It’s worth noting that this is a young and ever-evolving platform so with that you’re provided direct access to Open Collective’s front line, which is beneficial in addressing any questions or concerns that arise.”</p>\n<p>Dunn said using Open Collective has opened up additional possibilities, like making WPSFO t-shirts to sell to members and the general public. Having money in the meetup account means the organizers can do it without having to pre-sell the shirts.</p>\n<p>“It’s not like we’re floating in cash now, but we have little bit of money to work with,” Dunn said. “It feels great to have that and we’re deeply appreciative of our sponsors for making it possible.”</p>\n<p>WPSFO is one of <a href=\"https://opencollective.com/discover?show=meetup\" target=\"_blank\">23 meetups</a> that have started managing their budgets and funds through Open Collective. Other early adopters of the service include multiple WWCode meetups, Women Who Code Atlanta, and SF Data Science Meetup, with budgets ranging from a few hundred dollars to more than $25,000.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 27 Apr 2017 18:55:29 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;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:85:\"WPTavern: WordCamp US 2017 Ramps Up Ticket Sales, Organizers Plan for 2,500 Attendees\";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:29:\"https://wptavern.com/?p=69357\";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:94:\"https://wptavern.com/wordcamp-us-2017-ramps-up-ticket-sales-organizers-plan-for-2500-attendees\";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:2418:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/04/wordcamp-us-nashville.jpeg?ssl=1\"><img /></a></p>\n<p>Promotion for <a href=\"https://2017.us.wordcamp.org\" target=\"_blank\">WordCamp US 2017 in Nashville</a>, December 1-3, is now in full swing, as organizers have ramped up social media efforts to stimulate ticket sales. Instead of releasing batches of tickets in stages, all WordCamp US tickets are on sale at once.</p>\n<p>“Our goal is to sell between 2,000 and 2,500, but we could accommodate more,” marketing lead Laura Byrne-Cristiano said. “We will also again have a livestream that is fully closed captioned as it was the last two years. Folks who can’t make it to Nashville from around the globe can see what’s happening in real time.”</p>\n<p><a href=\"http://www.nashvillemusiccitycenter.com/\" target=\"_blank\">Music City Center</a> was selected as the official venue. It is within walking distance to several of the city’s attractions and museums. Last week organizers announced <a href=\"https://2017.us.wordcamp.org/2017/04/21/renaissance-nashville-wcus-2017-official-hotel/\" target=\"_blank\">The Renaissance Nashville Hotel</a> as the official hotel for the event, which is also within walking distance of the venue and will offer a special discounted rate for attendees.</p>\n<p>“At this stage of the game, ticket sales are light which is to be expected with an event is that is eight months out,” Byrne-Cristiano said. The team plans to release more specific numbers in the fall once the full slate of speakers has been announced. Byrne-Cristiano said speaker submissions will be open within the next few days.</p>\n<p>“While we would like to see every seat filled, our focus is on putting together a high quality camp for the community,” Byrne-Cristiano said.</p>\n<p>You can sign up on the <a href=\"https://2017.us.wordcamp.org/\" target=\"_blank\">WordCamp US website</a> to subscribe to the latest news for the event or follow <a href=\"https://twitter.com/WordCampUS/\" target=\"_blank\">@WordCampUS</a> on Twitter. If you have an Android device, check out the <a href=\"https://play.google.com/store/apps/details?id=org.wordcamp.android&rdid=org.wordcamp.android\" target=\"_blank\">WordCamp Android app</a> to add the event to your calendar and follow updates on speakers and the schedule.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Thu, 27 Apr 2017 03:26:32 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;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:115:\"WPTavern: Watsonfinds WordPress Plugin Uses IBM’s Watson to Determine Most Likely Emotional Response From Readers\";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:29:\"https://wptavern.com/?p=69392\";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:123:\"https://wptavern.com/watsonfinds-wordpress-plugin-uses-ibms-watson-to-determine-most-likely-emotional-response-from-readers\";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:3557:\"<p>One of the most difficult things about writing online is expressing tone and emotion. Emoticons and Emoji help, but what if there was a tool that uses artificial intelligence to determine the emotional response readers are most likely to have after consuming your content?</p>\n<p>That’s the idea behind <a href=\"https://wordpress.org/plugins/watsonfinds/\">Watsonfinds</a>, a free WordPress plugin created by Alfredo Gutiérrez and Max Ortu. Using a complex algorithm, Watsonfinds uses <a href=\"https://www.ibm.com/watson/\">IBM’s Watson</a> to understand content like a human by reading and interpreting complete sentences, the reader’s language, and its context.</p>\n<p>Once activated, a new button is added to the editor toolbar. Clicking the button will send the content through an API to IBM’s Watson for analysis.</p>\n<p><img />Watsonfinds Toolbar ButtonWhen an analysis is completed, the results are displayed in a modal window. The report is broken down into five emotions: joy, sadness, anger, disgust, and fear.</p>\n<p><img />Watsonfinds AnalysisI submitted five posts of various length and each report was generated quickly. Here are the posts I submitted along with the most likely emotional response from readers.</p>\n<ul>\n<li><a href=\"https://wptavern.com/automattic-to-close-san-francisco-office\">Automattic to Close San Francisco Office</a> – Sadness</li>\n<li><a href=\"https://wptavern.com/new-wordpress-plugin-shows-users-where-a-plugins-settings-link-is-upon-activation\">New WordPress Plugin Shows Users Where a Plugin’s Settings Link Is Upon Activation</a> – Sadness</li>\n<li><a href=\"https://wptavern.com/wordpress-4-7-4-fixes-visual-editor-incompatibility-with-upcoming-version-of-chrome\">WordPress 4.7.4 Fixes 47 Issues</a> – Sadness</li>\n<li><a href=\"https://wptavern.com/heropress-partners-with-wpshout-to-offer-wordpress-education-scholarships\">HeroPress Partners With WPShout to Offer WordPress Education Scholarships</a> – Joy</li>\n<li><a href=\"https://wptavern.com/headway-themes-appears-to-be-dying-a-slow-death\">Headway Themes Appears to be Dying a Slow Death</a> – Anger</li>\n</ul>\n<p>Within the report is a timeline where you can compare results as you add or remove words to the post.</p>\n<p>During testing, I found the timeline confusing to use as I thought I had to save the post as a draft after each edit to generate a revision on the timeline. To use the timeline, you need to make changes to a post without saving it and then click the Watsonfinds button to generate a new report.</p>\n<p>Being able to see which words are generating the emotions depicted in the report would be a nice feature to have. Gutiérrez says that this feature is in the works and will be in the commercial version of the plugin. The More Insights tab in the report is an advertisement for the premium version which is not yet available.</p>\n<p>I tested the plugin on WordPress 4.7.4 and didn’t encounter any issues. While Watsonfinds isn’t going to change how I write, I can see the potential benefits of using such a plugin to try to illicit a certain emotional response from readers and customers whether it’s a renewal email, blog post, or other copy.</p>\n<p>You can try out <a href=\"https://wordpress.org/plugins/watsonfinds/\">Watsonfinds</a> for free by downloading it from the WordPress plugin directory. To learn more about how it works, check out the <a href=\"http://www.watsonfinds.com/\">plugin’s official site</a>.</p>\n<div id=\"epoch-width-sniffer\"></div>\";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:\"Wed, 26 Apr 2017 23:48:43 +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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 18 May 2017 13:57:21 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 18 May 2017 13:45:12 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}','no'),(8237,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1495159042','no'),(8238,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1495115842','no'),(8239,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1495159045','no'),(8240,'_transient_feed_b9388c83948825c1edaef0d856b7b109','a:4:{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:49:\"\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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Popular — WordPress Plugins\";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:29:\"https://wordpress.org/plugins\";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:57:\"Plugins extend and expand the functionality of WordPress.\";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:\"Thu, 18 May 2017 13:45:01 +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=4.8-beta1-40736\";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:39:\"\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 7\";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:45:\"https://wordpress.org/plugins/contact-form-7/\";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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/contact-form-7/#respond\";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:\"Thu, 02 Aug 2007 12:43:39 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins-wp/contact-form-7/\";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:54:\"Just another contact form plugin. Simple but flexible.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5831:\"<p><!--section=description--></p>\n<p>Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.</p>\n<h4>Docs & Support</h4>\n<p>You can find <a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">docs</a>, <a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a> and more detailed information about Contact Form 7 on <a href=\"https://contactform7.com/\" rel=\"nofollow\">contactform7.com</a>. If you were unable to find the answer to your question on the FAQ or in any of the documentation, you should check the <a href=\"https://wordpress.org/support/plugin/contact-form-7/\" rel=\"nofollow\">support forum</a> on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it.</p>\n<h4>Contact Form 7 Needs Your Support</h4>\n<p>It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using Contact Form 7 and find it useful, please consider <a href=\"https://contactform7.com/donate/\" rel=\"nofollow\"><strong>making a donation</strong></a>. Your donation will help encourage and support the plugin’s continued development and better user support.</p>\n<h4>Recommended Plugins</h4>\n<p>The following plugins are recommended for Contact Form 7 users:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/flamingo/\">Flamingo</a> by Takayuki Miyoshi – With Flamingo, you can save submitted messages via contact forms in the database.</li>\n<li><a href=\"https://wordpress.org/plugins/postman-smtp/\">Postman</a> by<br />\nJason Hendriks – Postman is a next-generation SMTP Mailer, software that assists in the delivery of email generated by your WordPress site.</li>\n<li><a href=\"https://wordpress.org/plugins/bogo/\">Bogo</a> by Takayuki Miyoshi – Bogo is a straight-forward multilingual plugin that doesn’t cause headaches.</li>\n</ul>\n<h4>Translations</h4>\n<p>You can <a href=\"https://contactform7.com/translating-contact-form-7/\" rel=\"nofollow\">translate Contact Form 7</a> on <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow\"><strong>translate.wordpress.org</strong></a>.</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress.</li>\n</ol>\n<p>You will find ‘Contact’ menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n<p><!--section=faq--></p>\n<p>Do you have questions or issues with Contact Form 7? Use these support channels appropriately.</p>\n<ol>\n<li><a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">Docs</a></li>\n<li><a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/plugin/contact-form-7/\" rel=\"nofollow\">Support Forum</a></li>\n</ol>\n<p><a href=\"https://contactform7.com/support/\" rel=\"nofollow\">Support</a></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress.</li>\n</ol>\n<p>You will find ‘Contact’ menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<p>For more information, see <a href=\"https://contactform7.com/category/releases/\" rel=\"nofollow\">Releases</a>.</p>\n<h4>4.7</h4>\n<ul>\n<li>Added REST API custom endpoints to manipulate contact form data.</li>\n<li>Config Validator: Added test items for field names and attachment file paths.</li>\n<li>Added custom DOM events: <code>wpcf7invalid</code>, <code>wpcf7spam</code>, <code>wpcf7mailsent</code>, <code>wpcf7mailfailed</code> and <code>wpcf7submit</code>.</li>\n<li>New action hook: <code>wpcf7_after_flamingo</code>.</li>\n<li>Added <code>size</code> option to <code>select</code> and <code>select*</code> form-tag types.</li>\n<li>Made it possible to use the 3rd parameter of <code>wpcf7_add_form_tag()</code> to specify “features” of the form-tag type.</li>\n</ul>\n<h4>4.6.1</h4>\n<ul>\n<li>Fixed: “0” input could pass the <code>minlength</code> validation.</li>\n<li>Fixed: <code>exclude_blank</code> option was applied to all mail fields, not only to the message body.</li>\n<li>Fixed: <code>wpcf7_autop()</code> incorrectly inserted <code><br /></code> around hidden and block-type form-tags.</li>\n<li>Fixed: Applying <code>strtolower()</code> to uploaded file names was unnecessary and could cause troubles in a non-English environment.</li>\n</ul>\n<h4>4.6</h4>\n<ul>\n<li>Ajax loader: HTML markup changed to <code><span></code> to be easily customizable with CSS.</li>\n<li>Appends a proper header and footer to HTML mail content automatically.</li>\n<li><code>[_serial_number]</code> special mail-tag.</li>\n<li>New form-tag type for hidden fields.</li>\n<li><code>default:shortcode_attr</code> form-tag option.</li>\n<li><code>WPCF7_Shortcode</code>, <code>WPCF7_ShortcodeManager</code>, <code>wpcf7_add_shortcode()</code>, <code>wpcf7_scan_shortcode()</code>, and some other classes and functions have become deprecated.</li>\n<li>Removed all language files from the <em>languages</em> folder. Translations have moved to <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow\">translate.wordpress.org</a>.</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/contact-form-7/feed/\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Akismet\";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:38:\"https://wordpress.org/plugins/akismet/\";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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/akismet/#comments\";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:\"Thu, 20 Oct 2005 08:57:41 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/plugins-wp/akismet/\";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:103:\"Akismet checks your comments and contact form submissions against our global database of spam to…\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:18320:\"<p><!--section=description--></p>\n<p>Akismet checks your comments and contact form submissions against our global database of spam to prevent your site from publishing malicious content. You can review the comment spam it catches on your blog’s “Comments” admin screen.</p>\n<p>Major features in Akismet include:</p>\n<ul>\n<li>Automatically checks all comments and filters out the ones that look like spam.</li>\n<li>Each comment has a status history, so you can easily see which comments were caught or cleared by Akismet and which were spammed or unspammed by a moderator.</li>\n<li>URLs are shown in the comment body to reveal hidden or misleading links.</li>\n<li>Moderators can see the number of approved comments for each user.</li>\n<li>A discard feature that outright blocks the worst spam, saving you disk space and speeding up your site.</li>\n</ul>\n<p>PS: You’ll need an <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a> to use it. Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites.</p>\n<p><!--section=installation--></p>\n<p>Upload the Akismet plugin to your blog, Activate it, then enter your <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a>.</p>\n<p>1, 2, 3: You’re done!</p>\n<p><!--section=changelog--></p>\n<h4>3.3.2</h4>\n<p><em>Release Date – 10 May 2017</em></p>\n<ul>\n<li>Fixed a bug causing JavaScript errors in some browsers.</li>\n</ul>\n<h4>3.3.1</h4>\n<p><em>Release Date – 2 May 2017</em></p>\n<ul>\n<li>Improve performance by only requesting the akismet_comment_nonce option when absolutely necessary.</li>\n<li>Fixed two bugs that could cause PHP warnings.</li>\n<li>Fixed a bug that was preventing the “Remove author URL” feature from working after a comment was edited using “Quick Edit.”</li>\n<li>Fixed a bug that was preventing the URL preview feature from working after a comment was edited using “Quick Edit.”</li>\n</ul>\n<h4>3.3</h4>\n<p><em>Release Date – 23 February 2017</em></p>\n<ul>\n<li>Updated the Akismet admin pages with a new clean design.</li>\n<li>Fixed bugs preventing the <code>akismet_add_comment_nonce</code> and <code>akismet_update_alert</code> wrapper functions from working properly.</li>\n<li>Fixed bug preventing the loading indicator from appearing when re-checking all comments for spam.</li>\n<li>Added a progress indicator to the “Check for Spam” button.</li>\n<li>Added a success message after manually rechecking the Pending queue for spam.</li>\n</ul>\n<h4>3.2</h4>\n<p><em>Release Date – 6 September 2016</em></p>\n<ul>\n<li>Added a WP-CLI module. You can now check comments and recheck the moderation queue from the command line.</li>\n<li>Stopped using the deprecated jQuery function <code>.live()</code>.</li>\n<li>Fixed a bug in <code>remove_comment_author_url()</code> and <code>add_comment_author_url()</code> that could generate PHP notices.</li>\n<li>Fixed a bug that could cause an infinite loop for sites with very very very large comment IDs.</li>\n<li>Fixed a bug that could cause the Akismet widget title to be blank.</li>\n</ul>\n<h4>3.1.11</h4>\n<p><em>Release Date – 12 May 2016</em></p>\n<ul>\n<li>Fixed a bug that could cause the “Check for Spam” button to skip some comments.</li>\n<li>Fixed a bug that could prevent some spam submissions from being sent to Akismet.</li>\n<li>Updated all links to use https:// when possible.</li>\n<li>Disabled Akismet debug logging unless WP_DEBUG and WP_DEBUG_LOG are both enabled.</li>\n</ul>\n<h4>3.1.10</h4>\n<p><em>Release Date – 1 April 2016</em></p>\n<ul>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n<li>Fixed a bug that could have resulted in comments that were caught by the core WordPress comment blacklist not to have a corresponding History entry.</li>\n<li>Fixed a bug that could have caused avoidable PHP warnings in the error log.</li>\n</ul>\n<h4>3.1.9</h4>\n<p><em>Release Date – 28 March 2016</em></p>\n<ul>\n<li>Add compatibility with Jetpack so that Jetpack can automatically configure Akismet settings when appropriate.</li>\n<li>Fixed a bug preventing some comment data from being sent to Akismet.</li>\n</ul>\n<h4>3.1.8</h4>\n<p><em>Release Date – 4 March 2016</em></p>\n<ul>\n<li>Fixed a bug preventing Akismet from being used with some plugins that rewrite admin URLs.</li>\n<li>Reduced the amount of bandwidth used on Akismet API calls</li>\n<li>Reduced the amount of space Akismet uses in the database</li>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n</ul>\n<h4>3.1.7</h4>\n<p><em>Release Date – 4 January 2016</em></p>\n<ul>\n<li>Added documentation for the ‘akismet_comment_nonce’ filter.</li>\n<li>The post-install activation button is now accessible to screen readers and keyboard-only users.</li>\n<li>Fixed a bug that was preventing the “Remove author URL” feature from working in WordPress 4.4</li>\n</ul>\n<h4>3.1.6</h4>\n<p><em>Release Date – 14 December 2015</em></p>\n<ul>\n<li>Improve the notices shown after activating Akismet.</li>\n<li>Update some strings to allow for the proper plural forms in all languages.</li>\n</ul>\n<h4>3.1.5</h4>\n<p><em>Release Date – 13 October 2015</em></p>\n<ul>\n<li>Closes a potential XSS vulnerability.</li>\n</ul>\n<h4>3.1.4</h4>\n<p><em>Release Date – 24 September 2015</em></p>\n<ul>\n<li>Fixed a bug that was preventing some users from automatically connecting using Jetpack if they didn’t have a current Akismet subscription.</li>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n<li>Error messages and instructions have been simplified to be more understandable.</li>\n<li>Link previews are enabled for all links inside comments, not just the author’s website link.</li>\n</ul>\n<h4>3.1.3</h4>\n<p><em>Release Date – 6 July 2015</em></p>\n<ul>\n<li>Notify users when their account status changes after previously being successfully set up. This should help any users who are seeing blank Akismet settings screens.</li>\n</ul>\n<h4>3.1.2</h4>\n<p><em>Release Date – 7 June 2015</em></p>\n<ul>\n<li>Reduced the amount of space Akismet uses in the commentmeta table.</li>\n<li>Fixed a bug where some comments with quotes in the author name weren’t getting history entries</li>\n<li>Pre-emptive security improvements to ensure that the Akismet plugin can’t be used by attackers to compromise a WordPress installation.</li>\n<li>Better UI for the key entry field: allow whitespace to be included at the beginning or end of the key and strip it out automatically when the form is submitted.</li>\n<li>When deactivating the plugin, notify the Akismet API so the site can be marked as inactive.</li>\n<li>Clearer error messages.</li>\n</ul>\n<h4>3.1.1</h4>\n<p><em>Release Date – 17th March, 2015</em></p>\n<ul>\n<li>Improvements to the “Remove comment author URL” JavaScript</li>\n<li>Include the pingback pre-check from the 2.6 branch.</li>\n</ul>\n<h4>3.1</h4>\n<p><em>Release Date – 11th March, 2015</em></p>\n<ul>\n<li>Use HTTPS by default for all requests to Akismet.</li>\n<li>Fix for a situation where Akismet might strip HTML from a comment.</li>\n</ul>\n<h4>3.0.4</h4>\n<p><em>Release Date – 11th December, 2014</em></p>\n<ul>\n<li>Fix to make .htaccess compatible with Apache 2.4.</li>\n<li>Fix to allow removal of https author URLs.</li>\n<li>Fix to avoid stripping part of the author URL when removing and re-adding.</li>\n<li>Removed the “Check for Spam” button from the “Trash” and “Approved” queues, where it would have no effect.</li>\n<li>Allow automatic API key configuration when Jetpack is installed and connected to a WordPress.com account</li>\n</ul>\n<h4>3.0.3</h4>\n<p><em>Release Date – 3rd November, 2014</em></p>\n<ul>\n<li>Fix for sending the wrong data to delete_comment action that could have prevented old spam comments from being deleted.</li>\n<li>Added a filter to disable logging of Akismet debugging information.</li>\n<li>Added a filter for the maximum comment age when deleting old spam comments.</li>\n<li>Added a filter for the number per batch when deleting old spam comments.</li>\n<li>Removed the “Check for Spam” button from the Spam folder.</li>\n</ul>\n<h4>3.0.2</h4>\n<p><em>Release Date – 18th August, 2014</em></p>\n<ul>\n<li>Performance improvements.</li>\n<li>Fixed a bug that could truncate the comment data being sent to Akismet for checking.</li>\n</ul>\n<h4>3.0.1</h4>\n<p><em>Release Date – 9th July, 2014</em></p>\n<ul>\n<li>Removed dependency on PHP’s fsockopen function</li>\n<li>Fix spam/ham reports to work when reported outside of the WP dashboard, e.g., from Notifications or the WP app</li>\n<li>Remove jQuery dependency for comment form JavaScript</li>\n<li>Remove unnecessary data from some Akismet comment meta</li>\n<li>Suspended keys will now result in all comments being put in moderation, not spam.</li>\n</ul>\n<h4>3.0.0</h4>\n<p><em>Release Date – 15th April, 2014</em></p>\n<ul>\n<li>Move Akismet to Settings menu</li>\n<li>Drop Akismet Stats menu</li>\n<li>Add stats snapshot to Akismet settings</li>\n<li>Add Akismet subscription details and status to Akismet settings</li>\n<li>Add contextual help for each page</li>\n<li>Improve Akismet setup to use Jetpack to automate plugin setup</li>\n<li>Fix “Check for Spam” to use AJAX to avoid page timing out</li>\n<li>Fix Akismet settings page to be responsive</li>\n<li>Drop legacy code</li>\n<li>Tidy up CSS and Javascript</li>\n<li>Replace the old discard setting with a new “discard pervasive spam” feature.</li>\n</ul>\n<h4>2.6.0</h4>\n<p><em>Release Date – 18th March, 2014</em></p>\n<ul>\n<li>Add ajax paging to the check for spam button to handle large volumes of comments</li>\n<li>Optimize javascript and add localization support </li>\n<li>Fix bug in link to spam comments from right now dashboard widget</li>\n<li>Fix bug with deleting old comments to avoid timeouts dealing with large volumes of comments</li>\n<li>Include X-Pingback-Forwarded-For header in outbound WordPress pingback verifications</li>\n<li>Add pre-check for pingbacks, to stop spam before an outbound verification request is made</li>\n</ul>\n<h4>2.5.9</h4>\n<p><em>Release Date – 1st August, 2013</em></p>\n<ul>\n<li>Update ‘Already have a key’ link to redirect page rather than depend on javascript</li>\n<li>Fix some non-translatable strings to be translatable</li>\n<li>Update Activation banner in plugins page to redirect user to Akismet config page</li>\n</ul>\n<h4>2.5.8</h4>\n<p><em>Release Date – 20th January, 2013</em></p>\n<ul>\n<li>Simplify the activation process for new users</li>\n<li>Remove the reporter_ip parameter</li>\n<li>Minor preventative security improvements</li>\n</ul>\n<h4>2.5.7</h4>\n<p><em>Release Date – 13th December, 2012</em></p>\n<ul>\n<li>FireFox Stats iframe preview bug</li>\n<li>Fix mshots preview when using https</li>\n<li>Add .htaccess to block direct access to files</li>\n<li>Prevent some PHP notices</li>\n<li>Fix Check For Spam return location when referrer is empty</li>\n<li>Fix Settings links for network admins</li>\n<li>Fix prepare() warnings in WP 3.5</li>\n</ul>\n<h4>2.5.6</h4>\n<p><em>Release Date – 26th April, 2012</em></p>\n<ul>\n<li>Prevent retry scheduling problems on sites where wp_cron is misbehaving</li>\n<li>Preload mshot previews</li>\n<li>Modernize the widget code</li>\n<li>Fix a bug where comments were not held for moderation during an error condition</li>\n<li>Improve the UX and display when comments are temporarily held due to an error</li>\n<li>Make the Check For Spam button force a retry when comments are held due to an error</li>\n<li>Handle errors caused by an invalid key</li>\n<li>Don’t retry comments that are too old</li>\n<li>Improve error messages when verifying an API key</li>\n</ul>\n<h4>2.5.5</h4>\n<p><em>Release Date – 11th January, 2012</em></p>\n<ul>\n<li>Add nonce check for comment author URL remove action</li>\n<li>Fix the settings link</li>\n</ul>\n<h4>2.5.4</h4>\n<p><em>Release Date – 5th January, 2012</em></p>\n<ul>\n<li>Limit Akismet CSS and Javascript loading in wp-admin to just the pages that need it</li>\n<li>Added author URL quick removal functionality</li>\n<li>Added mShot preview on Author URL hover</li>\n<li>Added empty index.php to prevent directory listing</li>\n<li>Move wp-admin menu items under Jetpack, if it is installed</li>\n<li>Purge old Akismet comment meta data, default of 15 days</li>\n</ul>\n<h4>2.5.3</h4>\n<p><em>Release Date – 8th Febuary, 2011</em></p>\n<ul>\n<li>Specify the license is GPL v2 or later</li>\n<li>Fix a bug that could result in orphaned commentmeta entries</li>\n<li>Include hotfix for WordPress 3.0.5 filter issue</li>\n</ul>\n<h4>2.5.2</h4>\n<p><em>Release Date – 14th January, 2011</em></p>\n<ul>\n<li>Properly format the comment count for author counts</li>\n<li>Look for super admins on multisite installs when looking up user roles</li>\n<li>Increase the HTTP request timeout</li>\n<li>Removed padding for author approved count</li>\n<li>Fix typo in function name</li>\n<li>Set Akismet stats iframe height to fixed 2500px. Better to have one tall scroll bar than two side by side.</li>\n</ul>\n<h4>2.5.1</h4>\n<p><em>Release Date – 17th December, 2010</em></p>\n<ul>\n<li>Fix a bug that caused the “Auto delete” option to fail to discard comments correctly</li>\n<li>Remove the comment nonce form field from the ‘Akismet Configuration’ page in favor of using a filter, akismet_comment_nonce</li>\n<li>Fixed padding bug in “author” column of posts screen</li>\n<li>Added margin-top to “cleared by …” badges on dashboard</li>\n<li>Fix possible error when calling akismet_cron_recheck()</li>\n<li>Fix more PHP warnings</li>\n<li>Clean up XHTML warnings for comment nonce</li>\n<li>Fix for possible condition where scheduled comment re-checks could get stuck</li>\n<li>Clean up the comment meta details after deleting a comment</li>\n<li>Only show the status badge if the comment status has been changed by someone/something other than Akismet</li>\n<li>Show a ‘History’ link in the row-actions</li>\n<li>Translation fixes</li>\n<li>Reduced font-size on author name</li>\n<li>Moved “flagged by…” notification to top right corner of comment container and removed heavy styling</li>\n<li>Hid “flagged by…” notification while on dashboard</li>\n</ul>\n<h4>2.5.0</h4>\n<p><em>Release Date – 7th December, 2010</em></p>\n<ul>\n<li>Track comment actions under ‘Akismet Status’ on the edit comment screen</li>\n<li>Fix a few remaining deprecated function calls ( props Mike Glendinning ) </li>\n<li>Use HTTPS for the stats IFRAME when wp-admin is using HTTPS</li>\n<li>Use the WordPress HTTP class if available</li>\n<li>Move the admin UI code to a separate file, only loaded when needed</li>\n<li>Add cron retry feature, to replace the old connectivity check</li>\n<li>Display Akismet status badge beside each comment</li>\n<li>Record history for each comment, and display it on the edit page</li>\n<li>Record the complete comment as originally submitted in comment_meta, to use when reporting spam and ham</li>\n<li>Highlight links in comment content</li>\n<li>New option, “Show the number of comments you’ve approved beside each comment author.”</li>\n<li>New option, “Use a nonce on the comment form.”</li>\n</ul>\n<h4>2.4.0</h4>\n<p><em>Release Date – 23rd August, 2010</em></p>\n<ul>\n<li>Spell out that the license is GPLv2</li>\n<li>Fix PHP warnings</li>\n<li>Fix WordPress deprecated function calls</li>\n<li>Fire the delete_comment action when deleting comments</li>\n<li>Move code specific for older WP versions to legacy.php</li>\n<li>General code clean up</li>\n</ul>\n<h4>2.3.0</h4>\n<p><em>Release Date – 5th June, 2010</em></p>\n<ul>\n<li>Fix “Are you sure” nonce message on config screen in WPMU</li>\n<li>Fix XHTML compliance issue in sidebar widget</li>\n<li>Change author link; remove some old references to WordPress.com accounts</li>\n<li>Localize the widget title (core ticket #13879)</li>\n</ul>\n<h4>2.2.9</h4>\n<p><em>Release Date – 2nd June, 2010</em></p>\n<ul>\n<li>Eliminate a potential conflict with some plugins that may cause spurious reports</li>\n</ul>\n<h4>2.2.8</h4>\n<p><em>Release Date – 27th May, 2010</em></p>\n<ul>\n<li>Fix bug in initial comment check for ipv6 addresses</li>\n<li>Report comments as ham when they are moved from spam to moderation</li>\n<li>Report comments as ham when clicking undo after spam</li>\n<li>Use transition_comment_status action when available instead of older actions for spam/ham submissions</li>\n<li>Better diagnostic messages when PHP network functions are unavailable</li>\n<li>Better handling of comments by logged-in users</li>\n</ul>\n<h4>2.2.7</h4>\n<p><em>Release Date – 17th December, 2009</em></p>\n<ul>\n<li>Add a new AKISMET_VERSION constant</li>\n<li>Reduce the possibility of over-counting spam when another spam filter plugin is in use</li>\n<li>Disable the connectivity check when the API key is hard-coded for WPMU</li>\n</ul>\n<h4>2.2.6</h4>\n<p><em>Release Date – 20th July, 2009</em></p>\n<ul>\n<li>Fix a global warning introduced in 2.2.5</li>\n<li>Add changelog and additional readme.txt tags</li>\n<li>Fix an array conversion warning in some versions of PHP</li>\n<li>Support a new WPCOM_API_KEY constant for easier use with WordPress MU</li>\n</ul>\n<h4>2.2.5</h4>\n<p><em>Release Date – 13th July, 2009</em></p>\n<ul>\n<li>Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls</li>\n</ul>\n<h4>2.2.4</h4>\n<p><em>Release Date – 3rd June, 2009</em></p>\n<ul>\n<li>Fixed a key problem affecting the stats feature in WordPress MU</li>\n<li>Provide additional blog information in Akismet API calls</li>\n</ul>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>Upload the Akismet plugin to your blog, Activate it, then enter your <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a>.</p>\n<p>1, 2, 3: You’re done!</p>\n</dd>\n</dl>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/plugins/akismet/feed/\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\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:3:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";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:44:\"https://wordpress.org/plugins/wordpress-seo/\";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:\"Mon, 11 Oct 2010 20:55:35 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins-wp/wordpress-seo/\";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:90:\"WordPress out of the box is already technically quite a good platform for SEO. This…\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Joost de Valk\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12921:\"<p><!--section=description--></p>\n<p>WordPress out of the box is already technically quite a good platform for SEO. This was true when Joost wrote his original <a href=\"https://yoast.com/articles/wordpress-seo/\" rel=\"nofollow\">WordPress SEO</a> article in 2008 (updated every few months) and it’s still true today, but that doesn’t mean you can’t improve it further! This plugin is written from the ground up by Joost de Valk and his team at <a href=\"https://yoast.com/\" rel=\"nofollow\">Yoast</a> to improve your site’s SEO on <em>all</em> needed aspects. While this <a href=\"https://yoast.com/wordpress/plugins/seo/\" rel=\"nofollow\">Yoast SEO plugin</a> goes the extra mile to take care of all the technical optimization, more on that below, it first and foremost helps you write better content. Yoast SEO forces you to choose a focus keyword when you’re writing your articles, and then makes sure you use that focus keyword everywhere.</p>\n<blockquote>\n<p><strong>Premium Support</strong><br />\n The Yoast team does not always provide active support for the Yoast SEO plugin on the WordPress.org forums. One-on-one email support is available to people who bought the <a href=\"https://yoast.com/wordpress/plugins/seo-premium/\" rel=\"nofollow\">Premium Yoast SEO plugin</a> only.<br />\n Note that the Premium SEO plugin has several extra features too, including the option to have multiple focus keywords and a redirect manager, so it might be well worth your investment!</p>\n<p>You should also check out the <a href=\"https://yoast.com/wordpress/plugins/local-seo/\" rel=\"nofollow\">Yoast Local SEO</a>, <a href=\"https://yoast.com/wordpress/plugins/news-seo/\" rel=\"nofollow\">Yoast News SEO</a> and <a href=\"https://yoast.com/wordpress/plugins/video-seo/\" rel=\"nofollow\">Yoast Video SEO</a> extensions to Yoast SEO. These of course come with support too.</p>\n<p><strong>Bug Reports</strong><br />\n Bug reports for Yoast SEO are <a href=\"https://github.com/Yoast/wordpress-seo\" rel=\"nofollow\">welcomed on GitHub</a>. Please note GitHub is <em>not</em> a support forum, and issues that aren’t properly qualified as bugs will be closed.</p>\n</blockquote>\n<h4>Write better content with Yoast SEO</h4>\n<p>Using the snippet preview, you can see a rendering of what your post or page will look like in the search results, whether your title is too long or too short, and whether your meta description makes sense in the context of a search result. This way the plugin will help you not only increase rankings but also increase the click through rate for organic search results.</p>\n<h4>Page Analysis</h4>\n<p>The Yoast SEO plugins <a href=\"https://yoast.com/content-seo-wordpress-linkdex/\" rel=\"nofollow\">Page Analysis</a> functionality checks simple things you’re bound to forget. It checks, for instance, if you have images in your post and whether they have an alt tag containing the focus keyword for that post. It also checks whether your posts are long enough, whether you’ve written a meta description and if that meta description contains your focus keyword, if you’ve used any subheadings within your post, etc. etc.</p>\n<p>The plugin alsgruo allows you to write meta titles and descriptions for all your category, tag and custom taxonomy archives, giving you the option to further optimize those pages.</p>\n<p>Combined, this plugin makes sure that your content is the type of content search engines will love!</p>\n<h4>Technical WordPress Search Engine Optimization</h4>\n<p>While out of the box WordPress is pretty good for SEO, it needs some tweaks here and there. This Yoast SEO plugin guides you through some of the settings needed, for instance by reminding you to enable pretty permalinks. But it also goes beyond that, by automatically optimizing and inserting the meta tags and link elements that Google and other search engines like so much:</p>\n<h4>Meta & Link Elements</h4>\n<p>With the Yoast SEO plugin you can control which pages Google shows in its search results and which pages it doesn’t show. By default, it will tell search engines to index all of your pages, including category and tag archives, but to only show the first pages in the search results. It’s not very useful for a user to end up on the third page of your “personal” category, right?</p>\n<p>WordPress itself only shows canonical link elements on single pages, but Yoast SEO makes it output canonical link elements everywhere. Google has recently announced they would also use <code>rel=\"next\"</code> and <code>rel=\"prev\"</code> link elements in the <code>head</code> section of your paginated archives. This plugin adds those automatically. See <a href=\"https://yoast.com/rel-next-prev-paginated-archives/\" rel=\"nofollow\">this post</a> for more info.</p>\n<h4>XML Sitemaps</h4>\n<p>The Yoast SEO plugin has the most advanced XML Sitemaps functionality in any WordPress plugin. Once you check the box, it automatically creates XML sitemaps and notifies Google & Bing of the sitemaps’ existence. These XML sitemaps include the images in your posts & pages too, so that your images may be found better in the search engines too.</p>\n<p>These XML Sitemaps will even work on large sites, because of how they’re created, using one index sitemap that links to sub-sitemaps for each 1,000 posts. They will also work with custom post types and custom taxonomies automatically, while giving you the option to remove those from the XML sitemap should you wish to.</p>\n<p>Because of using <a href=\"https://yoast.com/xsl-stylesheet-xml-sitemap/\" rel=\"nofollow\">XSL stylesheets for these XML Sitemaps</a>, the XML sitemaps are easily readable for the human eye too, so you can spot things that shouldn’t be in there.</p>\n<h4>RSS Optimization</h4>\n<p>Are you being outranked by scrapers? Instead of cursing at them, use them to your advantage! By automatically adding a link to your RSS feed pointing back to the original article, you’re telling the search engine where they should be looking for the original. This way, the Yoast SEO plugin increases your own chance of ranking for your chosen keywords and gets rid of scrapers in one go!</p>\n<h4>Breadcrumbs</h4>\n<p>If your theme is compatible, and themes based on for instance Genesis or by WooThemes often are, you can use the built-in Breadcrumbs functionality. This allows you to create an easy navigation that is great for both users and search engines, and will support the search engines in understanding the structure of your site.</p>\n<p>Making your theme compatible isn’t hard either, check <a href=\"https://kb.yoast.com/kb/implement-wordpress-seo-breadcrumbs/\" rel=\"nofollow\">these instructions</a>.</p>\n<h4>Edit your .htaccess and robots.txt file</h4>\n<p>Using the built-in file editor, you can edit your WordPress blog’s <code>.htaccess</code> and <code>robots.txt</code> file, giving you direct access to the two most powerful files, from an SEO perspective, in your WordPress install.</p>\n<h4>Social Integration</h4>\n<p>SEO and Social Media are heavily intertwined. That’s why this plugin also comes with a Facebook OpenGraph implementation and will soon also support Google+ sharing tags.</p>\n<h4>Multi-Site Compatible</h4>\n<p>The Yoast SEO plugin, unlike some others, is fully Multi-Site compatible. The XML Sitemaps work fine in all setups and you even have the option, in the Network settings, to copy the settings from one blog to another, or make blogs default to the settings for a specific blog.</p>\n<h4>Import & Export functionality</h4>\n<p>If you have multiple blogs, setting up plugins like this one on all of them might seem like a daunting task. Except that it’s not, because what you can do is simple: you set up the plugin once. You then export your settings and simply import them on all your other sites. It’s that simple!</p>\n<h4>Import functionality for other WordPress SEO plugins</h4>\n<p>If you’ve used All In One SEO Pack or HeadSpace2 before using this plugin, you might want to import all your old titles and descriptions. You can do that easily using the built-in import functionality. There’s also import functionality for some of the older Yoast plugins, like Robots Meta and RSS footer.</p>\n<p>Should you have a need to import from another SEO plugin to Yoast SEO, or from a theme like Genesis or Thesis, you can use the <a href=\"https://wordpress.org/extend/plugins/seo-data-transporter/\" rel=\"nofollow\">SEO Data Transporter</a> plugin, which will easily convert your SEO meta data from and to a whole set of plugins like Platinum SEO, SEO Ultimate, Greg’s High Performance SEO, and themes like Headway, Hybrid, WooFramework, Catalyst etc.</p>\n<p>Read <a href=\"https://yoast.com/all-in-one-seo-pack-migration/\" rel=\"nofollow\">this migration guide</a> if you still have questions about migrating from another SEO plugin to Yoast SEO.</p>\n<h4>Yoast SEO Plugin in your Language!</h4>\n<p>Currently a huge translation project is underway, translating Yoast SEO in as much as 24 languages. So far, the translations for French and Dutch are complete, but we still need help on a lot of other languages, so if you’re good at translating, please join us at <a href=\"http://translate.yoast.com\" rel=\"nofollow\">translate.yoast.com</a>.</p>\n<h4>News SEO</h4>\n<p>Be sure to also check out the premium <a href=\"https://yoast.com/wordpress/plugins/news-seo/\" rel=\"nofollow\">News SEO module</a> if you need Google News Sitemaps. It tightly integrates with Yoast SEO to give you the combined power of News Sitemaps and full Search Engine Optimization.</p>\n<h4>Further Reading</h4>\n<p>For more info, check out the following articles:</p>\n<ul>\n<li>The <a href=\"https://kb.yoast.com/kb/category/yoast-seo/\" rel=\"nofollow\">Yoast SEO Knowledgebase</a>.</li>\n<li><a href=\"https://yoast.com/articles/wordpress-seo/\" rel=\"nofollow\">WordPress SEO – The definitive Guide by Yoast</a>.</li>\n<li>Once you have great SEO, you’ll need the <a href=\"https://yoast.com/articles/wordpress-hosting/\" rel=\"nofollow\">best WordPress Hosting</a>.</li>\n<li>The <a href=\"https://yoast.com/wordpress/plugins/seo/\" rel=\"nofollow\">Yoast SEO Plugin</a> official homepage.</li>\n<li>Other <a href=\"https://yoast.com/wordpress/plugins/\" rel=\"nofollow\">WordPress Plugins</a> by the same team.</li>\n<li>Follow Yoast on <a href=\"https://facebook.com/yoast\" rel=\"nofollow\">Facebook</a> & <a href=\"http://twitter.com/yoast\" rel=\"nofollow\">Twitter</a>.</li>\n</ul>\n<h3>From within WordPress</h3>\n<ol>\n<li>Visit ‘Plugins > Add New’</li>\n<li>Search for ‘Yoast SEO’</li>\n<li>Activate Yoast SEO from your Plugins page.</li>\n<li>Go to “after activation” below.</li>\n</ol>\n<h3>Manually</h3>\n<ol>\n<li>Upload the <code>wordpress-seo</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the Yoast SEO plugin through the ‘Plugins’ menu in WordPress</li>\n<li>Go to “after activation” below.</li>\n</ol>\n<h3>After activation</h3>\n<ol>\n<li>You should see (a notice to start) the Yoast SEO configuration wizard.</li>\n<li>Go through the configuration wizard and set up the plugin for your site.</li>\n<li>You’re done!</li>\n</ol>\n<p><!--section=faq--></p>\n<p>You’ll find answers to many of your questions on <a href=\"https://kb.yoast.com/kb/category/yoast-seo/\" rel=\"nofollow\">kb.yoast.com</a>.</p>\n<p><!--section=changelog--></p>\n<h4>4.7.1</h4>\n<p>Release Date: May 9th, 2017</p>\n<ul>\n<li>Bugfixes\n<ul>\n<li>Fixes a bug where the analysis wouldn’t work on Internet Explorer.</li>\n</ul>\n</li>\n</ul>\n<h4>4.7.0</h4>\n<p>Release Date: May 2nd, 2017</p>\n<ul>\n<li>\n<p>Enhancements</p>\n<ul>\n<li>Adds transition words for Italian.</li>\n<li>Adds a new check in the analysis for the presence of at least one internal link.</li>\n</ul>\n</li>\n<li>\n<p>Bugfixes</p>\n<ul>\n<li>Fixes a bug where the <code>_yst_is_cornerstone</code> meta value was not prefixed, causing some themes/plugins to output this meta value.</li>\n<li>Fixes a bug where style and script elements were parsed for the prominent words.</li>\n<li>Fixes a bug where the cursor pointer was in front of the metabox.</li>\n</ul>\n</li>\n</ul>\n<h4>4.6.0</h4>\n<p>Release Date: April 11th, 2017</p>\n<ul>\n<li>\n<p>Enhancements</p>\n<ul>\n<li>Improves a language string, props <a href=\"https://github.com/Soean\" rel=\"nofollow\">Sören Wrede</a>.</li>\n<li>Improves the configuration wizard with clear information about the configuration.</li>\n<li>Adds the ability to mark posts as cornerstone content.</li>\n</ul>\n</li>\n<li>\n<p>Bugfixes</p>\n<ul>\n<li>Fixes an issue in combination with WooCommerce 3.0 where the plugins would load incompatible select2 versions.</li>\n</ul>\n</li>\n</ul>\n<h4>Earlier versions</h4>\n<p>For the changelog of earlier versions, please refer to the separate changelog.txt file.</p>\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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";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:38:\"https://wordpress.org/plugins/jetpack/\";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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/jetpack/#comments\";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:\"Thu, 20 Jan 2011 02:21:38 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/plugins-wp/jetpack/\";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:112:\"The one plugin you need for stats, related posts, search engine optimization, social sharing, protection,…\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Automattic\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:38101:\"<p><!--section=description--></p>\n<p>Keep any WordPress site secure, increase traffic, and engage your readers.</p>\n<h4>Traffic and SEO Tools</h4>\n<p>Traffic is the lifeblood of any website. Jetpack includes:</p>\n<ul>\n<li>[free] Site stats and analytics</li>\n<li>[free] Automatic sharing on Facebook, Twitter, LinkedIn, Tumblr, Reddit, and WhatsApp</li>\n<li>[free] Related posts</li>\n<li>[paid] Search engine optimization tools for Google, Bing, Twitter, Facebook, and WordPress.com</li>\n<li>[paid] Advertising program that includes the best of AdSense, Facebook Ads, AOL, Amazon, Google AdX, and Yahoo</li>\n</ul>\n<h4>Security and Backup Services</h4>\n<p>Stop worrying about data loss, downtime, and hacking. Jetpack provides:</p>\n<ul>\n<li>[free] Brute force attack protection</li>\n<li>[free] Downtime and uptime monitoring</li>\n<li>[free] Secured logins and two-factor authentication</li>\n<li>[paid] Malware scanning, code scanning, and threat resolution</li>\n<li>[paid] Site backups, restores, and migrations</li>\n</ul>\n<h4>Content Creation</h4>\n<p>Add rich, beautifully-presented media — no graphic design expertise necessary:</p>\n<ul>\n<li>[free] A high-speed CDN for your images</li>\n<li>[free] Carousels, slideshows, and tiled galleries</li>\n<li>[free] Simple embeds from YouTube, Google Documents, Spotify and more</li>\n<li>[free] Sidebar customization including Facebook, Twitter, and RSS feeds</li>\n<li>[free] Extra sidebar widgets including blog stats, calendar, and author widgets</li>\n<li>[paid] High-speed, ad-free, and high-definition video hosting</li>\n</ul>\n<h4>Discussion and Community</h4>\n<p>Create a connection with your readers and keep them coming back to your site with:</p>\n<ul>\n<li>[free] Email subscriptions</li>\n<li>[free] Comment login with Facebook, Twitter, and Google</li>\n<li>[free] Fully-customizable contact forms</li>\n<li>[free] Infinite scroll for your posts</li>\n</ul>\n<h4>Expert Support</h4>\n<p>We have an entire team of Happiness Engineers ready to help you. Ask your questions in the support forum, or <a href=\"https://jetpack.com/contact-support\" rel=\"nofollow\">contact us directly</a>.</p>\n<h4>Paid Services</h4>\n<p>Most of Jetpack’s features and services are free. Jetpack also provides advanced security and backup services, video hosting, site monetization, priority support, and more SEO tools in three <a href=\"https://jetpack.com/pricing?from=wporg\" rel=\"nofollow\">simple and affordable plans</a>.</p>\n<h4>Get Started</h4>\n<p>Installation is free, quick, and easy. Set up <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">the free plan</a> in minutes.</p>\n<p><!--section=installation--></p>\n<h4>Automated Installation</h4>\n<p>Installation is free, quick, and easy. <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">Install Jetpack from our site</a> in minutes.</p>\n<h4>Manual Alternatives</h4>\n<p>Alternatively, install Jetpack via the plugin directory, or upload the files manually to your server and follow the on-screen instructions. If you need additional help <a href=\"http://jetpack.com/support/installing-jetpack/\" rel=\"nofollow\">read our detailed instructions</a>.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<h4>Automated Installation</h4>\n<p>Installation is free, quick, and easy. <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">Install Jetpack from our site</a> in minutes.</p>\n<h4>Manual Alternatives</h4>\n<p>Alternatively, install Jetpack via the plugin directory, or upload the files manually to your server and follow the on-screen instructions. If you need additional help <a href=\"http://jetpack.com/support/installing-jetpack/\" rel=\"nofollow\">read our detailed instructions</a>.</p>\n</dd>\n<dt>Is Jetpack Free?</dt>\n<dd>\n<p>Yes! Jetpack’s core features are and always will be free.</p>\n<p>These include: <a href=\"https://jetpack.com/features/traffic/site-stats\" rel=\"nofollow\">site stats</a>, a <a href=\"https://jetpack.com/features/writing/content-delivery-network/\" rel=\"nofollow\">high-speed CDN</a> for images, <a href=\"https://jetpack.com/features/traffic/related-posts\" rel=\"nofollow\">related posts</a>, <a href=\"https://jetpack.com/features/security/downtime-monitoring\" rel=\"nofollow\">downtime monitoring</a>, brute force <a href=\"https://jetpack.com/features/security/brute-force-attack-protection\" rel=\"nofollow\">attack protection</a>, <a href=\"https://jetpack.com/features/traffic/automatic-publishing/\" rel=\"nofollow\">automated sharing</a> to social networks, <a href=\"https://jetpack.com/features/writing/sidebar-customization/\" rel=\"nofollow\">sidebar customization</a>, and many more.</p>\n</dd>\n<dt>Should I purchase a paid plan?</dt>\n<dd>\n<p>Jetpack’s paid services include automated backups, security scanning, spam filtering, video hosting, site monetization, SEO tools, and priority support.</p>\n<p>If you’re interested in learning more about the extra layers of protection and advanced tools available, learn more about our <a href=\"https://jetpack.com/pricing?from=wporg\" rel=\"nofollow\">paid plans</a>.</p>\n</dd>\n<dt>Why do I need a WordPress.com account?</dt>\n<dd>\n<p>Since Jetpack and its services are provided and hosted by WordPress.com, a WordPress.com account is required for Jetpack to function.</p>\n</dd>\n<dt>I already have a WordPress account, but Jetpack isn’t working. What’s going on?</dt>\n<dd>\n<p>A WordPress.com account is different from the account you use to log into your self-hosted WordPress. If you can log into <a href=\"https://wordpress.com\" rel=\"nofollow\">WordPress.com</a>, then you already have a WordPress.com account. If you can’t, you can easily create one <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">during installation</a>.</p>\n</dd>\n<dt>How do I view my stats?</dt>\n<dd>\n<p>Once you’ve installed Jetpack your stats will be available on <a href=\"https://wordpress.com/stats\" rel=\"nofollow\">WordPress.com/Stats</a>, on the official <a href=\"https://apps.wordpress.com/mobile/\" rel=\"nofollow\">WordPress mobile apps</a>, and on your Jetpack dashboard.</p>\n</dd>\n<dt>How do I contribute to Jetpack?</dt>\n<dd>\n<p>There are opportunities for developers at all levels to contribute. <a href=\"https://jetpack.com/contribute\" rel=\"nofollow\">Learn more about contributing to Jetpack</a> or consider <a href=\"https://jetpack.com/beta\" rel=\"nofollow\">joining our beta program</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>4.9</h4>\n<ul>\n<li>Release date: May 2nd, 2017</li>\n<li>Release post: http://wp.me/p1moTy-4Rl</li>\n</ul>\n<p><strong>Major Enhancements</strong></p>\n<ul>\n<li>New “EU Cookie Law Banner”, Flickr, and “Internet Defense League” widgets.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements</strong></p>\n<ul>\n<li>Success notices are automatically dismissed after a short period.</li>\n<li>Removed unused code from “My Jetpack” interface and deprecated an XML-RPC method.</li>\n<li>Contact Form now adds display names to email addresses in the <code>To</code> header.</li>\n<li>Added an updated multiple unit tests increasing code coverage.</li>\n<li>Development mode now also shows module list.</li>\n<li>Updated the list of locales available in Jetpack.</li>\n<li>Plugin auto-updates only triggered from WordPress.com and now trigger WordPress’ maintenance mode.</li>\n</ul>\n<p><strong>Performance Improvements</strong></p>\n<ul>\n<li>Record comment content modifications and moderation events to make sure comments are always up to date on WordPress.com.</li>\n<li>Sync post deletions, changes to sidebar, user events (addition, removal, and update) and theme installation.</li>\n<li>We now distinguish between a new and an updated attachment.</li>\n<li>Sync plugin and theme names when a related event is triggered including theme updates.</li>\n</ul>\n<p><strong>Compatibility Improvements</strong></p>\n<ul>\n<li>Protect avoid conflicts with other plugins hooking into the log in form.</li>\n<li>Contact Form not auto-activated when Ninja Forms is active.</li>\n<li>WordPess.com REST API now allows <code>HTTP PUT</code> requests.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Fixed wording in Post By Email button when no email address has been generated.</li>\n<li>Fixed a notice in the subscription widget in PHP 7.1</li>\n<li>Properly display VaultPress notices in the Jetpack dashboard.</li>\n<li>VideoPress now included in search results for “video” and fixed positioning of search icon on mobile screens.</li>\n<li>Protect supports IPv6 addresses properly.</li>\n<li>Dashboard avoids API requests being cached on some hosts and avoids errors when Spellchecker is inactive.</li>\n<li>Contact Form message content type is now set properly to restore compatibility with email plugins.</li>\n<li>Ads not displayed in the portfolio projects custom content type.</li>\n<li>Display all sites available in a network, even on large multisite installations.</li>\n<li>Featured Image is always used in tweets posted via Publicize.</li>\n<li>Avoid fatal errors when the exclusion parameter in Related Posts is not a string.</li>\n<li>Allow the removal of all custom title settings in the SEO feature.</li>\n<li>Make sure images are not distorted when Tiled Galleries uses Photon.</li>\n<li>Avoid PHP warnings and errors in the Stats dashboard on Multisite.</li>\n<li>Avoid errors when the Jetpack plugin is deleted.</li>\n</ul>\n<h4>4.8.2</h4>\n<ul>\n<li>Release date: April 7th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-4P0</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Fixed a bug that prevented activating/deactivating of some features in PHP versions below 5.4.</li>\n<li>Removed an unused function that was also incompatible with PHP versions below 5.4.</li>\n<li>Fixed a bug that was causing a blank Jetpack admin area.</li>\n</ul>\n<h4>4.8.1</h4>\n<ul>\n<li>Release date: April 5th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-4N5</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>An incompatibility with PHP versions lower than 5.4 was introduced in the last release, causing a fatal error and we’ve immediately fixed this.</li>\n<li>Sitemaps: Some plugins were relying on a function that was removed in the last release, which has been fixed.</li>\n<li>General: Clicking on the info icon in the settings area will no longer jump to the top of the page.</li>\n<li>General: The Anti-spam card will always display the correct status in the Jetpack dashboard.</li>\n</ul>\n<h4>4.8</h4>\n<ul>\n<li>Release date: April 4th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-4gA</li>\n</ul>\n<p><strong>Major Enhancements</strong></p>\n<ul>\n<li>Easier to navigate Jetpack’s feature settings in your dashboard and WordPress.com.</li>\n<li>New WordPress.com Toolbar provides quick access to site management, stats, and other services.</li>\n<li>New MailChimp Subscribe Popup widget.</li>\n<li>Sitemaps are faster and now support sites with a very large amount of posts.</li>\n<li>Contact Form now has a plain-text alternative and better avoids spam filters.</li>\n<li>Debug form includes extra information to better prioritize your support requests.</li>\n<li>Photon can now be used within the dashboard, and supports bbPress topics and replies.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements</strong></p>\n<ul>\n<li>Improved previously confusing wording in Stats dashboard, and Featured Content options.</li>\n<li>You can now embed Apple Keynotes straight from icloud.com in your posts and pages.</li>\n<li>Changed Infinite Scroll button text on taxonomy page and added a new filter to short-circuit the <code>is_last_batch()</code> method.</li>\n<li>Open Graph now uses transients to save image IDs.</li>\n<li>You can now use full URLs in the Social Media Icons widget.</li>\n<li>Milestone widget now allows custom links to open in a new window.</li>\n<li>VideoPress videos can be used as headers in themes that support it, like Twenty Seventeen.</li>\n<li>Extracted the timezone offset method from the Upcoming Events widget so it can be used by other features.</li>\n</ul>\n<p><strong>Performance Improvements</strong></p>\n<ul>\n<li>Database load is reduced during updates on large sites with multiple servers by retaining hashes for current and current-1 versions.</li>\n<li>Disk storage is reduced on large multisite networks by storing the <code>jetpack_file_data</code> option in the <code>wp_sitemeta</code> table.</li>\n<li>Jetpack plan data now uses the WordPress.com REST API.</li>\n<li>Slovakian language files now rely on WordPress.org’s language packs.</li>\n</ul>\n<p><strong>Accessibility Improvements</strong></p>\n<ul>\n<li>Improved post details clipping for better screen reader support.</li>\n<li>Updated custom language packs for multiple languages.</li>\n</ul>\n<p><strong>Security Improvements</strong></p>\n<ul>\n<li>We now avoid path disclosure via cookies in PHP error messages.</li>\n</ul>\n<p><strong>Compatibility Improvements</strong></p>\n<ul>\n<li>Removed deprecated functions <code>get_theme</code> and <code>get_current_theme</code>.</li>\n<li>Publicize now works with third-party plugins like WP Recipe Maker.</li>\n<li>Open Graph Meta Tags are now enabled when you use the “Head, Footer and Post Injections” plugin.</li>\n<li>Better support for WooCommerce data sync and backup.</li>\n<li>We now also sync the <code>sync_via_cron</code> setting, the user’s chosen language, and WP Super Cache’s globals and constants.</li>\n<li>We no longer sync post types from the WordPress Automatic Plugin and RSS AutoPilot to avoid synchronization issues.</li>\n<li>Sync settings can now be edited from the WordPress.com REST API to better troubleshoot sync issues.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Gravatar is always displayed in Settings.</li>\n<li>Submenu items always use relative links.</li>\n<li>Contact Form avoids PHP notices when using the form in a Text widget.</li>\n<li>Content Options now correctly displays single characters word count on sites with multibyte languages.</li>\n<li>Administrator area translations fixed for several languages.</li>\n<li>Added proper support for Formal/Informal translation versions for languages that support them.</li>\n<li>Site Icons are always used as fallback Open Graph Image tags.</li>\n<li>Protect removes port number when server returns a port alongside a stored IP address.</li>\n<li>Filters ensure that more than 1,024 posts can be excluded from Related Posts.</li>\n<li>When the email is already subscribed we now show the correct notification in the subscription form.</li>\n<li>When using the Email sharing button, we now avoid syntax errors due to unexpected characters in the from name.</li>\n<li>Remove deprecated <code>jetpack_publicize_post</code> action.</li>\n<li>VideoPress now avoids PHP Notices when fetching video information.</li>\n<li>Instagram base URL now uses <code>www</code> in the Social Media Icons widget.</li>\n<li>All values entered in Facebook Page Plugin widget settings are now escaped.</li>\n<li>Widget Visibility now avoids memory issues on sites with a lot of registered users.</li>\n</ul>\n<h4>4.7.1</h4>\n<ul>\n<li>Release date: March 14th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-48Y</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Carousel: avoid javascript errors that may cause issues with Slideshows or Tiled Galleries.</li>\n<li>Markdown: always enable Markdown for posts whenever the module is active.</li>\n<li>Sharing: make sure that sharing buttons open in a small pop-up instead of a separate window.</li>\n<li>SSO: Avoid token or nonce errors when trying to log in to your site via the Secure Sign On option.</li>\n<li>VideoPress: add in the ability to get video thumbnails from the WordPress.com REST API.</li>\n<li>Widgets: improve rendering of the Image Widget via Photon.</li>\n<li>Widget Visibility: avoid empty widget visibility rules after updating to Jetpack 4.7.</li>\n<li>Widget Visibility: restore the option to make widgets appear on archive pages of different Custom Post Types.</li>\n<li>Widget Visibility: migrate widget visibility settings to the new major Page rule for Custom Post Types.</li>\n<li>Widget Visibility: add missing CSS for widget visibility settings on sites using an RTL language.</li>\n</ul>\n<h4>4.7</h4>\n<ul>\n<li>Release date: March 7th, 2017</li>\n<li>Release post: http://wp.me/p1moTy-46L</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Quickly jump to post specific stats on WordPress.com with a new link.</li>\n<li>We’ve added more information to our debug tools to improve your support experience.</li>\n<li>New HTML5 versions of our house ads are out.</li>\n<li>Display custom copyright EXIF information in the Carousel with this new filter.</li>\n<li>We’ve highlighted the ability to export Contact Form feedback as it was being overlooked.</li>\n<li>If you have images on WordPress.com we’re going to skip using Photon when the images include resize parameters.</li>\n<li>It is now possible to use the Sharing filter to customize the emails sent from the Email Sharing button.</li>\n<li>We’ve updated the library powering the Print link in the Recipe shortcode.</li>\n<li>Customize the speed and display of your slideshows with new Slideshow shortcode filters.</li>\n<li>The Twitch.tv shortcode now uses Twitch’s new embedded player.</li>\n<li>Social Menus now come with the option to use SVG icons.</li>\n<li>Customize the content of the Display Posts Widget with a new filter.</li>\n<li>We’ve added a new email field to the Contact Info Widget.</li>\n<li>The Image and the Text widgets now use Photon if it is enabled.</li>\n<li>The WordPress.com REST API got several updates including using <code>register_rest_route()</code> consistently for registering, new date and time format settings, a filter for theme info results, new links and endpoints, and more.</li>\n<li>We cleaned up the Google+ Shortcode JS library and added a way to filter the SlideShare shortcode.</li>\n</ul>\n<p><strong>Performance Improvements</strong></p>\n<ul>\n<li>Experience better performance with single page load caching of the media summary.</li>\n<li>We made some improvements to avoid slow queries on sites with thousands of images.</li>\n<li>The Top Posts widget now utilizes an endpoint from the WP.com REST API improving performance.</li>\n<li>Improve development mode performance by only calling <code>site_url()</code> once.</li>\n<li>We rewrote the way major/minor rules lists are generated to save bandwidth, and memory for sites using Widget Visibility.</li>\n<li>We’ve removed sync options that weren’t needed to save memory during the sync process.</li>\n</ul>\n<p><strong>Accessibility</strong></p>\n<ul>\n<li>We’ve improved the highlight of the stats range for a better visual experience and to make it consistent with other areas of the dashboard.</li>\n<li>Added a missing label to one of the fields in the Email sharing dialog.</li>\n<li>We’ve enabled keyboard focus styling in the new admin interface.</li>\n<li>Increased padding to sharing buttons on mobile to avoid usability issues.</li>\n<li>We’ve replaced Widget Visibility text labels with icons to improve usability on smaller devices.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements:</strong></p>\n<ul>\n<li>We’ve added a filter to allow you to remove the Comment Form title.</li>\n<li>The Development Mode notice got an update to include all possible options to activate Development mode.</li>\n<li>Jetpack registration function got an update and cleanup.</li>\n<li>A notice displayed to WooCommerce store owners now detects when WooCommerce Services is installed, but not active.</li>\n<li>We’ve removed the Holiday Snow settings until you need them.</li>\n<li>Improved Infinite Scroll settings to reduce confusion.</li>\n<li>The HTML classes <code>infinite-scroll</code> and <code>neverending</code> are now applied using JS instead of PHP.</li>\n<li>We’ve updated the support link appearing when you’re locked out of your site.</li>\n<li>New Unit Tests were added to make sure Publicize doesn’t break when making changes to the Publicize process.</li>\n<li>We’ve added a sync filter to allow customizing timeout.</li>\n<li>The Top Posts widget now supports non-square image sizes.</li>\n<li>Added the Video GUID to the media API endpoint.</li>\n</ul>\n<p><strong>Improved Compatibility</strong></p>\n<ul>\n<li>Fixed some W3C validation errors in Comments.</li>\n<li>Infinite Scroll now works beautifully with the Twenty Seventeen Theme.</li>\n<li>Translate new terms easier with an improvement to the translator comments.</li>\n<li>We switched to use Core functions to retrieve the list of sites in a multisite network for more accurate results.</li>\n<li>We added Product visibility to post meta whitelist, for better control of products displayed in Related Posts.</li>\n<li>We no longer sync specific post meta data added by Postman or WP RSS Mutli Importer to avoid performance issues during the sync process.</li>\n<li>We’re now avoiding conflicts with plugins adding the core Video upload library to the post editor.</li>\n<li>Removed deprecated compatibility code for older versions of WordPress.</li>\n<li>We had some Shortcode conflicts with WordPress Post embeds, but that’s been fixed.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>The Carousel <code>jp_carousel_load_for_images_linked_to_file</code> filter wasn’t working well with Photon, this has been fixed.</li>\n<li>Carousel is now working well when loaded from infinite scroll.</li>\n<li>We removed double slashes from file paths in the Contact Form to avoid errors in specific server environments.</li>\n<li>Fixed a problem where CSS was being stripped when migrating from Jetpack’s Custom CSS to Core’s CSS editor.</li>\n<li>Our Debug Tool is now reporting the correct URL when WordPress lives in a subdirectory.</li>\n<li>Found and fixed a PHP error when uninstalling Jetpack.</li>\n<li>Infinite Scroll is no longer buggy when displaying the last page, and is more compatible with certain themes that were returning posts when there were none left to show.</li>\n<li>We’re now skipping Photon for .ashx files.</li>\n<li>The Twitter character counter in Publicize got a fix to display info correctly.</li>\n<li>Related Posts are now displaying correctly for everyone, and we brought back the <code>jetpack_sharing_headline_html</code> filter.</li>\n<li>We’ve improved Sharing to render custom sharing services correctly, include Open Graph Meta Tags, and avoid JavaScript errors when jQuery is enqueued in the footer.</li>\n<li>Synchronization scheduling issues have been resolved.</li>\n<li>We’re now trimming spaces in URLs for Image and Display Posts Widgets.</li>\n<li>Widget Visibility wasn’t playing nice on taxonomy pages, this is no longer the case.</li>\n<li>The WordPress.com REST API received a couple of fixes to remove PHP errors when editing via the WordPress.com interface, authentication errors when using third-party apps, and permission errors when trying to preview edited posts in the WordPress.com editor.</li>\n</ul>\n<h4>4.6</h4>\n<ul>\n<li>Release date: February 7, 2017</li>\n<li>Release post: http://wp.me/p1moTy-40g</li>\n</ul>\n<p><strong>New Features and Improvements</strong></p>\n<ul>\n<li>Enable Google Analytics without touching a line of code with this new Jetpack feature.</li>\n</ul>\n<p><strong>Performance Improvements</strong></p>\n<ul>\n<li>We’ve updated all outbound links to use HTTPS to improve performance and security.</li>\n<li>Photon now leverages a new WordPress core function to improve performance a bit.</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Keep an eye out for a note from WooCommerce on how your e-commerce store may benefit from our new USPS and CanadaPost shipping functionality.</li>\n<li>We’ve added an error message if Publicize isn’t functioning as it should be.</li>\n<li>The Twitter Widget timeline now displays the tweet limit count as 20, prior to this it appeared to have no limit.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements:</strong></p>\n<ul>\n<li>In an effort to help us better understand features that are being used, Twitter’s timeline widget and Twitter’s shortcodes now pass Jetpack’s partner ID.</li>\n<li>We’ve added new API endpoints allowing us to enable translation auto-updates and pull post rows and metadata for backups.</li>\n<li>We’re now retrieving all feature settings in the readable <code>/settings</code> endpoint.</li>\n</ul>\n<p><strong>Improved Compatibility</strong></p>\n<ul>\n<li>We’ve eliminated some notices and warnings when using Jetpack on a server running PHP 7.1 or on servers where <code>print_r()</code> is disabled.</li>\n<li>Photon now avoids PHP notices when your site is using plugins that do srcset CDN replacement.</li>\n<li>When the sharing options appear to be incorrect due to site configuration issues we force it to retrieve the right options avoiding potential fatal errors.</li>\n<li>We’ve added some shortcode CSS and widget class names prefixes to avoid conflicts with other plugins.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Some sites were using illegal multibyte characters and failing to sync posts, this has been fixed.</li>\n<li>IE11 was giving our admin layout a bit of a problem but we rectified that.</li>\n<li>There were some PHP notices popping up when a site has no posts so we got rid of them.</li>\n<li>The new Jetpack Ads feature will auto disable itself if your Jetpack plan doesn’t support the feature.</li>\n<li>We fixed a few PHP notices and warnings related to the Custom CSS feature.</li>\n<li>The connection banner’s “dismiss” icon was giving us a little trouble, but we got it fixed right up.</li>\n<li>The Likes feature was showing a PHP notice when there was no $post object, this has been fixed.</li>\n<li>We’ve brought back the Twitter Widget “noscrollbar” option.</li>\n<li>We’re now forcing only Photon URLs to HTTPS as your custom CDN URLs may use a different protocol.</li>\n<li>If a Publicize connection is not shared with all users on the site, do not trigger Publicize for the other users.</li>\n<li>Publicize was having trouble working with scheduled posts, this should be fixed now.</li>\n<li>SSO may not have been displaying the login form when using JSON API authorization. Sorry about that, we’ve fixed it.</li>\n<li>We’ve eliminated some PHP notices that were showing with some Shortcodes.</li>\n<li>There was a Top Posts Widget image size issue when using list layouts, but is no longer causing issues.</li>\n<li>We fixed some notices and warnings when updating data from the WordPress.com central interface.</li>\n</ul>\n<h4>4.5</h4>\n<ul>\n<li>Release date: January 17, 2017</li>\n<li>Release post: http://wp.me/p1moTy-3Kc</li>\n</ul>\n<p>This release introduces a brand-new module, Jetpack Ads, a brand-new VideoPress feature, and a lot of new shortcodes and widgets.</p>\n<p><strong>Exciting New Features and Improvements:</strong></p>\n<ul>\n<li>Generate revenue from your site with an all-new WordAds feature, which when enabled displays high-quality ads for your visitors.</li>\n<li>Today we are proud to release a fully redesigned VideoPress interface for easy uploading, management, and add-free playback of your fantastic videos now fully integrated with your Jetpack Premium or Professional plans.</li>\n<li>Spice up your sidebar with new widgets that display blog stats, author info, “Follow my blog” buttons, and even an event countdown.</li>\n<li>Embed your amazing 360° photos with the VR shortcode</li>\n<li>Link your visitors to your Tumblr or Twitch pages using the new icons in the Social Media Icons Widget.</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Use the beautiful Jetpack carousel feature to display single images.</li>\n<li>Turn on and update Related Posts right from the Customizer.</li>\n<li>Customize the output of the Related Posts headline using a new filter.</li>\n</ul>\n<p><strong>Performance and Security Improvements:</strong></p>\n<ul>\n<li>Your Custom CSS will now be served in a separate stylesheet when it is more than 2,000 characters.</li>\n<li>Your Stats queries are now always being made over HTTPS.</li>\n<li>Holiday Snow files now load in the footer, but rest assured the snow still falls from above.</li>\n<li>We have improved Jetpack’s synchronization process to support more plugins and use less resources.</li>\n<li>The jQuery Cycle script used by slideshow galleries is now minified, resulting in faster loading times.</li>\n</ul>\n<p><strong>Slightly Less Exciting Enhancements:</strong></p>\n<ul>\n<li>The JSON API now allows updating translations and alternative theme installation methods.</li>\n<li>Public Custom Post Types are now automatically available via the WordPress.com REST API.</li>\n<li>We’ve added a token-based authentication mechanism to the REST API in order for the site to be able to receive authenticated requests from WordPress.com.</li>\n<li>Use <code>sync</code> commands in Jetpack’s WP CLI.</li>\n<li>You can now set the value for options directly in the Contact Form shortcode.</li>\n<li>Updated some verbiage around IP Whitelisting on the Protect settings screen.</li>\n<li>Custom sharing buttons got some new variables.</li>\n<li>RIP blip.tv — we’ve removed your shortcode.</li>\n<li>Improved Image and Display Posts Widget settings to provide more explanation and better error messages.</li>\n<li>We’ve added a few new Content Options to the Customizer for supported themes.</li>\n<li>Improved the Facebook Widget to avoid confusion when editing width and height settings.</li>\n<li>Added and improved a few shortcodes.</li>\n</ul>\n<p><strong>Improved Compatibility:</strong></p>\n<ul>\n<li>If your server is misconfigured and we can’t get an IP address we’re going to deactivate Protect and send you a notice so you’re in the loop.</li>\n<li>The WPML compatibility file wasn’t loading at the right time, but we’ve fixed that.</li>\n<li>We’ve improved compatibility with tools like Cavalcade to avoid stuck Cron jobs.</li>\n<li>Some selected WooCommerce data (order items and order item meta) are now syncing to WordPress.com.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>You’ll notice numerous design improvements to the Jetpack UI.</li>\n<li>Accessibility is important to us so we’ve made some improvements there.</li>\n<li>Missing attachments in the Carousel were causing an infinite loop, but we’ve corrected that.</li>\n<li>Eliminated a PHP Notice when running the CLI <code>wp jetpack</code> command.</li>\n<li>PHP warnings in the Restaurant Menu Post type have seen their last day with us.</li>\n<li>Fixed a bug that displayed the wrong connected user for up to 24 hours after they disconnected.</li>\n<li>Removed a deprecated function to prevent notices when using Infinite Scroll in the Customizer.</li>\n<li>Long titles in Jetpack widgets weren’t looking so great, so we cleaned them up.</li>\n<li>Before now you weren’t able to create a child category from WordPress.com. Now you can!</li>\n<li>Rogue colons were showing up in the related posts area on sites with the Twenty Fourteen and Twenty Sixteen themes.</li>\n<li>Fixed a ReCaptcha error on the Email sharing button.</li>\n<li>Confirmed Instagram embeds actually load when using Infinite Scroll.</li>\n<li>Site Icons now display on the WordPress.com site management interface.</li>\n<li>Set a default time limit of 30 seconds when sending sync requests via Cron.</li>\n<li>Synchronized supported shortcodes on a site.</li>\n<li>Fixed an issue where empty categories weren’t showing with the Widget Visibility feature dropdown.</li>\n<li>Fixed various little bugs when working with multiple widgets in the Customizer and in the Widgets admin screen.</li>\n<li>Added a Translate Widget default title in case you haven’t defined one.</li>\n<li>The Top Posts Widget now avoids layout issues when using the Grid layout while displaying a post without an image.</li>\n</ul>\n<h4>4.4.2</h4>\n<ul>\n<li>Release date: December 6, 2016</li>\n<li>Release post: http://wp.me/p1moTy-3JR</li>\n</ul>\n<p>This release improves Jetpack compatibility with WordPress 4.7.</p>\n<p><strong>Compatibility changes</strong></p>\n<ul>\n<li>Custom CSS: Made the Custom CSS feature of Jetpack compatible with the CSS Customizer editor in WordPress 4.7.</li>\n<li>Sync: improved compatibility with the wp-missed-schedule plugin.</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Featured Content: made sure there is no infinite loop when removing the featured tag from the tag list.</li>\n<li>Admin: made sure help tabs are not being hidden.</li>\n<li>Admin: made At a Glance page work nicely when there is no backup data yet.</li>\n<li>Sync: now making sure that needed classes are loaded, preventing errors.</li>\n<li>Sync: cleared out unneeded scheduled jobs.</li>\n</ul>\n<h4>4.4.1</h4>\n<ul>\n<li>Release date: November 22, 2016</li>\n<li>Release post: http://wp.me/p1moTy-3JR</li>\n</ul>\n<p><strong>Bug Fixes</strong></p>\n<ul>\n<li>Fixed an issue where some users with slower servers would get an error on the Jetpack dashboard when <code>WP_DEBUG</code> was enabled.</li>\n<li>Fixed an issue where users on a Jetpack Professional plan who were paying monthly (as opposed to annually) wouldn’t be able to enable SEO Tools.</li>\n</ul>\n<h4>4.4</h4>\n<ul>\n<li>Release date: November 21, 2016</li>\n<li>Release post: http://wp.me/p1moTy-3FE</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Additional unit tests have been added to improve Jetpack’s development process and stability.</li>\n<li>Custom post types have been added to the WP REST API output.</li>\n<li>Many of the screenshots throughout the plugin have been replaced by SVGs in order to make Jetpack smaller.</li>\n<li>New endpoints have been added to allow the installation of plugin and theme zip files via the API.</li>\n<li>Twelve new filters to make Jetpack more extensible! See: http://wp.me/p1moTy-3FE.</li>\n<li>New widget: “Google Translate” to allow users to translate your site into their own language.</li>\n<li>New widget: “My Community” where you can see who recently interacted with your site.</li>\n<li>One of the biggest issues facing Jetpack users for years now has been difficulties in moving sites from one domain name to another. This update makes strides towards improving that process.</li>\n<li>Photon now uses HTTPS by default. Secure all the things!</li>\n<li>There are now helpful hints throughout the admin interface to make Jetpack easier to use.</li>\n<li>We now allow you to embed pins, boards and profiles from Pinterest.</li>\n<li>We’ve added a new feature: SEO Tools, available to Jetpack Professional subscribers. You can read more about our plans here: https://jetpack.com/features/</li>\n<li>We’ve made numerous improvements to the data sync process.</li>\n</ul>\n<p><strong>Bug Fixes:</strong></p>\n<ul>\n<li>Fixed link to Akismet settings.</li>\n<li>Improved compatibility between Infinite Scroll and WPML.</li>\n<li>Move email notification settings back with the other email settings in the Discussion Settings.</li>\n<li>Various minor performance/compatibility fixes.</li>\n</ul>\n<h4>4.3.2</h4>\n<ul>\n<li>Release date: October 13, 2016</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Unsaved changes were getting lost when users were navigating away from settings so we put in a confirmation message to prevent this from happening.</li>\n<li>We’ve stopped counting carousel views in stats by default, you can use the <code>jetpack_enable_carousel_stats</code> filter to enable counting them again.</li>\n<li>Stats are now responding faster.</li>\n<li>There were several improvements and repairs made to sync including additional endpoints, performance enhancements, whitelisted data, better decision making around when to sync information, and more.</li>\n<li>Markdown now has a CSS class on footnotes.</li>\n</ul>\n<p><strong>Improved Compatibility:</strong></p>\n<ul>\n<li>We’ve improved compatibility with Kinsta by automatically turning on Staging Mode for Jetpack when in a staging environment.</li>\n</ul>\n<p><strong>Bug Fixes:</strong></p>\n<ul>\n<li>Several fixes have been made to sync to repair issues with Publicize, Notifications, and Subscriptions.</li>\n<li>We removed PHP warnings by checking to make sure json language files like jetpack-en_US.json are readable before we load them.</li>\n<li>We found an unused option in Gravatar Hovercard settings and removed it.</li>\n<li>The correct support link is now being used to make it easier for you to connect with the Jetpack team if you need us.</li>\n<li>The permissions check for plugin information retrieval was fixed as well.</li>\n<li>Some plugins were adding content on outbound http requests causing an infinite loop we fixed this right up.</li>\n<li>We removed some warnings that were occurring when translations didn’t exist by adding a fallback.</li>\n<li>We’ve added Moroccan Arabic translations, and switched to language packs for Croatian, Spanish (Chile) and Greek.</li>\n<li>Sync was running into issues so we’ve limited dequeue time to 1/3 of PHP’s max execution time, which has unclogged the problem.</li>\n<li>We’re now sending full and incremental queues separately so that a failure in one doesn’t block the other.</li>\n<li>There was a JavaScript enqueuing error with our Sharing feature that has been repaired.</li>\n<li>The Top Posts widget now includes the ability to list attachment (media) pages.</li>\n<li>We weren’t building CPT links correctly resulting in bad navigation, which is now fixed.</li>\n<li>We removed the form legend for default Tiled Gallery settings as it doesn’t relate.</li>\n<li>With shortcodes we now return early from processing them if no string is passed, as they are required.</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/plugins/jetpack/feed/\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:33:\"\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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";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:49:\"https://wordpress.org/plugins/wordpress-importer/\";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:\"Thu, 20 May 2010 18:48:47 +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:13:\"Uncategorized\";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:52:\"https://wordpress.org/plugins-wp/wordpress-importer/\";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:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4618:\"<p><!--section=description--></p>\n<p>The WordPress Importer will import the following content from a WordPress export file:</p>\n<ul>\n<li>Posts, pages and other custom post types</li>\n<li>Comments</li>\n<li>Custom fields and post meta</li>\n<li>Categories, tags and terms from custom taxonomies</li>\n<li>Authors</li>\n</ul>\n<p>For further information and instructions please see the <a href=\"https://codex.wordpress.org/Importing_Content#WordPress\" rel=\"nofollow\">Codex page on Importing Content</a></p>\n<h3>Filters</h3>\n<p>The importer has a couple of filters to allow you to completely enable/block certain features:</p>\n<ul>\n<li><code>import_allow_create_users</code>: return false if you only want to allow mapping to existing users</li>\n<li><code>import_allow_fetch_attachments</code>: return false if you do not wish to allow importing and downloading of attachments</li>\n<li><code>import_attachment_size_limit</code>: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)</li>\n</ul>\n<p>There are also a few actions available to hook into:</p>\n<ul>\n<li><code>import_start</code>: occurs after the export file has been uploaded and author import settings have been chosen</li>\n<li><code>import_end</code>: called after the last output from the importer</li>\n</ul>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>The quickest method for installing the importer is:</p>\n<ol>\n<li>Visit Tools -> Import in the WordPress dashboard</li>\n<li>Click on the WordPress link in the list of importers</li>\n<li>Click “Install Now”</li>\n<li>Finally click “Activate Plugin & Run Importer”</li>\n</ol>\n<p>If you would prefer to do things manually then follow these instructions:</p>\n<ol>\n<li>Upload the <code>wordpress-importer</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>\n<li>Go to the Tools -> Import screen, click on WordPress</li>\n</ol>\n</dd>\n<dt>Help! I’m getting out of memory errors or a blank screen.</dt>\n<dd>\n<p>If your exported file is very large, the import script may run into your host’s configured memory limit for PHP.</p>\n<p>A message like “Fatal error: Allowed memory size of 8388608 bytes exhausted” indicates that the script can’t successfully import your XML file under the current PHP memory limit. If you have access to the php.ini file, you can manually increase the limit; if you do not (your WordPress installation is hosted on a shared server, for instance), you might have to break your exported XML file into several smaller pieces and run the import script one at a time.</p>\n<p>For those with shared hosting, the best alternative may be to consult hosting support to determine the safest approach for running the import. A host may be willing to temporarily lift the memory limit and/or run the process directly from their end.</p>\n<p>— <a href=\"https://codex.wordpress.org/Importing_Content#Before_Importing\" rel=\"nofollow\">WordPress Codex: Importing Content</a></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>0.6.3</h4>\n<ul>\n<li>Add support for import term metadata.</li>\n<li>Fix bug that caused slashes to be stripped from imported content.</li>\n<li>Fix bug that caused characters to be stripped inside of CDATA in some cases.</li>\n<li>Fix PHP notices.</li>\n</ul>\n<h4>0.6.2</h4>\n<ul>\n<li>Add wp_import_existing_post filter. See: https://core.trac.wordpress.org/ticket/33721</li>\n</ul>\n<h4>0.6</h4>\n<ul>\n<li>Support for WXR 1.2 and multiple CDATA sections</li>\n<li>Post aren’t duplicates if their post_type’s are different</li>\n</ul>\n<h4>0.5.2</h4>\n<ul>\n<li>Double check that the uploaded export file exists before processing it. This prevents incorrect error messages when<br />\nan export file is uploaded to a server with bad permissions and WordPress 3.3 or 3.3.1 is being used.</li>\n</ul>\n<h4>0.5</h4>\n<ul>\n<li>Import comment meta (requires export from WordPress 3.2)</li>\n<li>Minor bugfixes and enhancements</li>\n</ul>\n<h4>0.4</h4>\n<ul>\n<li>Map comment user_id where possible</li>\n<li>Import attachments from <code>wp:attachment_url</code></li>\n<li>Upload attachments to correct directory</li>\n<li>Remap resized image URLs correctly</li>\n</ul>\n<h4>0.3</h4>\n<ul>\n<li>Use an XML Parser if possible</li>\n<li>Proper import support for nav menus</li>\n<li>… and much more, see <a href=\"https://core.trac.wordpress.org/ticket/15197\" rel=\"nofollow\">Trac ticket #15197</a></li>\n</ul>\n<h4>0.1</h4>\n<ul>\n<li>Initial release</li>\n</ul>\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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";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:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/all-in-one-seo-pack/#respond\";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:\"Fri, 30 Mar 2007 19:30:03 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins-wp/all-in-one-seo-pack/\";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:83:\"The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4934:\"<p><!--section=description--></p>\n<p>Use <strong>All in One SEO Pack</strong> to optimize your WordPress site for SEO. It’s easy and works out of the box for beginners, and has advanced features and an API for developers.</p>\n<p><strong><a href=\"http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=readme_utpv\" rel=\"nofollow\">Upgrade to Pro Version</a></strong></p>\n<p><a href=\"http://semperplugins.com/support/?loc=readme_ps\" rel=\"nofollow\">Premium Support</a></p>\n<p>First created in 2007, see why AIOSEO is one of the all time most downloaded plugins for WordPress.</p>\n<ul>\n<li>XML Sitemap support – submit your sitemap to Google and Bing and improve your SEO</li>\n<li>Google AMP support (Accelerated Mobile Pages)</li>\n<li>Google Analytics support</li>\n<li>Support for SEO on Custom Post Types</li>\n<li>Advanced Canonical URLs</li>\n<li>Redirect attachment pages to parent post</li>\n<li>Automatically notifies search engines like Google and Bing about changes to your site</li>\n<li>Built-in API so other plugins/themes can access and extend functionality</li>\n<li>ONLY free plugin to provide SEO Integration for e-Commerce sites, including WooCommerce</li>\n<li>Nonce Security built into All in One SEO Pack</li>\n<li>Automatically optimizes your <strong>titles</strong> for Google and other search engines</li>\n<li>Generates <strong>META tags automatically</strong></li>\n<li>Avoids the typical duplicate content found on WordPress blogs</li>\n<li>For beginners, you don’t even have to look at the options, it works out-of-the-box. Just install.</li>\n<li>For advanced users, you can fine-tune everything to optimize your SEO</li>\n<li>You can override any title and set any META description and any META keywords you want.</li>\n<li>Compatibility with many other plugins</li>\n<li>Translated into 57 languages</li>\n<li>PHP 7 100% Compatible</li>\n</ul>\n<p>Follow me on Twitter to keep up with the latest updates <a href=\"http://twitter.com/michaeltorbert/\" rel=\"nofollow\">Michael<br />\nTorbert</a></p>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/46MR4FboMaA?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n<h4>Tags</h4>\n<p>seo, SEO, All in One, google, meta, meta description, search engine optimization, xml sitemap, xml sitemaps, google sitemap, sitemap, sitemaps, robots meta, rss, rss footer, yahoo, bing, widget, Post, plugin, admin, posts, shortcode, sidebar, twitter, page, images, comments, image, news sitemaps, XML News Sitemaps, WordPress SEO, multisite, canonical, nofollow, noindex, keywords, meta keywords, description, webmaster tools, google webmaster tools, seo pack, schema.org, search engines, custom post types, custom taxonomies, canonical</p>\n<p><!--section=faq--></p>\n<p>Please visit our complete <strong><a href=\"http://semperplugins.com/documentation/\" rel=\"nofollow\">Documentation</a></strong> before requesting support for SEO from the<br />\n<strong><a href=\"http://semperplugins.com/support/\" rel=\"nofollow\">All in One SEO Pack Support Forum</a></strong></p>\n<p><a href=\"http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/translations-for-all-in-one-seo-pack/\" rel=\"nofollow\">Translations</a></p>\n<dl>\n<dt>General Settings</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/uGt6CVbA5bI?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>XML Sitemaps</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/zvNU92Low8A?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>Social Meta</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/Dfe49FiiAog?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>Performance</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/A0VKinM5s00?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<p>All in One SEO Pack <a href=\"http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-pack-release-history/\" rel=\"nofollow\">Changelog</a></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/all-in-one-seo-pack/feed/\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";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:42:\"https://wordpress.org/plugins/woocommerce/\";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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/woocommerce/#respond\";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:\"Tue, 27 Sep 2011 15:32:48 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins-wp/woocommerce/\";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:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WooThemes\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:38289:\"<p><!--section=description--></p>\n<p>WooCommerce is a free eCommerce plugin that allows you to sell anything, beautifully. Built to integrate seamlessly with WordPress, WooCommerce is the world’s favorite eCommerce solution that gives both store owners and developers complete control.</p>\n<p>With endless flexibility and access to hundreds of free and premium WordPress extensions, WooCommerce now powers 30% of all online stores — more than any other platform.</p>\n<iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/1KahlicghaE?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe>\n<h4>Sell anything, anywhere</h4>\n<p>With WooCommerce, you can sell both physical and digital goods in all shapes and sizes, offer product variations, multiple configurations, and instant downloads to shoppers, and even sell affiliate goods from online marketplaces.</p>\n<p>With premium extensions, you can offer bookings, memberships, and recurring subscriptions. Perhaps you’d like to sell monthly subscriptions for physical goods, or offer your members a discount on digital downloads? It’s all possible.</p>\n<h4>Ship wherever you like</h4>\n<p>Offer free shipping, flat rate shipping, or make real-time calculations. Limit your shipments to specific countries, or open your store up to the world. Shipping is highly configurable, and WooCommerce even supports drop shipping.</p>\n<h4>Extensive payment options</h4>\n<p>WooCommerce comes bundled with the ability to accept major credit cards, PayPal, BACS (bank transfers), and cash on delivery. Need additional options? More than 140 region-specific gateways integrate with WooCommerce, including popular choices like Stripe, Authorize.Net, and Amazon Payments.</p>\n<h4>You control it all — forever</h4>\n<p>WooCommerce gives you complete control of your store, from taxes to stock levels to customer accounts. Add and remove extensions, change your design, and switch settings as you please. It’s all under your control.</p>\n<p>One of the biggest risks of using a hosted eCommerce platform is what happens to your store if the provider closes up shop. With WooCommerce, you have complete control, so there’s never any reason to worry. Your data belongs to you — and it’s kept secure, thanks to regular audits by industry leaders.</p>\n<h4>Define your style with Storefront</h4>\n<p><a href=\"https://wordpress.org/themes/storefront/\" rel=\"nofollow\">Storefront</a> is a free WordPress theme available to any WooCommerce store. Along with deep WooCommerce integration, Storefront prioritizes speed and uptime while eliminating theme and plugin conflicts during major updates.</p>\n<p>Define your style even further by customizing Storefront to your liking or choosing from one of our several <a href=\"https://woocommerce.com/product-category/themes/storefront-child-theme-themes/\" rel=\"nofollow\">Storefront child themes</a>. It’s all up to you, and all open source.</p>\n<h4>Built with developers in mind</h4>\n<p>Extendable, adaptable, and open source — WooCommerce was created with developers in mind. With its strong, robust framework, you can scale your client’s store all the way from basic to high-end (infinity and beyond).</p>\n<p>Built with a REST API, WooCommerce can integrate with virtually any service. Your store’s data can be accessed anywhere, anytime, 100% securely. WooCommerce allows developers to easily create, modify, and grow a store that meets their specifications.</p>\n<p>No matter the size of the store you want to build, WooCommerce will scale to meet your requirements. With a growing collection of more than 300 extensions, you can enhance each store’s features to meet your client’s unique needs — or even create your own solution.</p>\n<p>If security is a concern, rest easy. WooCommerce is audited by a dedicated team of developers working around the clock to identify and patch any and all discovered bugs.</p>\n<p>We also support WooCommerce and all its extensions with comprehensive, easily-accessible documentation. With our docs, you’ll learn how to create the exact site your client needs.</p>\n<h4>Extensions galore</h4>\n<p>WordPress.org is home to some amazing extensions for WooCommerce, including:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-google-analytics-integration/\">Google Analytics</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-delivery-notes/\">Delivery Notes</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/\">PDF Invoices and Packing Slips</a></li>\n<li><a href=\"https://wordpress.org/plugins/affiliates-woocommerce-light/\">Affiliates Integration Light</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-new-product-badge/\">New Product Badges</a></li>\n</ul>\n<p>Keen to see them all? Search WordPress.org for ‘WooCommerce’ to dive in.</p>\n<p>If you’re looking for something endorsed and maintained by the developers who built WooCommerce, there are a plethora of premium eCommerce extensions, the most popular of which include:</p>\n<ul>\n<li><a href=\"https://woocommerce.com/products/woocommerce-subscriptions/\" rel=\"nofollow\">WooCommerce Subscriptions</a></li>\n<li><a href=\"https://woocommerce.com/products/woocommerce-memberships/\" rel=\"nofollow\">WooCommerce Memberships</a></li>\n<li><a href=\"https://woocommerce.com/products/woocommerce-bookings/\" rel=\"nofollow\">WooCommerce Bookings</a></li>\n<li><a href=\"https://woocommerce.com/products/dynamic-pricing/\" rel=\"nofollow\">Dynamic Pricing</a></li>\n<li><a href=\"https://woocommerce.com/products/table-rate-shipping/\" rel=\"nofollow\">Table Rate Shipping</a></li>\n<li><a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">Product CSV Import Suite</a></li>\n</ul>\n<p>And there’s plenty more where they came from. Visit our <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/\" rel=\"nofollow\">extensions page</a> to find out everything you’re capable of and all that’s possible with premium WooCommerce extensions.</p>\n<h4>Join our growing community</h4>\n<p>When you download WooCommerce, you join a community of more than a million store owners, developers, and WordPress enthusiasts. We’re one of the fastest-growing open source communities online, and whether you’re a n00b or a Ninja, we’d love to have you!</p>\n<p>If you’re interested in contributing to WooCommerce we’ve got more than 350 contributors, and there’s always room for more. Head over to the <a href=\"https://github.com/woocommerce/woocommerce\" rel=\"nofollow\">WooCommerce GitHub Repository</a> to find out how you can pitch in.</p>\n<p>Want to add a new language to WooCommerce? Swell! You can contribute via <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce\" rel=\"nofollow\">translate.wordpress.org</a>.</p>\n<p>And, finally, consider joining or spearheading a WooCommerce Meetup locally, more about those <a href=\"https://woocommerce.com/woocommerce/meetups/\" rel=\"nofollow\">here</a>.</p>\n<p><!--section=installation--></p>\n<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP version 5.2.4 or greater (PHP 5.6 or greater is recommended)</li>\n<li>MySQL version 5.0 or greater (MySQL 5.6 or greater is recommended)</li>\n<li>Some payment gateways require fsockopen support (for IPN access)</li>\n<li>WooCommerce 2.5 requires WordPress 4.1+</li>\n<li>WooCommerce 2.6 requires WordPress 4.4+</li>\n</ul>\n<p>Visit the <a href=\"https://docs.woocommerce.com/document/server-requirements/\" rel=\"nofollow\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.</p>\n<p>In the search field type “WooCommerce” and click Search Plugins. Once you’ve found our eCommerce plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking “Install Now”.</p>\n<h4>Manual installation</h4>\n<p>The manual installation method involves downloading our eCommerce plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains <a href=\"https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation\" rel=\"nofollow\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work like a charm; as always though, ensure you backup your site just in case.</p>\n<p>If on the off-chance you do encounter issues with the shop/category pages after an update you simply need to flush the permalinks by going to WordPress > Settings > Permalinks and hitting ‘save’. That should return things to normal.</p>\n<h4>Dummy data</h4>\n<p>WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> or use our <a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">CSV Import Suite plugin</a> to import dummy_data.csv and dummy_data_variations.csv.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP version 5.2.4 or greater (PHP 5.6 or greater is recommended)</li>\n<li>MySQL version 5.0 or greater (MySQL 5.6 or greater is recommended)</li>\n<li>Some payment gateways require fsockopen support (for IPN access)</li>\n<li>WooCommerce 2.5 requires WordPress 4.1+</li>\n<li>WooCommerce 2.6 requires WordPress 4.4+</li>\n</ul>\n<p>Visit the <a href=\"https://docs.woocommerce.com/document/server-requirements/\" rel=\"nofollow\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t need to leave your web browser. To do an automatic install of WooCommerce, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.</p>\n<p>In the search field type “WooCommerce” and click Search Plugins. Once you’ve found our eCommerce plugin you can view details about it such as the point release, rating and description. Most importantly of course, you can install it by simply clicking “Install Now”.</p>\n<h4>Manual installation</h4>\n<p>The manual installation method involves downloading our eCommerce plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains <a href=\"https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation\" rel=\"nofollow\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work like a charm; as always though, ensure you backup your site just in case.</p>\n<p>If on the off-chance you do encounter issues with the shop/category pages after an update you simply need to flush the permalinks by going to WordPress > Settings > Permalinks and hitting ‘save’. That should return things to normal.</p>\n<h4>Dummy data</h4>\n<p>WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> or use our <a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">CSV Import Suite plugin</a> to import dummy_data.csv and dummy_data_variations.csv.</p>\n</dd>\n<dt>Where can I find WooCommerce documentation and user guides?</dt>\n<dd>\n<p>For help setting up and configuring WooCommerce please refer to our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/getting-started/\" rel=\"nofollow\">user guide</a></p>\n<p>For extending or theming WooCommerce, see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/\" rel=\"nofollow\">codex</a>.</p>\n</dd>\n<dt>Where can I get support or talk to other users?</dt>\n<dd>\n<p>If you get stuck, you can ask for help in the <a href=\"https://wordpress.org/support/plugin/woocommerce\" rel=\"nofollow\">WooCommerce Plugin Forum</a>.</p>\n<p>For help with premium extensions from WooThemes, use <a href=\"https://support.woothemes.com/\" rel=\"nofollow\">our helpdesk</a>.</p>\n</dd>\n<dt>Will WooCommerce work with my theme?</dt>\n<dd>\n<p>Yes; WooCommerce will work with any theme, but may require some styling to make it match nicely. Please see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/\" rel=\"nofollow\">codex</a> for help. If you’re looking for a theme with built in WooCommerce integration we recommend <a href=\"https://woocommerce.com/storefront/\" rel=\"nofollow\">Storefront</a>.</p>\n</dd>\n<dt>Where can I request new features, eCommerce themes and extensions?</dt>\n<dd>\n<p>You can vote on and request new features and extensions in our <a href=\"http://ideas.woothemes.com/forums/133476-woocommerce\" rel=\"nofollow\">WooIdeas board</a></p>\n</dd>\n<dt>Where can I report bugs or contribute to the project?</dt>\n<dd>\n<p>Bugs can be reported either in our support forum or preferably on the <a href=\"https://github.com/woocommerce/woocommerce/issues\" rel=\"nofollow\">WooCommerce GitHub repository</a>.</p>\n</dd>\n<dt>Where can I find the REST API documentation?</dt>\n<dd>\n<p>You can find the documentation of our REST API on the <a href=\"https://woocommerce.github.io/woocommerce-rest-api-docs/\" rel=\"nofollow\">WooCommerce REST API Docs</a>.</p>\n</dd>\n<dt>WooCommerce is awesome! Can I contribute?</dt>\n<dd>\n<p>Yes you can! Join in on our <a href=\"http://github.com/woocommerce/woocommerce/\" rel=\"nofollow\">GitHub repository</a> <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>3.0.7 – 2017-05-16</h4>\n<ul>\n<li>Fix – Display of grouped product permalinks + names.</li>\n<li>Fix – Ensure <code>wc_get_payment_gateway_by_order</code> has a valid order ID to avoid errors.</li>\n<li>Fix – Ensure <code>get_plugin_updates</code> exists in API.</li>\n<li>Fix – Correctly set rating term after updating product visibility.</li>\n<li>Fix – <code>is_ip_address</code> should be static.</li>\n<li>Fix – Handle clearing for 3, 4, and 5 columns in the product gallery.</li>\n<li>Fix – Some added protection against notices/errors in the assets and variation data-store files.</li>\n<li>Fix – If backorders are enabled, do not make variable products out of stock.</li>\n<li>Fix – Undefined function in <code>class-wc-embed.php</code>.</li>\n<li>Fix – Fix ‘base location’ not being returned via the settings API.</li>\n<li>Fix – When re-filling fields on checkout, only change the empty ones to avoid conflicts with gateway plugins and hidden fields.</li>\n<li>Fix – Make calculate tax function clear taxes if taxes are disabled on recalculation.</li>\n<li>Fix – Update all customer session address fields when updating via checkout.</li>\n<li>Fix – Support customer searches < 3 characters long, but with result limiting.</li>\n</ul>\n<h4>3.0.6 – 2017-05-09</h4>\n<ul>\n<li>Fix – Fixed conflict between global attributes and custom attributes with the same names.</li>\n<li>Fix – Added missing “id” to API for shipping zone methods to support the CLI.</li>\n<li>Fix – Incorrect use of <code>wc_format_price_range</code> in <code>get_price_html_from_to</code>.</li>\n<li>Fix – Clone each meta object when cloning WC_Data object to avoid modifying original meta stdClass objects.</li>\n<li>Fix – Fix non numeric warning for some order data.</li>\n<li>Fix – Fixed a warning when no customer country is defined for state input.</li>\n<li>Fix – Use term name when reordering so correct data is passed to the new order.</li>\n<li>Fix – Formatting issues in wc_display_item_meta.</li>\n<li>Fix – Check if IP address is valid in IP address detection code.</li>\n<li>Fix – wc_attribute_taxonomy_id_by_name should use wc_sanitize_taxonomy_name to prevent breaking special chars.</li>\n<li>Fix – Correct variable name in order structured data.</li>\n<li>Fix – Prepend new item keys with <code>$items_key</code> to make them unique.</li>\n<li>Fix – Hide offers from structured markup when blank.</li>\n<li>Fix – Fixed “Process to checkout” button color in Twenty seventeen dark theme.</li>\n<li>Fix – Only set reply-to if the email + name is set.</li>\n<li>Fix – Correctly exclude terms in wc_get_related_products.</li>\n<li>Fix – Reset post data prevents grouped products working in shortcodes.</li>\n<li>Fix – Fix min price range comparisons.</li>\n<li>Fix – Properly save order items in legacy REST API.</li>\n<li>Fix – Use correct full size for variation images.</li>\n<li>Fix – Add noscript style for gallery.</li>\n<li>Fix – Fix/duplicate potential stock reduction with paypal.</li>\n<li>Tweak – Improve _wc_term_recount performance.</li>\n<li>Tweak – Improve plugin update detection in system status report to reduce timeouts.</li>\n<li>Tweak – Improve “Save Order” button to reproduce WordPress post/page behavior.</li>\n<li>Tweak – Added zipcode validation for France.</li>\n<li>Dev – Added woocommerce_shop_order_search_results filter.</li>\n</ul>\n<h4>3.0.5 – 2017-04-28</h4>\n<ul>\n<li>Fix – Tooltip display within shipping zone modals.</li>\n<li>Fix – Fix missing title for actions column on mobile.</li>\n<li>Fix – Allow forward slash in telephone field.</li>\n<li>Fix – Sort grouped products by menu order when displaying.</li>\n<li>Fix – Fix term exclusion in term count queries.</li>\n<li>Fix – Filter invalid products before returning them for wc_get_products.</li>\n<li>Fix – Prevent orders being their own parent (causes errors).</li>\n<li>Fix – Correctly migrate legacy shipping taxes data.</li>\n<li>Fix – Make sure the meta data cache is not shared among instances.</li>\n<li>Fix – Correct the stock display notice when a variable product manages stock for it’s children.</li>\n<li>Fix – On multisite, add user to blog during checkout if not a user to prevent errors.</li>\n<li>Fix – Correct sale price date handling with some timezone setups.</li>\n<li>Fix – wc_attribute_taxonomy_id_by_name needs to use lowercase attribute slug to work.</li>\n<li>Fix – Make changes to the buyer’s company name in the shipping section of checkout persist.</li>\n<li>Tweak – Add required placeholder for meta fields in backend.</li>\n<li>Tweak – Don’t strtolower address strings on checkout validation messages.</li>\n<li>REST API – Prevent password change notification when creating a customer.</li>\n<li>REST API – Removed duplicated items returned in shipping and checkout endpoints.</li>\n<li>CLI – Fixed missing shipping zones route.</li>\n<li>Dev – Make get_price_html handling match 2.6 and pass all values through woocommerce_get_price_html filter.</li>\n<li>Dev – Legacy customer class missing get_address / get_address_2 functions.</li>\n<li>Dev – Restored filter <code>woocommerce_checkout_customer_id</code> during checkout validation.</li>\n<li>Dev – Adds missing <code>$this</code> argument for all <code>woocommerce_payment_complete_order_status</code> filters.</li>\n</ul>\n<h4>3.0.4 – 2017-04-20</h4>\n<ul>\n<li>Fix – Variations were not inheriting the product image and shipping class ID.</li>\n<li>Fix – Prevent rating/review counts being duplicated when duplicating products.</li>\n<li>Fix – Fixed gallery navigation between images with long captions.</li>\n<li>Fix – Support transparent PNG in the gallery by setting a background color.</li>\n<li>Fix – Removed name/company from the shipping address Google map links.</li>\n<li>Fix – Fixed the address field sorting script on the checkout.</li>\n<li>Fix – Fixed the upgrade routine for grouped products so that parents are unset.</li>\n<li>Fix – Fixed support for WordPress 4.7 user locale settings.</li>\n<li>Fix – Fixed default option filter for product types in the product meta box.</li>\n<li>Fix – Improved the css in Twenty Seventeen for dark color schemes.</li>\n<li>Fix – Fixed display of refunds in sales report.</li>\n<li>Fix – Updated <code>single-product/add-to-cart/variable.php</code> template version to 3.0.0 since it had changes since 2.6.</li>\n<li>Fix – Fixed warnings when product attribute do not exists.</li>\n<li>Fix – Used a div for comment-form-rating to prevent invalid nested markup.</li>\n<li>Fix – Fixed some logic that checks if order taxes are compound.</li>\n<li>Fix – Fixed SKU checks to only exclude products that are trashed.</li>\n<li>Fix – Fixed display of download permissions in first email sent after checkout.</li>\n<li>Fix – Hidden the backorder notification stock text when notification is disabled.</li>\n<li>Fix – Fixed incorrect stock numbers in low stock emails.</li>\n<li>Tweak – Removed the non-functional order total input box, and combined the recalculation buttons into one working button.</li>\n<li>Tweak – Updated Guided Tour videos.</li>\n<li>Tweak – Updated js-cookie.js to 2.1.4.</li>\n<li>Tweak – Updated schema.org URLs to use HTTPS.</li>\n<li>Tweak – Status report request timeouts.</li>\n<li>REST API – Fixed an issue that prevented deleting a term if errors were thrown during creation.</li>\n<li>REST API – Fixed reports endpoint when querying by date.</li>\n<li>REST API – Fixed ignored order parameters when changing order status.</li>\n<li>Dev – Support guest orders in <code>wc_get_orders</code> function.</li>\n<li>Dev – Fixed downloadable variation filters for download URLs.</li>\n<li>Dev – Added safeguards to prevent infinite loops while saving coupons, products and orders in admin.</li>\n<li>Dev – Added a fallback for <code>queue_transactional_email</code> if background sending is disabled.</li>\n<li>Dev – Added <code>has_shipping_address</code> helper method.</li>\n<li>Dev – Introduced <code>woocommerce_order_item_get_formatted_meta_data</code> filter.</li>\n<li>Dev – Made wc_add_order_item pass correct values to woocommerce_new_order_item.</li>\n<li>Dev – Fixed <code>legacy_posted_data</code> access in checkout class.</li>\n<li>Dev – Fixed undefined property notice in <code>WC_Order_Item::offsetGet</code>.</li>\n<li>Dev – Fixed PHP 7.1 warnings when using non-float values to <code>wc_get_weight()</code>.</li>\n<li>Dev – Fixed incorrect variable name in <code>wc_add_order_item()</code>.</li>\n</ul>\n<h4>3.0.3 – 2017-04-13</h4>\n<ul>\n<li>Fix – Fixed an issue with variation tax-classes when set to ‘parent’. This made taxes apply on top of the tax inclusive price in certain setups.</li>\n<li>Fix – Escaped attribute translations in the <code>cart.php</code> template and bumped the template version to match.</li>\n<li>Fix – Corrected the display of refund dates on the order screen.</li>\n<li>Fix – Fixed the grouped product visibility check in the grouped.php template and bumped the template version to match.</li>\n<li>Fix – Fixed the sale badge display for grouped products.</li>\n<li>Fix – Added the <code>itemReviewed</code> structured data for product reviews to make it validate.</li>\n<li>Fix – Made the <code>get_attribute</code> method work on variation objects.</li>\n<li>Tweak – Turned off the deferred email sending by default which was added in 3.0. Whilst it does improve performance, there were compatibility problems on some servers. It can be enabled with a filter if desired.</li>\n<li>Dev – Added backtrace information to the deprecation messages to help find problem plugins.</li>\n</ul>\n<h4>3.0.2 – 2017-04-12</h4>\n<ul>\n<li>Fix – Removed required states for GP, GF, KW, LB, MQ, RE and YT countries.</li>\n<li>Fix – Made cache in the [products] shortcode respect filters from plugins.</li>\n<li>Fix – Added missing <code>woocommerce_cross_sells_columns</code> filter.</li>\n<li>Fix – Fixed shortcode rendering on the shop page.</li>\n<li>Fix – Fixed incorrect sale dates when bulk editing variations.</li>\n<li>Fix – Fixed calls to wc_reduce_stock_levels in PayPal and Simplify gateways.</li>\n<li>Fix – Exclude “location” meta when reading customer meta data.</li>\n<li>Fix – Updated <code>emails/email-addresses.php</code>, <code>emails/email-order-details.php</code>, <code>content-single-product.php</code>, <code>checkout/form-shipping.php</code>, <code>myaccount/form-add-payment-method.php</code>, <code>myaccount/form-edit-address.php</code>, <code>myaccount/form-lost-password.php</code>, <code>myaccount/form-reset-password.php</code>, <code>myaccount/orders.php</code> and <code>myaccount/view-order.php</code> template version to 3.0.0 since they had changes since 2.6.</li>\n<li>Fix – Fixed default behavior of variation tax classes when originally set to “parent”.</li>\n<li>Fix – When duplicating products, do not copy slug, append “(Copy)” to the product name, correctly copy all meta data, and prevent children of grouped products being duplicated too.</li>\n<li>Fix – Removed duplicated items when outputting cross sells on the cart page.</li>\n<li>Fix – Fixed output of default “add to cart” text of external products in loops.</li>\n<li>Fix – Fixed backwards compatibility of guest checkout rules when being altered by plugins directly.</li>\n<li>Fix – Use correct thumbnail sizes for variation images in the new gallery.</li>\n<li>Fix – Fixed captions on thumbnails and main image in the new gallery.</li>\n<li>Fix – Trigger wc_fragments_loaded after add to cart fragment refresh.</li>\n<li>Fix – Download permissions; Convert dates to timestamp on read so UTC is preserved.</li>\n<li>Fix – Fixed notices under PHP 7.1 when sorting products by name (numeric).</li>\n<li>Fix – Added additional checks to ensure objects are read before using class methods to avoid errors.</li>\n<li>Fix – Removed legacy suggest.js code which was causing JS error on bulk edit.</li>\n<li>Fix – Fixed warnings on the “Lost password” page and when loading a product with invalid attributes.</li>\n<li>Fix – Made background emailer update the queue after a successful send so duplicate mails are less likely.</li>\n<li>Fix – Typo in flexslider_enabled option in new gallery script.</li>\n<li>Fix – woocommerce_notify_low_stock and woocommerce_notify_no_stock options had no effect.</li>\n<li>Tweak – For downloadable files, only validate file type when dealing with relative paths.</li>\n<li>Tweak – Improved automatic variation name generation.</li>\n<li>Dev – Added product visibility terms to system status report to help debug.</li>\n<li>Dev – Introduced <code>woocommerce_admin_order_date_format</code> filter to replace missing <code>post_date_column_time</code>.</li>\n<li>Dev – Introduced <code>woocommerce_update_customer_args</code> filter to prevent updates to user objects if needed.</li>\n<li>REST API – Fixed saving of variations in legacy REST API v3.</li>\n<li>REST API – Fixed backwards compatibility of line_items meta in legacy REST API.</li>\n</ul>\n<h4>3.0.1 – 2017-04-06</h4>\n<ul>\n<li>Fix – Show catalog hidden products within grouped products.</li>\n<li>Fix – Fade in the gallery in if no images are set or it’s custom.</li>\n<li>Fix – Use wc_deprecated_function in WC_Deprecated_Hooks so notices aren’t output in ajax requests.</li>\n<li>Fix – Added back the ability to include extra items to the System Status using the <code>woocommerce_system_status_environment_rows</code> filter.</li>\n<li>Fix – Coupon category restrictions and limits for variations.</li>\n<li>Fix – Allow shortcodes and HTML in variation descriptions like in 2.6.</li>\n<li>Fix – Unset post date when duplicating products.</li>\n<li>Fix – Show a sale price on variable products if on sale and all prices are the same.</li>\n<li>Fix – Corrected download links when a product has multiple downloads.</li>\n<li>Fix – Prevented potential errors if the product type was not posted for any reason on save.</li>\n<li>Fix – Updated <code>single-product/up-sells.php</code>, <code>loop/add-to-cart.php</code>, <code>loop/rating.php</code>, <code>checkout/form-billing.php</code>, and <code>content-product.php</code> template version to 3.0.0.</li>\n<li>Fix – Included clearfixes on billing and shipping field wrappers,</li>\n<li>Fix – Fixed styling of logs table in some languages.</li>\n<li>Fix – Fixed display of variation attributes on old orders.</li>\n<li>Fix – Use placeholder text for external products add to cart button text if left blank.</li>\n<li>Fix – Fallback to home URL if no shop page is set for system status security check for HTTPS.</li>\n<li>Fix – For variations, pull tax status and sold individually from the parent since there is no UI to set this at variation level.</li>\n<li>Fix – Moved cron emails to background processing to avoid multiple sends.</li>\n<li>Fix – Wrapped structured data in a hidden element when added to emails.</li>\n<li>Fix – Missing gateway information in queued emails.</li>\n<li>Fix – Fixed a bug that caused pages to permanently reload if “Default customer location” was set to “Geolocate (with page caching support)”.</li>\n<li>Fix – When forcing shipping to billing, set the shipping fields in the order itself.</li>\n<li>Fix – Check for invalid objects in WC_Register_WP_Admin_Settings.</li>\n<li>Fix – Check for error object in wc_get_object_terms.</li>\n<li>Fix – Removed slashes in shipping meta data on the order edit screen.</li>\n<li>Fix – Prevented permalink rewrites for attributes with missing names.</li>\n<li>Fix – Fixed saving of meta data when multiple extensions use the <code>save_post</code> action.</li>\n<li>Fix – Allow search customers by ID in edit order screen.</li>\n<li>Fix – Prevents session data overwriting customer data on login.</li>\n<li>Fix – Fixed cross-sell column display and variation support.</li>\n<li>Fix – Fixed variable product stock syncing on save.</li>\n<li>Fix – Included try/catch wrapper to prevent issues with Select2.</li>\n<li>Fix – Prevented a bug that deleted all variations when the product type was change from variable to simple.</li>\n<li>Fix – Switched to WPDB to quicker update when syncing titles for variations.</li>\n<li>Fix – Exclude deprecated properties when loading a customer object.</li>\n<li>Fix – Fixed notices while trying to order again.</li>\n<li>Fix – Fixed notices when <code>$wpdb->prefix</code> is empty.</li>\n<li>Fix – Prevent errors when loading a product with an invalid download file types.</li>\n<li>REST API – Fixed missing array declaration in CRUD controller.</li>\n<li>REST API – Removed extra <code>exclude</code>, <code>include</code> and <code>search</code> parameters from taxes endpoint.</li>\n<li>REST API – Fixed variation description formatting.</li>\n<li>REST API – Fixed incorrect attribute check in products endpoint in Legacy REST API.</li>\n<li>REST API – Allow variation image to be unset.</li>\n</ul>\n<h4>3.0.0 – 2017-04-04</h4>\n<ul>\n<li>New gallery on single product pages with better mobile support, using PhotoSwipe and Zoom. Declare support with add_theme_support() – wc-product-gallery-zoom, wc-product-gallery-lightbox, wc-product-gallery-slider</li>\n<li>Made the store notice dismissible on the frontend.</li>\n<li>Variable products no longer show striked out prices in combination with ranges for clarity when on sale.</li>\n<li>Prices no longer display as ‘free’ instead of 0, to fix issues with ranges and localization and for consistency.</li>\n<li>Improved structured product data by using JSON-LD instead of inline Microdata.</li>\n<li>Improved downloads list layout (template file).</li>\n<li>Respect stock status and prevent the “out of stock threshold” setting affecting existing in-stock products.</li>\n<li>Improved handling of shop page rewrite rules to allow subpages.</li>\n<li>Redirect to login after password reset.</li>\n<li>When using authorizations in PayPal Standard, automatically capture funds when the order goes processing/completed.</li>\n<li>On multisite, when a user logs into a store with an account on a site, but not the current site, rather than error, add the user to the current site as a customer.</li>\n<li>Show variable weights/dimensions even when parent values are not set.</li>\n<li>Automatically sort tax rates rather than allow clunky manual sorting.</li>\n<li>When deleting a tax rate class, remove it’s tax rates.</li>\n<li>Made WC_Logger pluggable via wc_get_logger function.</li>\n<li>Use ‘average rating’ post meta for ‘rating’ product sorting option.</li>\n<li>Show better labels in nav menus metabox.</li>\n<li>Sort “Recently Viewed” products by the view order.</li>\n<li>Removed internal scroll from log viewer.</li>\n<li>Add reply-to to admin emails.</li>\n<li>Improved the zone setup flow.</li>\n<li>Made wc_get_wildcard_postcodes return the orignal postcode plus * since wildcards should match empty strings too.</li>\n<li>Use all paid statuses in $customer->get_total_spent().</li>\n<li>Move location of billing email field to work with password managers.</li>\n<li>Option to restrict selling locations by country.</li>\n<li>Added tool to clear orphaned variations in system status.</li>\n<li>Remove checkbox options in system status tools and replace with constants.</li>\n<li>Added security section in system status report.</li>\n<li>Add image_url setting to PayPal Standard.</li>\n<li>Fixed attribute registration. Attributes are non-hierarchical by default (parent is not supported).</li>\n<li>Add sort parameter to checkout fields to aid with sorting per locale.</li>\n<li>Merged percent and percent product coupon types (they provide the same discount).</li>\n<li>Prevent payment details being cleared after update_checkout events.</li>\n<li>Performance – Converted _featured and _visibility meta data to terms for faster catalog queries. Upgrade routine handles migration. Developers may need to update queries to reflect this change.</li>\n<li>Includes product attributes archives links in “Additional Information” tab.</li>\n<li>Select2 has been upgraded to v4.</li>\n<li>Improved logging system for extensions.</li>\n<li>Tax suffix is now hidden on non-taxable products.</li>\n<li>Grouped products are linked from the parent rather than the children. Children can be in more than one group.</li>\n<li>Removed coupon usage link in coupons admin screen.</li>\n<li>Performance – Converted rating filters to visibility terms.</li>\n<li>Performance – Added visibility term for outofstock products to speed those queries up also.</li>\n<li>Performance – Introduced a new CRUD (create, read, update, delete) system for Products, Orders, Customers and Shipping Zones.</li>\n<li>Performance – Optimised variable product sync. Upper/lower price meta is no longer stored, just the main prices, if a child has weight, and if a child has dimensions.</li>\n<li>Performance – Removed WP_Query from up-sells.php and related.php and replaced with PHP foreach loop (since we already have the product IDs).</li>\n<li>Performance – Removed the feature where old orders get access to new downloads on product edit. Looping potentially thousands of orders to do this is too much of a performance burden for stores and this can sometimes be unexpected behavior too. This does however updates <em>edited</em> downloads.</li>\n<li>Performance – Removed ‘items’ column on orders screen due to loading excessive data.</li>\n<li>Performance – Deferred email sending for faster checkouts. Now uses CRON.</li>\n<li>API – New Rest API v2 with support for meta_data amongst other things.</li>\n<li>API – Removed last order from customers part of the API due to performance concerns – use orders endpoint instead. Other order data on the endpoint is now transient cached.</li>\n<li>API – Allow oAuth1.0a authentication using headers.</li>\n<li>API – New Shipping Zones endpoints.</li>\n<li>API – New variations endpoints.</li>\n<li>API – New settings endpoints.</li>\n<li>API – Payment gateways and shipping methods endpoints.</li>\n<li>API – Prevented the (broken) ability to manipulate variations directly on the products endpoints.</li>\n<li>CLI – New CLI which uses the REST API endpoints rather than it’s own functions.</li>\n<li>Localization – Improved RTL support.</li>\n<li>Localization – Added a language independent permalink setting function.</li>\n<li>Localization – Added inline comments for placeholder strings.</li>\n<li>Localization – Added Nigerian and Pakistan Provinces to i18n/state.</li>\n<li>Localization – US and Poland postcode validation.</li>\n<li>To read more about this release, see our dev blog announcement here: http://wp.me/p6wtcw-Uo</li>\n</ul>\n<p><a href=\"https://raw.githubusercontent.com/woocommerce/woocommerce/master/CHANGELOG.txt\" rel=\"nofollow\">See changelog for all versions</a>.</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/woocommerce/feed/\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";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:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/plugins/google-sitemap-generator/#respond\";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:\"Thu, 16 Jun 2005 09:33:19 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins-wp/google-sitemap-generator/\";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:95:\"This plugin will generate a special XML sitemap which will help search engines to better…\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7643:\"<p><!--section=description--></p>\n<p>This plugin will generate a special XML sitemap which will help search engines like Google, Bing, Yahoo and Ask.com to better index your blog. With such a sitemap, it’s much easier for the crawlers to see the complete structure of your site and retrieve it more efficiently. The plugin supports all kinds of WordPress generated pages as well as custom URLs. Additionally it notifies all major search engines every time you create a post about the new content.</p>\n<p>Supported since <em>over 9 years</em> and rated as the <a href=\"https://wordpress.org/plugins/browse/top-rated/\">best WordPress plugin</a>, it will do exactly what it’s supposed to do – providing a complete XML sitemap for search engines. It will not break your site, slow it down or annoy you. Guaranteed!</p>\n<blockquote>\n<p>If you like the plugin, feel free to rate it (on the right side of this page) or <a href=\"http://www.arnebrachhold.de/redir/sitemap-paypal/\" rel=\"nofollow\">donate via PayPal</a>. I’m gladly supporting this plugin since over 9 years! Thanks a lot! <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</blockquote>\n<p>Related Links:</p>\n<ul>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" title=\"Google XML Sitemaps Plugin for WordPress\" rel=\"nofollow\">Plugin Homepage</a></li>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/\" title=\"Changelog of the Google XML Sitemaps Plugin for WordPress\" rel=\"nofollow\">Changelog</a></li>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/\" title=\"Google Sitemaps FAQ\" rel=\"nofollow\">Plugin help and sitemaps FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/topic/read-before-opening-a-new-support-topic\" rel=\"nofollow\">Support Forum</a></li>\n</ul>\n<h3>License</h3>\n<p>Good news, this plugin is free for everyone! Since it’s released under the GPL, you can use it free of charge on your personal or commercial blog. But if you enjoy this plugin, you can thank me and leave a <a href=\"http://www.arnebrachhold.de/redir/sitemap-paypal\" title=\"Donate with PayPal\" rel=\"nofollow\">small donation</a> for the time I’ve spent writing and supporting this plugin. And I really don’t want to know how many hours of my life this plugin has already eaten <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<h3>Translations</h3>\n<p>The plugin comes with various translations, please refer to the <a href=\"https://codex.wordpress.org/Installing_WordPress_in_Your_Language\" title=\"Installing WordPress in Your Language\" rel=\"nofollow\">WordPress Codex</a> for more information about activating the translation. If you want to help to translate the plugin to your language, please have a look at the sitemap.pot file which contains all definitions and may be used with a <a href=\"http://www.gnu.org/software/gettext/\" rel=\"nofollow\">gettext</a> editor like <a href=\"http://www.poedit.net/\" rel=\"nofollow\">Poedit</a> (Windows).</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Install the plugin like you always install plugins, either by uploading it via FTP or by using the “Add Plugin” function of WordPress.</li>\n<li>Activate the plugin at the plugin administration page</li>\n<li>If you want: Open the plugin configuration page, which is located under Settings -> XML-Sitemap and customize settings like priorities and change frequencies.</li>\n<li>The plugin will automatically update your sitemap of you publish a post, so there is nothing more to do <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n</ol>\n<p><!--section=faq--></p>\n<dl>\n<dt>Where can I find the options page of the plugin?</dt>\n<dd>\n<p>It is under Settings > XML Sitemap. I know nowadays many plugins add top-level menu items, but in most of the cases it is just not necessary. I’ve seen WP installations which looked like an Internet Explorer ten years ago with 20 toolbars installed. <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</dd>\n<dt>Do I have to create a sitemap.xml and sitemap.xml.gz by myself?</dt>\n<dd>\n<p>Not anymore. Since version 4, these files are dynamically generated. <em>There must be no sitemap.xml or sitemap.xml.gz in your blog directory anymore!</em> The plugin will try to rename them to sitemap.xml.bak if they still exists.</p>\n</dd>\n<dt>Does this plugin use static files or “I can’t find the sitemap.xml file!”</dt>\n<dd>\n<p>Not anymore. Since version 4, these files are dynamically generated just like any other WordPress content.</p>\n</dd>\n<dt>There are no comments yet (or I’ve disabled them) and all my postings have a priority of zero!</dt>\n<dd>\n<p>Please disable automatic priority calculation and define a static priority for posts.</p>\n</dd>\n<dt>So many configuration options… Do I need to change them?</dt>\n<dd>\n<p>No, only if you want to. Default values are ok for most sites.</p>\n</dd>\n<dt>Does this plugin work with all WordPress versions?</dt>\n<dd>\n<p>This version works with WordPress 3.3 and better. If you’re using an older version, please check the <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" title=\"Google (XML) Sitemap Generator Plugin Homepage\" rel=\"nofollow\">Google Sitemaps Plugin Homepage</a> for the legacy releases. There is a working release for every WordPress version since 1.5, but you really should consider updating your WordPress installation!</p>\n</dd>\n<dt>My question isn’t answered here</dt>\n<dd>\n<p>Most of the plugin options are described at the <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" rel=\"nofollow\">plugin homepage</a> as well as the dedicated <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/\" title=\"List of common questions / problems regarding Google (XML) Sitemaps\" rel=\"nofollow\">Google Sitemaps FAQ</a>.</p>\n</dd>\n<dt>My question isn’t even answered there</dt>\n<dd>\n<p>Please post your question at the <a href=\"https://wordpress.org/support/topic/read-before-opening-a-new-support-topic\" rel=\"nofollow\">WordPress support forum</a> and tag your post with “google-sitemap-generator”.</p>\n</dd>\n<dt>What’s new in the latest version?</dt>\n<dd>\n<p>The changelog is maintained <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/\" title=\"Google (XML) Sitemap Generator Plugin Changelog\" rel=\"nofollow\">here</a></p>\n</dd>\n<dt>Why is the changelog on a separate page and not here?</dt>\n<dd>\n<p>The WordPress.org repository is just another place to download this plugin. I don’t want to maintain too many pages with the same content. Thank you for your understanding!</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<p>You can always find the changelog on <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/\" title=\"Google (XML) Sitemap Generator Plugin Changelog\" rel=\"nofollow\">the plugin website</a>, since I don’t like to maintain the same content on different pages. Thank you for your understanding!</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/google-sitemap-generator/feed/\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Limit Login Attempts\";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:51:\"https://wordpress.org/plugins/limit-login-attempts/\";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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/limit-login-attempts/#respond\";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:\"Thu, 15 Jan 2009 14:20:42 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins-wp/limit-login-attempts/\";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:91:\"Limit rate of login attempts, including by way of cookies, for each IP. Fully customizable.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11759:\"<p><!--section=description--></p>\n<p>Limit the number of login attempts possible both through normal login as well as using auth cookies.</p>\n<p>By default WordPress allows unlimited login attempts either through the login page or by sending special cookies. This allows passwords (or hashes) to be brute-force cracked with relative ease.</p>\n<p>Limit Login Attempts blocks an Internet address from making further attempts after a specified limit on retries is reached, making a brute-force attack difficult or impossible.</p>\n<p>Features</p>\n<ul>\n<li>Limit the number of retry attempts when logging in (for each IP). Fully customizable</li>\n<li>Limit the number of attempts to log in using auth cookies in same way</li>\n<li>Informs user about remaining retries or lockout time on login page</li>\n<li>Optional logging, optional email notification</li>\n<li>Handles server behind reverse proxy</li>\n<li>It is possible to whitelist IPs using a filter. But you probably shouldn’t. <img src=\"https://s.w.org/images/core/emoji/2.2.5/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n</ul>\n<p>Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish</p>\n<p>Plugin uses standard actions and filters only.</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Download and extract plugin files to a wp-content/plugin directory.</li>\n<li>Activate the plugin through the WordPress admin interface.</li>\n<li>Customize the settings on the options page, if desired. If your server is located behind a reverse proxy make sure to change this setting.</li>\n</ol>\n<p>If you have any questions or problems please make a post here: https://wordpress.org/tags/limit-login-attempts</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Why not reset failed attempts on a successful login?</dt>\n<dd>\n<p>This is very much by design. Otherwise you could brute force the “admin” password by logging in as your own user every 4th attempt.</p>\n</dd>\n<dt>What is this option about site connection and reverse proxy?</dt>\n<dd>\n<p>A reverse proxy is a server in between the site and the Internet (perhaps handling caching or load-balancing). This makes getting the correct client IP to block slightly more complicated.</p>\n<p>The option default to NOT being behind a proxy — which should be by far the common case.</p>\n</dd>\n<dt>How do I know if my site is behind a reverse proxy?</dt>\n<dd>\n<p>You probably are not or you would know. We show a pretty good guess on the option page. Set the option using this unless you are sure you know better.</p>\n</dd>\n<dt>Can I whitelist my IP so I don’t get locked out?</dt>\n<dd>\n<p>First please consider if you really need this. Generally speaking it is not a good idea to have exceptions to your security policies.</p>\n<p>That said, there is now a filter which allows you to do it: “limit_login_whitelist_ip”.</p>\n<p>Example:<br />\nfunction my_ip_whitelist($allow, $ip) {<br />\n return ($ip == ‘my-ip’) ? true : $allow;<br />\n}<br />\nadd_filter(‘limit_login_whitelist_ip’, ‘my_ip_whitelist’, 10, 2);</p>\n<p>Note that we still do notification and logging as usual. This is meant to allow you to be aware of any suspicious activity from whitelisted IPs.</p>\n</dd>\n<dt>I locked myself out testing this thing, what do I do?</dt>\n<dd>\n<p>Either wait, or:</p>\n<p>If you know how to edit / add to PHP files you can use the IP whitelist functionality described above. You should then use the “Restore Lockouts” button on the plugin settings page and remove the whitelist function again.</p>\n<p>If you have ftp / ssh access to the site rename the file “wp-content/plugins/limit-login-attempts/limit-login-attempts.php” to deactivate the plugin.</p>\n<p>If you have access to the database (for example through phpMyAdmin) you can clear the limit_login_lockouts option in the wordpress options table. In a default setup this would work: “UPDATE wp_options SET option_value = ” WHERE option_name = ‘limit_login_lockouts\'”</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>1.7.1</h4>\n<p>This version fixes a security bug in version 1.6.2 and 1.7.0. Please upgrade immediately.</p>\n<p>“Auth cookies” are special cookies set at login that authenticating you to the system. It is how WordPress “remembers” that you are logged in between page loads.</p>\n<p>During lockout these are supposed to be cleared, but a change in 1.6.2 broke this. It allowed an attacker to keep trying to break these cookies during a lockout.</p>\n<p>Lockout of normal password login attempts still worked as it should, and it appears that all “auth cookie” attempts would keep getting logged.</p>\n<p>In theory the “auth cookie” is quite resistant to brute force attack. It contains a cryptographic hash of the user password, and the difficulty to break it is not based on the password strength but instead on the cryptographic operations used and the length of the hash value. In theory it should take many many years to break this hash. As theory and practice does not always agree it is still a good idea to have working lockouts of any such attempts.</p>\n<h4>1.7.0</h4>\n<ul>\n<li>Added filter that allows whitelisting IP. Please use with care!!</li>\n<li>Update to Spanish translation, thanks to Marcelo Pedra</li>\n<li>Updated Swedish translation</li>\n<li>Tested against WordPress 3.3.2</li>\n</ul>\n<h4>1.6.2</h4>\n<ul>\n<li>Fix bug where log would not get updated after it had been cleared</li>\n<li>Do plugin setup in ‘init’ action</li>\n<li>Small update to Spanish translation file, thanks to Marcelo Pedra</li>\n<li>Tested against WordPress 3.2.1</li>\n</ul>\n<h4>1.6.1</h4>\n<ul>\n<li>(WordPress 3.0+) An invalid cookie can sometimes get sent multiple times before it gets cleared, resulting in multiple failed attempts or even a lockout from a single invalid cookie. Store the latest failed cookie to make sure we only count it as one failed attempt</li>\n<li>Define “Text Domain” correctly</li>\n<li>Include correct Dutch tranlation file. Thanks to Martin1 for noticing. Thanks again to Bjorn Wijers for the translation</li>\n<li>Updated POT file for this version</li>\n<li>Tested against WordPress 3.1-RC4</li>\n</ul>\n<h4>1.6.0</h4>\n<ul>\n<li>Happy New Year</li>\n<li>Tested against WordPress 3.1-RC1</li>\n<li>Plugin now requires WordPress version 2.8+. Of course you should never ever use anything but the latest version</li>\n<li>Fixed deprecation warnings that had been piling up with the old version requirement. Thanks to Johannes Ruthenberg for the report that prompted this</li>\n<li>Removed auth cookie admin check for version 2.7.</li>\n<li>Make sure relevant values in $_COOKIE get cleared right away on auth cookie validation failure. There are still some problems with cookie auth handling. The lockout can trigger prematurely in rare cases, but fixing it is plugin version 2 stuff unfortunately.</li>\n<li>Changed default time for retries to reset from 24 hours to 12 hours. The security impact is very minor and it means the warning will disappear “overnight”</li>\n<li>Added question to FAQ (“Why not reset failed attempts on a successful login?”)</li>\n<li>Updated screenshots</li>\n</ul>\n<h4>1.5.2</h4>\n<ul>\n<li>Reverted minor cookie-handling cleanup which might somehow be responsible for recently reported cookie related lockouts</li>\n<li>Added version 1.x Brazilian Portuguese translation, thanks to Luciano Passuello</li>\n<li>Added Finnish translation, thanks to Ari Kontiainen</li>\n</ul>\n<h4>1.5.1</h4>\n<ul>\n<li>Further multisite & WPMU support (again thanks to <a href=\"mailto:erik@erikshosting.com\" rel=\"nofollow\">erik@erikshosting.com</a>)</li>\n<li>Better error handling if option variables are damaged</li>\n<li>Added Traditional Chinese translation, thanks to Denny Huang <a href=\"mailto:bigexplorations@bigexplorations.com.tw\" rel=\"nofollow\">bigexplorations@bigexplorations.com.tw</a></li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Tested against WordPress 3.0</li>\n<li>Handle 3.0 login page failure “shake”</li>\n<li>Basic multisite support (parts thanks to <a href=\"mailto:erik@erikshosting.com\" rel=\"nofollow\">erik@erikshosting.com</a>)</li>\n<li>Added Dutch translation, thanks to Bjorn Wijers <a href=\"mailto:burobjorn@burobjorn.nl\" rel=\"nofollow\">burobjorn@burobjorn.nl</a></li>\n<li>Added Hungarian translation, thanks to Blint Vereskuti <a href=\"mailto:balint@vereskuti.info\" rel=\"nofollow\">balint@vereskuti.info</a></li>\n<li>Added French translation, thanks to oVa <a href=\"mailto:ova13lastar@gmail.com\" rel=\"nofollow\">ova13lastar@gmail.com</a></li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Added Turkish translation, thanks to Yazan Canarkadas</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Protect admin page update using wp_nonce</li>\n<li>Added Czech translation, thanks to Jakub Jedelsky</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Added Bulgarian translation, thanks to Hristo Chakarov</li>\n<li>Added Norwegian translation, thanks to Rune Gulbrandsy</li>\n<li>Added Spanish translation, thanks to Marcelo Pedra</li>\n<li>Added Persian translation, thanks to Mostafa Soufi</li>\n<li>Added Russian translation, thanks to Jack Leonid (http://studio-xl.com)</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Added Catalan translation, thanks to Robert Buj</li>\n<li>Added Romanian translation, thanks to Robert Tudor</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Support for getting the correct IP for clients while server is behind reverse proxy, thanks to Michael Skerwiderski</li>\n<li>Added German translation, thanks to Michael Skerwiderski</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>No longer replaces pluggable function when cookie handling active. Re-implemented using available actions and filters</li>\n<li>Filter error messages during login to avoid information leak regarding available usernames</li>\n<li>Do not show retries or lockout messages except for login (registration, lost password pages). No change in actual enforcement</li>\n<li>Slightly more aggressive in trimming old retries data</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Added translation support</li>\n<li>Added Swedish translation</li>\n<li>During lockout, filter out all other login errors</li>\n<li>Minor cleanups</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial version</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/limit-login-attempts/feed/\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";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:47:\"https://wordpress.org/plugins/tinymce-advanced/\";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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/tinymce-advanced/#respond\";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:\"Fri, 22 Jun 2007 06:02:53 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins-wp/tinymce-advanced/\";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:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Andrew Ozz\";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:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10621:\"<p><!--section=description--></p>\n<p>This plugin will let you add, remove and arrange the buttons that are shown on the Visual Editor toolbar. You can configure up to four rows of buttons including Font Sizes, Font Family, text and background colors, tables, etc. It will also let you enable the editor menu, see the <a href=\"screenshots\" rel=\"nofollow\">screenshots</a>.</p>\n<p>It includes 15 plugins for <a href=\"http://tinymce.com/\" rel=\"nofollow\">TinyMCE</a> that are automatically enabled or disabled depending on the buttons you have chosen. In addition this plugin adds some commonly used options as keeping the paragraph tags in the Text editor and importing the CSS classes from the theme’s editor-style.css.</p>\n<h4>Some of the features added by this plugin</h4>\n<ul>\n<li>Support for creating and editing tables.</li>\n<li>More options when inserting lists.</li>\n<li>Search and Replace in the editor.</li>\n<li>Ability to set Font Family and Font Sizes.</li>\n<li>And many others.</li>\n</ul>\n<p>With this plugin you can also enable the TinyMCE menu above the toolbars. This will make the editor even more powerful and convenient.</p>\n<p><!--section=installation--></p>\n<p>Best is to install directly from WordPress. If manual installation is required, please make sure that the plugin files are in a folder named “tinymce-advanced” (not two nested folders) in the WordPress plugins folder, usually “wp-content/plugins”.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>Best is to install directly from WordPress. If manual installation is required, please make sure that the plugin files are in a folder named “tinymce-advanced” (not two nested folders) in the WordPress plugins folder, usually “wp-content/plugins”.</p>\n</dd>\n<dt>No styles are imported in the Formats sub-menu.</dt>\n<dd>\n<p>These styles are imported from your current theme editor-style.css file. However some themes do not have this functionality. For these themes TinyMCE Advanced has the option to let you add a customized editor-style.css and import it into the editor.</p>\n</dd>\n<dt>I have just installed this plugin, but it does not do anything.</dt>\n<dd>\n<p>Change some buttons on one of the toolbars, save your changes, clear your browser cache, and try again. If that does not work try reloding the Edit page several times while holding down Shift or Ctrl. There may also be a network cache somewhere between you and your host. You may need to wait for a few hours until this cache expires.</p>\n</dd>\n<dt>When I add “Smilies”, they do not show in the editor.</dt>\n<dd>\n<p>The “Emoticons” button in TinyMCE adds the codes for the smilies. The actual images are added by WordPress when viewing the Post. Make sure the checkbox “Convert emoticons to graphics on display” in “Options – Writing” is checked.</p>\n</dd>\n<dt>The plugin does not add any buttons.</dt>\n<dd>\n<p>Make sure the “Disable the visual editor when writing” checkbox under “Users – Your Profile” is <strong>not</strong> checked.</p>\n</dd>\n<dt>I still see the “old” buttons in the editor</dt>\n<dd>\n<p>Click the “Restore Default Settings” button on the plugin settings page and then set the buttons again and save.</p>\n</dd>\n<dt>Other questions? More screenshots?</dt>\n<dd>\n<p>Please post on the support forum or visit the homepage for <a href=\"http://www.laptoptips.ca/projects/tinymce-advanced/\" rel=\"nofollow\">TinyMCE Advanced</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>4.5.6</h4>\n<ul>\n<li>Updated for WordPress 4.7.4 and TinyMCE 4.5.6.</li>\n<li>Fixed PHP notice after importing settings.</li>\n</ul>\n<h4>4.4.3</h4>\n<ul>\n<li>Updated for WordPress 4.7 and TinyMCE 4.4.3.</li>\n<li>Fixed missing “Source code” button bug.</li>\n</ul>\n<h4>4.4.1</h4>\n<ul>\n<li>Updated for WordPress 4.6 and TinyMCE 4.4.1.</li>\n<li>Fixed multisite saving bug.</li>\n<li>Added new button in the Text editor to add or reset the line breaks. Adds line breaks only between tags. Works only when it detects that line breaks are missing so it doesn’t reformat posts with removed paragraphs.</li>\n</ul>\n<h4>4.3.10.1</h4>\n<ul>\n<li>Fixed adding paragraph tags when loading posts that were saved before turning autop off.</li>\n<li>Disabled the (new) inline toolbar for tables as it was overlapping the table in some cases.</li>\n</ul>\n<h4>4.3.10</h4>\n<ul>\n<li>Updated for WordPress 4.5.1 and TinyMCE 4.3.10.</li>\n<li>Fixed support for adding editor-style.css to themes that don’t have it.</li>\n</ul>\n<h4>4.3.8</h4>\n<ul>\n<li>Updated for WordPress 4.5 and TinyMCE 4.3.8.</li>\n<li>Separated standard options and admin options.</li>\n<li>Added settings that can disable the plugin for the main editor, other editors in wp-admin or editors on the front-end.</li>\n<li>Korean translation by Josh Kim and Greek translation by Stathis Mellios.</li>\n</ul>\n<h4>4.2.8</h4>\n<ul>\n<li>Updated for WordPress 4.4 and TinyMCE 4.2.8.</li>\n<li>Japanese translation by Manabu Miwa.</li>\n</ul>\n<h4>4.2.5</h4>\n<ul>\n<li>Updated for WordPress 4.3.1 and TinyMCE 4.2.5.</li>\n<li>Fixed text domain and plugin headers.</li>\n</ul>\n<h4>4.2.3.1</h4>\n<ul>\n<li>Fix error with removing the ‘textpattern’ plugin.</li>\n</ul>\n<h4>4.2.3</h4>\n<ul>\n<li>Updated for WordPress 4.3 and TinyMCE 4.2.3.</li>\n<li>Removed the ‘textpattern’ plugin as WordPress 4.3 includes similar functionality by default.</li>\n<li>French translation by Nicolas Schneider.</li>\n</ul>\n<h4>4.1.9</h4>\n<ul>\n<li>Updated for WordPress 4.2 and TinyMCE 4.1.9.</li>\n<li>Fixed bugs with showing oEmbed previews when pasting an URL.</li>\n<li>Fixed bugs with getting the content from TinyMCE with line breaks.</li>\n</ul>\n<h4>4.1.7</h4>\n<ul>\n<li>Updated for WordPress 4.1 and TinyMCE 4.1.7.</li>\n<li>Fixed bug where consecutive caption shortcodes may be split with an empty paragraph tag.</li>\n</ul>\n<h4>4.1.1</h4>\n<ul>\n<li>Fix bug with image captions when wpautop is disabled.</li>\n<li>Add translation support to the settings page. Button names/descriptions are translated from JS using the existing WordPress translation, so this part of the settings page will be translated by default. The other text still needs separate translation.</li>\n</ul>\n<h4>4.1</h4>\n<ul>\n<li>Updated for WordPress 4.0 and TinyMCE 4.1.</li>\n<li>Add the ‘textpattern’ plugin that supports some of the markdown syntax while typing, <a href=\"http://www.tinymce.com/wiki.php/Configuration:textpattern_patterns\" rel=\"nofollow\">(more info)</a>.</li>\n<li>Add the updated ‘table’ plugin that supports background and border color.</li>\n</ul>\n<h4>4.0.2</h4>\n<ul>\n<li>Fix showing of the second, third and forth button rows when the Toolbar Toggle button is not used.</li>\n<li>Fix adding the ”directionality” plugin when RTL or LTR button is selected.</li>\n<li>Show the ”Advanced Options” to super admins on multisite installs.</li>\n<li>Add the ”link” plugin including link rel setting. Replaces the Insert/Edit Link dialog when enabled.</li>\n<li>Include updated ”table” plugin that has support for vertical align for cells.</li>\n</ul>\n<h4>4.0.1</h4>\n<p>Fix warnings on pages other than Edit Post. Update the description.</p>\n<h4>4.0</h4>\n<p>Updated for WordPress 3.9 and TinyMCE 4.0. Refreshed the settings screen. Added support for exporting and importing of the settings.</p>\n<h4>3.5.9.1</h4>\n<p>Updated for WordPress 3.8, fixed auto-embedding of single line URLs when not removing paragraph tags.</p>\n<h4>3.5.9</h4>\n<p>Updated for WordPress 3.7 and TinyMCE 3.5.9.</p>\n<h4>3.5.8</h4>\n<p>Updated for WordPress 3.5 and TinyMCE 3.5.8.</p>\n<h4>3.4.9</h4>\n<p>Updated for WordPress 3.4 and TinyMCE 3.4.9.</p>\n<h4>3.4.5.1</h4>\n<p>Fixed a bug preventing TinyMCE from importing CSS classes from editor-style.css.</p>\n<h4>3.4.5</h4>\n<p>Updated for WordPress 3.3 or later and TinyMCE 3.4.5.</p>\n<h4>3.4.2.1</h4>\n<p>Fix the removal of the <em>media</em> plugin so it does not require re-saving the settings.</p>\n<h4>3.4.2</h4>\n<p>Compatibility with WordPress 3.2 and TinyMCE 3.4.2, removed the options for support for iframe and HTML 5.0 elements as they are supported by default in WordPress 3.2, removed the <em>media</em> plugin as it is included by default.</p>\n<h4>3.3.9.1</h4>\n<p>Added advanced options: stop removing iframes, stop removing HTML 5.0 elements, moved the support for custom editor styles to editor-style.css in the current theme.</p>\n<p>Attention: if you have a customized tadv-mce.css file and your theme doesn’t have editor-style.css, please download tadv-mce.css, rename it to editor-style.css and upload it to your current theme directory. Alternatively you can add there the editor-style.css from the Twenty Ten theme. If your theme has editor-style.css you can add any custom styles there.</p>\n<h4>3.3.9</h4>\n<p>Compatibility with WordPress 3.1 and TinyMCE 3.3.9, improved P and BR tags option.</p>\n<h4>3.2.7</h4>\n<p>Compatibility with WordPress 2.9 and TinyMCE 3.2.7, several minor bug fixes.</p>\n<h4>3.2.4</h4>\n<p>Compatibility with WordPress 2.8 and TinyMCE 3.2.4, minor bug fixes.</p>\n<h4>3.2</h4>\n<p>Compatibility with WordPress 2.7 and TinyMCE 3.2, minor bug fixes.</p>\n<h4>3.1</h4>\n<p>Compatibility with WordPress 2.6 and TinyMCE 3.1, keeps empty paragraphs when disabling the removal of P and BR tags, the buttons for MCImageManager and MCFileManager can be arranged (if installed).</p>\n<h4>3.0.1</h4>\n<p>Compatibility with WordPress 2.5.1 and TinyMCE 3.0.7, added option to disable the removal of P and BR tags when saving and in the HTML editor (autop), added two more buttons to the HTML editor: autop and undo, fixed the removal of non-default TinyMCE buttons.</p>\n<h4>3.0</h4>\n<p>Support for WordPress 2.5 and TinyMCE 3.0.</p>\n<h4>2.2</h4>\n<p>Deactivate/Uninstall option page, font size drop-down menu and other small changes.</p>\n<h4>2.1</h4>\n<p>Improved language selection, improved compatibility with WordPress 2.3 and TinyMCE 2.1.1.1, option to override some of the imported css classes and other small improvements and bugfixes.</p>\n<h4>2.0</h4>\n<p>Includes an admin page for arranging the TinyMCE toolbar buttons, easy installation, a lot of bugfixes, customized “Smilies” plugin that uses the built-in WordPress smilies, etc. The admin page uses jQuery and jQuery UI that lets you “drag and drop” the TinyMCE buttons to arrange your own toolbars and enables/disables the corresponding plugins depending on the used buttons.</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/tinymce-advanced/feed/\";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:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:50:\"https://wordpress.org/plugins/browse/popular/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";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:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";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:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 18 May 2017 13:57:24 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 18 May 2017 13:45:01 GMT\";s:4:\"link\";s:66:\"<https://wordpress.org/plugins/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}}s:5:\"build\";s:14:\"20130911040210\";}','no'),(8241,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1495159045','no'),(8242,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1495115845','no'),(8243,'_transient_timeout_plugin_slugs','1495202245','no'),(8244,'_transient_plugin_slugs','a:5:{i:0;s:19:\"akismet/akismet.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:9:\"hello.php\";i:3;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";i:4;s:27:\"js_composer/js_composer.php\";}','no'),(8245,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1495159045','no'),(8246,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/05/wordpress-4-7-5/\'>WordPress 4.7.5 Security and Maintenance Release</a> <span class=\"rss-date\">May 16, 2017</span><div class=\"rssSummary\">WordPress 4.7.5 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7.4 and earlier are affected by six security issues: Insufficient redirect validation in the HTTP class. Reported by Ronni Skansing. Improper handling of post meta data values in the XML-RPC […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/atom-editor-adds-git-and-github-integration\'>WPTavern: Atom Editor Adds Git and GitHub Integration</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-273-mental-health-awareness-with-bridget-willard-and-ed-finkler\'>WPTavern: WPWeekly Episode 273 – Mental Health Awareness With Bridget Willard and Ed Finkler</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordcamp-europe-contributor-day-to-host-13-workshops-event-is-nearly-sold-out\'>WPTavern: WordCamp Europe Contributor Day to Host 13 Workshops, Event is Nearly Sold Out</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> WordPress Importer <a href=\"plugin-install.php?tab=plugin-information&plugin=wordpress-importer&_wpnonce=c7186aeb94&TB_iframe=true&width=600&height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install WordPress Importer\">(Install)</a></li></ul></div>','no'),(17845,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.5.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-4.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.5\";s:7:\"version\";s:5:\"4.9.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.5.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-4.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.5\";s:7:\"version\";s:5:\"4.9.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.8.6.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-4.8.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.8.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.8.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.8.6\";s:7:\"version\";s:5:\"4.8.6\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.7.10.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:60:\"https://downloads.wordpress.org/release/wordpress-4.7.10.zip\";s:10:\"no_content\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.7.10-no-content.zip\";s:11:\"new_bundled\";s:72:\"https://downloads.wordpress.org/release/wordpress-4.7.10-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:6:\"4.7.10\";s:7:\"version\";s:6:\"4.7.10\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1524574790;s:15:\"version_checked\";s:6:\"4.6.11\";s:12:\"translations\";a:0:{}}','no'),(18416,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1524577697;s:7:\"checked\";a:4:{s:6:\"mobilz\";s:3:\"2.8\";s:13:\"twentyfifteen\";s:3:\"1.6\";s:14:\"twentyfourteen\";s:3:\"1.8\";s:13:\"twentysixteen\";s:3:\"1.3\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.1.9.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.2.1.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.4.zip\";}}s:12:\"translations\";a:0:{}}','no'),(18417,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1524577697;s:8:\"response\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{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:\"4.0.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"5.0.1\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:24:\"WPBakery Visual Composer\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.0.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{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:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:35:\"w.org/plugins/regenerate-thumbnails\";s:4:\"slug\";s:21:\"regenerate-thumbnails\";s:6:\"plugin\";s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";s:11:\"new_version\";s:5:\"3.0.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/regenerate-thumbnails/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/regenerate-thumbnails.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/regenerate-thumbnails/assets/icon-128x128.png?rev=1753390\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/regenerate-thumbnails/assets/banner-1544x500.jpg?rev=1753390\";s:2:\"1x\";s:76:\"https://ps.w.org/regenerate-thumbnails/assets/banner-772x250.jpg?rev=1753390\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";a:0:{}}}}','no'),(18419,'_site_transient_timeout_theme_roots','1524579497','no'),(18420,'_site_transient_theme_roots','a:4:{s:6:\"mobilz\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(18433,'_transient_doing_cron','1524640640.2588078975677490234375','yes'),(18436,'_transient_timeout_list_tweets_','1524641244','no'),(18437,'_transient_list_tweets_','a:2:{i:0;O:8:\"stdClass\":24:{s:10:\"created_at\";s:30:\"Wed Apr 25 05:49:09 +0000 2018\";s:2:\"id\";i:989018455465578496;s:6:\"id_str\";s:18:\"989018455465578496\";s:4:\"text\";s:135:\"YP Solutions Ltd | One of the interesting highlights of #WordPress is that it allows you to build customized… https://t.co/Z7EaE3BPuN\";s:9:\"truncated\";b:1;s:8:\"entities\";O:8:\"stdClass\":4:{s:8:\"hashtags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"text\";s:9:\"WordPress\";s:7:\"indices\";a:2:{i:0;i:56;i:1;i:66;}}}s:7:\"symbols\";a:0:{}s:13:\"user_mentions\";a:0:{}s:4:\"urls\";a:1:{i:0;O:8:\"stdClass\":4:{s:3:\"url\";s:23:\"https://t.co/Z7EaE3BPuN\";s:12:\"expanded_url\";s:51:\"https://twitter.com/i/web/status/989018455465578496\";s:11:\"display_url\";s:29:\"twitter.com/i/web/status/9…\";s:7:\"indices\";a:2:{i:0;i:110;i:1;i:133;}}}}s:6:\"source\";s:66:\"<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>\";s:21:\"in_reply_to_status_id\";N;s:25:\"in_reply_to_status_id_str\";N;s:19:\"in_reply_to_user_id\";N;s:23:\"in_reply_to_user_id_str\";N;s:23:\"in_reply_to_screen_name\";N;s:4:\"user\";O:8:\"stdClass\":42:{s:2:\"id\";i:472955981;s:6:\"id_str\";s:9:\"472955981\";s:4:\"name\";s:12:\"YP Solutions\";s:11:\"screen_name\";s:12:\"YPSolutions1\";s:8:\"location\";s:21:\"Blackburn, Lancashire\";s:11:\"description\";s:118:\"YP Solutions are a Lancashire website design company providing professional web design and development at great prices\";s:3:\"url\";s:22:\"http://t.co/m5fTPtxhX2\";s:8:\"entities\";O:8:\"stdClass\":2:{s:3:\"url\";O:8:\"stdClass\":1:{s:4:\"urls\";a:1:{i:0;O:8:\"stdClass\":4:{s:3:\"url\";s:22:\"http://t.co/m5fTPtxhX2\";s:12:\"expanded_url\";s:17:\"http://www.y-p.uk\";s:11:\"display_url\";s:6:\"y-p.uk\";s:7:\"indices\";a:2:{i:0;i:0;i:1;i:22;}}}}s:11:\"description\";O:8:\"stdClass\":1:{s:4:\"urls\";a:0:{}}}s:9:\"protected\";b:0;s:15:\"followers_count\";i:428;s:13:\"friends_count\";i:129;s:12:\"listed_count\";i:13;s:10:\"created_at\";s:30:\"Tue Jan 24 13:50:08 +0000 2012\";s:16:\"favourites_count\";i:1661;s:10:\"utc_offset\";i:3600;s:9:\"time_zone\";s:6:\"London\";s:11:\"geo_enabled\";b:1;s:8:\"verified\";b:0;s:14:\"statuses_count\";i:295;s:4:\"lang\";s:2:\"en\";s:20:\"contributors_enabled\";b:0;s:13:\"is_translator\";b:0;s:22:\"is_translation_enabled\";b:0;s:24:\"profile_background_color\";s:6:\"000000\";s:28:\"profile_background_image_url\";s:48:\"http://abs.twimg.com/images/themes/theme1/bg.png\";s:34:\"profile_background_image_url_https\";s:49:\"https://abs.twimg.com/images/themes/theme1/bg.png\";s:23:\"profile_background_tile\";b:0;s:17:\"profile_image_url\";s:74:\"http://pbs.twimg.com/profile_images/479636779134234624/zMd00D1y_normal.png\";s:23:\"profile_image_url_https\";s:75:\"https://pbs.twimg.com/profile_images/479636779134234624/zMd00D1y_normal.png\";s:18:\"profile_banner_url\";s:58:\"https://pbs.twimg.com/profile_banners/472955981/1441878598\";s:18:\"profile_link_color\";s:6:\"4A913C\";s:28:\"profile_sidebar_border_color\";s:6:\"000000\";s:26:\"profile_sidebar_fill_color\";s:6:\"000000\";s:18:\"profile_text_color\";s:6:\"000000\";s:28:\"profile_use_background_image\";b:0;s:20:\"has_extended_profile\";b:0;s:15:\"default_profile\";b:0;s:21:\"default_profile_image\";b:0;s:9:\"following\";b:0;s:19:\"follow_request_sent\";b:0;s:13:\"notifications\";b:0;s:15:\"translator_type\";s:4:\"none\";}s:3:\"geo\";N;s:11:\"coordinates\";N;s:5:\"place\";N;s:12:\"contributors\";N;s:15:\"is_quote_status\";b:0;s:13:\"retweet_count\";i:2;s:14:\"favorite_count\";i:3;s:9:\"favorited\";b:0;s:9:\"retweeted\";b:0;s:18:\"possibly_sensitive\";b:0;s:4:\"lang\";s:2:\"en\";}i:1;O:8:\"stdClass\":24:{s:10:\"created_at\";s:30:\"Tue Apr 24 08:54:36 +0000 2018\";s:2:\"id\";i:988702737234735105;s:6:\"id_str\";s:18:\"988702737234735105\";s:4:\"text\";s:123:\"Fiver Website Powered By YP Solutions Ltd | Grab Basic Package in Just 5 GBP a Month\n\n#WebDesign… https://t.co/1HPlmaLcUU\";s:9:\"truncated\";b:1;s:8:\"entities\";O:8:\"stdClass\":4:{s:8:\"hashtags\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"text\";s:9:\"WebDesign\";s:7:\"indices\";a:2:{i:0;i:86;i:1;i:96;}}}s:7:\"symbols\";a:0:{}s:13:\"user_mentions\";a:0:{}s:4:\"urls\";a:1:{i:0;O:8:\"stdClass\":4:{s:3:\"url\";s:23:\"https://t.co/1HPlmaLcUU\";s:12:\"expanded_url\";s:51:\"https://twitter.com/i/web/status/988702737234735105\";s:11:\"display_url\";s:29:\"twitter.com/i/web/status/9…\";s:7:\"indices\";a:2:{i:0;i:98;i:1;i:121;}}}}s:6:\"source\";s:66:\"<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>\";s:21:\"in_reply_to_status_id\";N;s:25:\"in_reply_to_status_id_str\";N;s:19:\"in_reply_to_user_id\";N;s:23:\"in_reply_to_user_id_str\";N;s:23:\"in_reply_to_screen_name\";N;s:4:\"user\";O:8:\"stdClass\":42:{s:2:\"id\";i:472955981;s:6:\"id_str\";s:9:\"472955981\";s:4:\"name\";s:12:\"YP Solutions\";s:11:\"screen_name\";s:12:\"YPSolutions1\";s:8:\"location\";s:21:\"Blackburn, Lancashire\";s:11:\"description\";s:118:\"YP Solutions are a Lancashire website design company providing professional web design and development at great prices\";s:3:\"url\";s:22:\"http://t.co/m5fTPtxhX2\";s:8:\"entities\";O:8:\"stdClass\":2:{s:3:\"url\";O:8:\"stdClass\":1:{s:4:\"urls\";a:1:{i:0;O:8:\"stdClass\":4:{s:3:\"url\";s:22:\"http://t.co/m5fTPtxhX2\";s:12:\"expanded_url\";s:17:\"http://www.y-p.uk\";s:11:\"display_url\";s:6:\"y-p.uk\";s:7:\"indices\";a:2:{i:0;i:0;i:1;i:22;}}}}s:11:\"description\";O:8:\"stdClass\":1:{s:4:\"urls\";a:0:{}}}s:9:\"protected\";b:0;s:15:\"followers_count\";i:428;s:13:\"friends_count\";i:129;s:12:\"listed_count\";i:13;s:10:\"created_at\";s:30:\"Tue Jan 24 13:50:08 +0000 2012\";s:16:\"favourites_count\";i:1661;s:10:\"utc_offset\";i:3600;s:9:\"time_zone\";s:6:\"London\";s:11:\"geo_enabled\";b:1;s:8:\"verified\";b:0;s:14:\"statuses_count\";i:295;s:4:\"lang\";s:2:\"en\";s:20:\"contributors_enabled\";b:0;s:13:\"is_translator\";b:0;s:22:\"is_translation_enabled\";b:0;s:24:\"profile_background_color\";s:6:\"000000\";s:28:\"profile_background_image_url\";s:48:\"http://abs.twimg.com/images/themes/theme1/bg.png\";s:34:\"profile_background_image_url_https\";s:49:\"https://abs.twimg.com/images/themes/theme1/bg.png\";s:23:\"profile_background_tile\";b:0;s:17:\"profile_image_url\";s:74:\"http://pbs.twimg.com/profile_images/479636779134234624/zMd00D1y_normal.png\";s:23:\"profile_image_url_https\";s:75:\"https://pbs.twimg.com/profile_images/479636779134234624/zMd00D1y_normal.png\";s:18:\"profile_banner_url\";s:58:\"https://pbs.twimg.com/profile_banners/472955981/1441878598\";s:18:\"profile_link_color\";s:6:\"4A913C\";s:28:\"profile_sidebar_border_color\";s:6:\"000000\";s:26:\"profile_sidebar_fill_color\";s:6:\"000000\";s:18:\"profile_text_color\";s:6:\"000000\";s:28:\"profile_use_background_image\";b:0;s:20:\"has_extended_profile\";b:0;s:15:\"default_profile\";b:0;s:21:\"default_profile_image\";b:0;s:9:\"following\";b:0;s:19:\"follow_request_sent\";b:0;s:13:\"notifications\";b:0;s:15:\"translator_type\";s:4:\"none\";}s:3:\"geo\";N;s:11:\"coordinates\";N;s:5:\"place\";N;s:12:\"contributors\";N;s:15:\"is_quote_status\";b:0;s:13:\"retweet_count\";i:0;s:14:\"favorite_count\";i:3;s:9:\"favorited\";b:0;s:9:\"retweeted\";b:0;s:18:\"possibly_sensitive\";b:0;s:4:\"lang\";s:2:\"en\";}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1074 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,1,'_edit_last','1'),(5,1,'_edit_lock','1435901361:1'),(6,5,'_form','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>'),(7,5,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:47:\"[your-name] <wordpress@actualsoftsolutions.com>\";s:4:\"body\";s:209:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Utility Watch (http://utilitywatch.uk)\";s:9:\"recipient\";s:29:\"bhoobal.webdesigner@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(8,5,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:49:\"Utility Watch <wordpress@actualsoftsolutions.com>\";s:4:\"body\";s:151:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Utility Watch (http://utilitywatch.uk)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:39:\"Reply-To: bhoobal.webdesigner@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(9,5,'_messages','a:8:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";}'),(10,5,'_additional_settings',''),(11,5,'_locale','en_US'),(14,7,'_form','[text your-name placeholder \"Name\"][email your-email placeholder \"E-mail\"][textarea your-message placeholder \"Message\"][submit \"Send\"]'),(15,7,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"[your-name] <wordpress@mobilz.ninzio.com>\";s:4:\"body\";s:198:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\";s:9:\"recipient\";s:22:\"ninziothemes@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(16,7,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:66:\"Mobilz - Multipurpose Wordpress Them <wordpress@mobilz.ninzio.com>\";s:4:\"body\";s:140:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:32:\"Reply-To: ninziothemes@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(17,7,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(18,7,'_additional_settings',''),(19,7,'_locale','en_US'),(20,1559,'_form','[text your-name placeholder \"Name\"][text your-phone placeholder \"Phone\"][email your-email placeholder \"E-mail\"][textarea your-message placeholder \"Message\"][submit \"Send a message\"]'),(21,1559,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"[your-name] <wordpress@mobilz.ninzio.com>\";s:4:\"body\";s:198:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\";s:9:\"recipient\";s:22:\"ninziothemes@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(22,1559,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:66:\"Mobilz - Multipurpose Wordpress Them <wordpress@mobilz.ninzio.com>\";s:4:\"body\";s:140:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:32:\"Reply-To: ninziothemes@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(23,1559,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(24,1559,'_additional_settings',''),(25,1559,'_locale','en_US'),(26,1559,'_vc_post_settings','a:1:{s:7:\"vc_grid\";a:0:{}}'),(29,156,'_alp_processed','1425648568'),(30,156,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31,156,'_wpb_vc_js_interface_version','2'),(32,156,'_wpb_vc_js_status','true'),(33,156,'sidebar','none'),(34,156,'sidebar_pos','left'),(35,156,'rh_content',''),(36,156,'rh_height','300'),(37,156,'rh_back_color','#0086d5'),(38,156,'rh_back_img','http://mobilz.ninzio.com/wp-content/uploads/rich_bg6.jpg'),(39,156,'rh_back_img_repeat','no-repeat'),(40,156,'rh_back_img_position','left top'),(41,156,'rh_back_img_attachment','scroll'),(42,156,'rh_back_img_size','auto'),(43,156,'rh','false'),(44,156,'header_stuck','false'),(45,156,'slider','true'),(46,156,'blank','false'),(47,156,'layout','true'),(48,156,'one_page','false'),(49,156,'padding','true'),(50,156,'parallax','true'),(51,156,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(54,7,'_form','[text your-name placeholder \"Name\"][email your-email placeholder \"E-mail\"][textarea your-message placeholder \"Message\"][submit \"Send\"]'),(55,7,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"[your-name] <wordpress@mobilz.ninzio.com>\";s:4:\"body\";s:198:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\";s:9:\"recipient\";s:22:\"ninziothemes@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(56,7,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:66:\"Mobilz - Multipurpose Wordpress Them <wordpress@mobilz.ninzio.com>\";s:4:\"body\";s:140:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:32:\"Reply-To: ninziothemes@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(57,7,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(58,7,'_additional_settings',''),(59,7,'_locale','en_US'),(60,1559,'_form','[text your-name placeholder \"Name\"][text your-phone placeholder \"Phone\"][email your-email placeholder \"E-mail\"][textarea your-message placeholder \"Message\"][submit \"Send a message\"]'),(61,1559,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"[your-name] <wordpress@mobilz.ninzio.com>\";s:4:\"body\";s:198:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\";s:9:\"recipient\";s:22:\"ninziothemes@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(62,1559,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:66:\"Mobilz - Multipurpose Wordpress Them <wordpress@mobilz.ninzio.com>\";s:4:\"body\";s:140:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:32:\"Reply-To: ninziothemes@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(63,1559,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(64,1559,'_additional_settings',''),(65,1559,'_locale','en_US'),(66,1559,'_vc_post_settings','a:1:{s:7:\"vc_grid\";a:0:{}}'),(69,1380,'_edit_last','1'),(70,1380,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(71,1380,'background_image','http://utilitywatch.uk/wp-content/uploads/2015/07/slide-1.jpg'),(72,1380,'background_color',''),(73,1380,'background_video_mp4',''),(74,1380,'background_video_ogv',''),(75,1380,'background_video_webm',''),(76,1380,'background_video_pattern',''),(77,1380,'layer_1','<h2 style=\"font-weight: 300;font-size: 40px;line-height: 50px;color: #ffffff;font-family: \'Open Sans\',tahoma, arial, helvetica, sans-serif\">Cheaper business electricity prices,</h2>'),(78,1380,'layer_index_1','active'),(79,1380,'layer_delay_1','200'),(80,1380,'layer_duration_1','300'),(81,1380,'layer_zindex_1','1'),(82,1380,'layer_direction_1','scaleout'),(83,1380,'layer_posx_1','0'),(84,1380,'layer_posy_1','170'),(85,1380,'layer_2','<h2 style=\"font-weight: 300;font-size: 32px;line-height: 42px;color: #ffffff;font-family: \'Open Sans\',tahoma, arial, helvetica, sans-serif\">Business gas prices, Business gas suppliers,</h2>'),(86,1380,'layer_index_2','active'),(87,1380,'layer_delay_2','400'),(88,1380,'layer_duration_2','300'),(89,1380,'layer_zindex_2','1'),(90,1380,'layer_direction_2','scaleout'),(91,1380,'layer_posx_2','0'),(92,1380,'layer_posy_2','220'),(93,1380,'layer_3','<h2 style=\"font-weight: 300;font-size: 29px;line-height: 39px;color: #ffffff;font-family: \'Open Sans\',tahoma, arial, helvetica, sans-serif\">Business electricity suppliers, Utility Watch</h2>'),(94,1380,'layer_index_3','active'),(95,1380,'layer_delay_3','600'),(96,1380,'layer_duration_3','300'),(97,1380,'layer_zindex_3','1'),(98,1380,'layer_direction_3','scaleout'),(99,1380,'layer_posx_3','0'),(100,1380,'layer_posy_3','260'),(101,1380,'layer_4','<p>[nz_btn text=\"GET QUOTE\" link=\"http://utilitywatch.uk/contact-us/\" target=\"_self\" icon=\"\" animate=\"false\" animation_type=\"ghost\" color=\"white\" size=\"medium\" shape=\"square\" type=\"ghost\" hover_normal=\"fill\" hover_ghost=\"scene\" el_class=\"\" /]</p>'),(102,1380,'layer_index_4','active'),(103,1380,'layer_delay_4','800'),(104,1380,'layer_duration_4','300'),(105,1380,'layer_zindex_4','1'),(106,1380,'layer_direction_4','scaleout'),(107,1380,'layer_posx_4','0'),(108,1380,'layer_posy_4','340'),(109,1380,'layer_5',''),(110,1380,'layer_index_5','active'),(111,1380,'layer_delay_5','1000'),(112,1380,'layer_duration_5','300'),(113,1380,'layer_zindex_5','1'),(114,1380,'layer_direction_5','scaleout'),(115,1380,'layer_posx_5','180'),(116,1380,'layer_posy_5','380'),(117,1380,'layer_6',''),(118,1380,'layer_index_6','active'),(119,1380,'layer_delay_6','0'),(120,1380,'layer_duration_6','0'),(121,1380,'layer_zindex_6','1'),(122,1380,'layer_direction_6','none'),(123,1380,'layer_posx_6','0'),(124,1380,'layer_posy_6','0'),(125,1380,'layer_7',''),(126,1380,'layer_index_7','active'),(127,1380,'layer_delay_7','0'),(128,1380,'layer_duration_7','0'),(129,1380,'layer_zindex_7','1'),(130,1380,'layer_direction_7','none'),(131,1380,'layer_posx_7','0'),(132,1380,'layer_posy_7','0'),(261,156,'_edit_lock','1476274859:1'),(264,1418,'_alp_processed','1425648647'),(265,1418,'_wpb_vc_js_status','true'),(266,1418,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(267,1418,'sidebar','none'),(268,1418,'sidebar_pos','left'),(269,1418,'rh_content','<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">ABOUT US</span></h1><p><img class=\"aligncenter size-full wp-image-1605\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\"line\" width=\"499\" height=\"12\" /></p><p style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 26px; color: #ffffff;\">Utility Watch do not charge you for the service and our service is without obligation, so you don\'t have to pay us anything!</span></p>'),(270,1418,'rh_height','300'),(271,1418,'rh_back_color','#0086d5'),(272,1418,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2015/07/rich-header.jpg'),(273,1418,'rh_back_img_repeat','no-repeat'),(274,1418,'rh_back_img_position','center center'),(275,1418,'rh_back_img_attachment','scroll'),(276,1418,'rh_back_img_size','cover'),(277,1418,'rh','true'),(278,1418,'header_stuck','false'),(279,1418,'slider','false'),(280,1418,'blank','false'),(281,1418,'layout','true'),(282,1418,'one_page','false'),(283,1418,'padding','false'),(284,1418,'parallax','true'),(285,1418,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(396,1553,'_wpb_vc_js_status','true'),(397,1553,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(398,1553,'sidebar','none'),(399,1553,'sidebar_pos','left'),(400,1553,'rh_content','<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">CONTACT US</span></h1><p><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></p><p style=\"text-align: center;\"><span style=\"font-size: 16px; line-height: 26px; color: #ffffff;\"> </span></p>'),(401,1553,'rh_height','300'),(402,1553,'rh_back_color','#0086d5'),(403,1553,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2015/02/contact-us-900.jpg'),(404,1553,'rh_back_img_repeat','no-repeat'),(405,1553,'rh_back_img_position','center center'),(406,1553,'rh_back_img_attachment','scroll'),(407,1553,'rh_back_img_size','cover'),(408,1553,'rh','true'),(409,1553,'header_stuck','false'),(410,1553,'slider','false'),(411,1553,'blank','false'),(412,1553,'layout','true'),(413,1553,'one_page','false'),(414,1553,'padding','false'),(415,1553,'parallax','true'),(416,1553,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(417,1553,'_alp_processed','1425648647'),(462,1576,'_wp_attached_file','2015/07/favicon.png'),(463,1576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:19:\"2015/07/favicon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(464,1577,'_wp_attached_file','2015/07/logo.png'),(465,1577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:86;s:4:\"file\";s:16:\"2015/07/logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-150x86.png\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"logo-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-100x86.png\";s:5:\"width\";i:100;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(466,1578,'_wp_attached_file','2015/07/logo@2.png'),(467,1578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:172;s:4:\"file\";s:18:\"2015/07/logo@2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo@2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"logo@2-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:18:\"logo@2-640x172.png\";s:5:\"width\";i:640;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:18:\"logo@2-570x172.png\";s:5:\"width\";i:570;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:18:\"logo@2-370x172.png\";s:5:\"width\";i:370;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"logo@2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"logo@2-570x172.png\";s:5:\"width\";i:570;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"logo@2-600x172.png\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(472,1380,'_edit_lock','1475735256:1'),(473,1579,'_wp_attached_file','2015/07/logo-footer.png'),(474,1579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:245;s:6:\"height\";i:66;s:4:\"file\";s:23:\"2015/07/logo-footer.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-footer-150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-footer-100x66.png\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(475,1580,'_wp_attached_file','2015/07/slide-1.jpg'),(476,1580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1366;s:6:\"height\";i:569;s:4:\"file\";s:19:\"2015/07/slide-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slide-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"slide-1-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"slide-1-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:19:\"slide-1-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"slide-1-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"slide-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"slide-1-870x569.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"slide-1-1170x569.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"slide-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"slide-1-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"slide-1-600x569.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(495,1584,'_menu_item_type','post_type'),(496,1584,'_menu_item_menu_item_parent','0'),(497,1584,'_menu_item_object_id','1418'),(498,1584,'_menu_item_object','page'),(499,1584,'_menu_item_target',''),(500,1584,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(501,1584,'_menu_item_xfn',''),(502,1584,'_menu_item_url',''),(504,1585,'_menu_item_type','post_type'),(505,1585,'_menu_item_menu_item_parent','0'),(506,1585,'_menu_item_object_id','156'),(507,1585,'_menu_item_object','page'),(508,1585,'_menu_item_target',''),(509,1585,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(510,1585,'_menu_item_xfn',''),(511,1585,'_menu_item_url',''),(513,1585,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(514,1584,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(547,1589,'_wp_attached_file','2015/07/slider_pattern1.png'),(548,1589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:264;s:6:\"height\";i:839;s:4:\"file\";s:27:\"2015/07/slider_pattern1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"slider_pattern1-94x300.png\";s:5:\"width\";i:94;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-264x540.png\";s:5:\"width\";i:264;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-264x480.png\";s:5:\"width\";i:264;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-264x300.png\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-264x570.png\";s:5:\"width\";i:264;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-264x570.png\";s:5:\"width\";i:264;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-264x480.png\";s:5:\"width\";i:264;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"slider_pattern1-264x640.png\";s:5:\"width\";i:264;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(549,7,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(550,1591,'_wp_attached_file','2015/02/testimonial5.jpg'),(551,1591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:24:\"2015/02/testimonial5.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(552,1592,'_wp_attached_file','2015/02/testimonial1.jpg'),(553,1592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:24:\"2015/02/testimonial1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(554,1593,'_wp_attached_file','2015/02/testimonial2.jpg'),(555,1593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:24:\"2015/02/testimonial2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(556,1594,'_wp_attached_file','2015/02/testimonial3.jpg'),(557,1594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:24:\"2015/02/testimonial3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(558,1595,'_wp_attached_file','2015/02/testimonial4.jpg'),(559,1595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:24:\"2015/02/testimonial4.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(560,1596,'_wp_attached_file','2015/07/triangle.png'),(561,1596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:66;s:6:\"height\";i:40;s:4:\"file\";s:20:\"2015/07/triangle.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(562,1597,'_wp_attached_file','2015/02/partners-2.jpg'),(563,1597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:953;s:6:\"height\";i:69;s:4:\"file\";s:22:\"2015/02/partners-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"partners-2-150x69.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"partners-2-300x22.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:22;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:21:\"partners-2-640x69.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"partners-2-570x69.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"partners-2-370x69.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"partners-2-870x69.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"partners-2-100x69.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"partners-2-570x69.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"partners-2-600x69.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(564,1598,'_wp_attached_file','2015/02/partners-1.jpg'),(565,1598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:953;s:6:\"height\";i:69;s:4:\"file\";s:22:\"2015/02/partners-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"partners-1-150x69.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"partners-1-300x22.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:22;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:21:\"partners-1-640x69.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"partners-1-570x69.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"partners-1-370x69.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"partners-1-870x69.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"partners-1-100x69.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"partners-1-570x69.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"partners-1-600x69.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(566,156,'_edit_last','1'),(567,1553,'_edit_lock','1476274822:1'),(568,1553,'_edit_last','1'),(569,1605,'_wp_attached_file','2015/07/line.png'),(570,1605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:499;s:6:\"height\";i:12;s:4:\"file\";s:16:\"2015/07/line.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"line-150x12.png\";s:5:\"width\";i:150;s:6:\"height\";i:12;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"line-300x7.png\";s:5:\"width\";i:300;s:6:\"height\";i:7;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:15:\"line-370x12.png\";s:5:\"width\";i:370;s:6:\"height\";i:12;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"line-100x12.png\";s:5:\"width\";i:100;s:6:\"height\";i:12;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(571,1418,'_edit_lock','1476274966:1'),(572,1605,'_wp_attachment_image_alt','line'),(573,1418,'_edit_last','1'),(574,1612,'_edit_last','1'),(575,1612,'_edit_lock','1475217782:1'),(576,1612,'_wpb_vc_js_status','true'),(577,1612,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(578,1612,'sidebar','none'),(579,1612,'sidebar_pos','left'),(580,1612,'rh_content','<h1 style=\"text-align: center\"><span style=\"color: #ffffff;font-size: 52px;line-height: 62px;font-weight: bold\">BUSINESS ELECTRICITY</span></h1><p><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></p><p style=\"text-align: center\"><span style=\"font-size: 16px;line-height: 26px;color: #ffffff\">Lower your electricity rates today</span></p>'),(581,1612,'rh_height','300'),(582,1612,'rh_back_color','#f6f6f6'),(583,1612,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2015/07/rich-header.jpg'),(584,1612,'rh_back_img_repeat','no-repeat'),(585,1612,'rh_back_img_position','left top'),(586,1612,'rh_back_img_attachment','scroll'),(587,1612,'rh_back_img_size','auto'),(588,1612,'rh','true'),(589,1612,'header_stuck','false'),(590,1612,'slider','false'),(591,1612,'blank','false'),(592,1612,'layout','true'),(593,1612,'one_page','false'),(594,1612,'padding','true'),(595,1612,'parallax','true'),(596,1612,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(607,1616,'_edit_last','1'),(608,1616,'_edit_lock','1435900373:1'),(609,1616,'_wpb_vc_js_status','true'),(610,1616,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(611,1616,'sidebar','none'),(612,1616,'sidebar_pos','left'),(613,1616,'rh_content','<h1 style=\"text-align: center\"><span style=\"color: #ffffff;font-size: 52px;line-height: 62px;font-weight: bold\">BUSINESS GAS</span></h1><p><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></p><p style=\"text-align: center\"><span style=\"font-size: 16px;line-height: 26px;color: #ffffff\">Reduce your commercial gas cost</span></p>'),(614,1616,'rh_height','300'),(615,1616,'rh_back_color','#0086d5'),(616,1616,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2015/07/rich-header.jpg'),(617,1616,'rh_back_img_repeat','no-repeat'),(618,1616,'rh_back_img_position','left top'),(619,1616,'rh_back_img_attachment','scroll'),(620,1616,'rh_back_img_size','auto'),(621,1616,'rh','true'),(622,1616,'header_stuck','false'),(623,1616,'slider','false'),(624,1616,'blank','false'),(625,1616,'layout','true'),(626,1616,'one_page','false'),(627,1616,'padding','true'),(628,1616,'parallax','true'),(629,1616,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(640,1621,'_wp_attached_file','2015/07/rich-header.jpg'),(641,1621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:23:\"2015/07/rich-header.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"rich-header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"rich-header-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"rich-header-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:23:\"rich-header-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"rich-header-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"rich-header-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"rich-header-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"rich-header-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"rich-header-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"rich-header-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"rich-header-600x640.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(642,2,'_edit_lock','1475734255:1'),(643,2,'_edit_last','1'),(644,2,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(669,1637,'_wp_attached_file','2015/05/market-update.jpg'),(670,1637,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:715;s:6:\"height\";i:375;s:4:\"file\";s:25:\"2015/05/market-update.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"market-update-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"market-update-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:25:\"market-update-640x375.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"market-update-570x375.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"market-update-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"market-update-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"market-update-570x375.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"market-update-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(671,1,'_thumbnail_id','1637'),(673,1,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(674,1,'audio_mp3',''),(675,1,'audio_ogg',''),(676,1,'audio_embed',''),(677,1,'video_mp4',''),(678,1,'video_ogv',''),(679,1,'video_webm',''),(680,1,'video_embed',''),(681,1,'video_poster',''),(682,1,'link_url',''),(683,1,'image_url',''),(684,1,'image_description',''),(685,1,'status_author',''),(686,1,'quote_author',''),(687,1,'rh_height','300'),(688,1,'rh_back_color','#0086d5'),(689,1,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2015/07/rich-header.jpg'),(690,1,'rh_back_img_repeat','no-repeat'),(691,1,'rh_back_img_position','left top'),(692,1,'rh_back_img_attachment','scroll'),(693,1,'rh_back_img_size','auto'),(694,1,'featured_media','true'),(695,1,'rh','true'),(696,1,'header_stuck','false'),(697,1,'parallax','true'),(698,1,'_wp_old_slug','hello-world'),(699,1639,'_edit_last','1'),(700,1639,'_edit_lock','1435901621:1'),(701,1639,'_thumbnail_id','1637'),(703,1639,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(704,1639,'audio_mp3',''),(705,1639,'audio_ogg',''),(706,1639,'audio_embed',''),(707,1639,'video_mp4',''),(708,1639,'video_ogv',''),(709,1639,'video_webm',''),(710,1639,'video_embed',''),(711,1639,'video_poster',''),(712,1639,'link_url',''),(713,1639,'image_url',''),(714,1639,'image_description',''),(715,1639,'status_author',''),(716,1639,'quote_author',''),(717,1639,'rh_height','300'),(718,1639,'rh_back_color','#0086d5'),(719,1639,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2015/07/rich-header.jpg'),(720,1639,'rh_back_img_repeat','no-repeat'),(721,1639,'rh_back_img_position','left top'),(722,1639,'rh_back_img_attachment','scroll'),(723,1639,'rh_back_img_size','auto'),(724,1639,'featured_media','true'),(725,1639,'rh','true'),(726,1639,'header_stuck','false'),(727,1639,'parallax','true'),(730,1643,'_wp_attached_file','2015/07/logo-mobile@2.png'),(731,1643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:86;s:4:\"file\";s:25:\"2015/07/logo-mobile@2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-mobile@2-150x86.png\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"logo-mobile@2-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-mobile@2-100x86.png\";s:5:\"width\";i:100;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(732,1644,'_wp_attached_file','2015/07/logo-mobile.png'),(733,1644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:43;s:4:\"file\";s:23:\"2015/07/logo-mobile.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-mobile-150x43.png\";s:5:\"width\";i:150;s:6:\"height\";i:43;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-mobile-100x43.png\";s:5:\"width\";i:100;s:6:\"height\";i:43;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(734,1646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(735,1646,'_edit_last','1'),(736,1646,'_edit_lock','1495116237:1'),(737,1647,'_wp_attached_file','2016/09/rich-header.jpg'),(738,1647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:23:\"2016/09/rich-header.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"rich-header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"rich-header-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"rich-header-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"rich-header-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:23:\"rich-header-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"rich-header-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"rich-header-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"rich-header-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"rich-header-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(739,1646,'sidebar','none'),(740,1646,'sidebar_pos','left'),(741,1646,'rh_content','<h1><span style=\"color: #ffffff;\"> </span></h1><h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">ENERGY PROCUREMENT</span></h1><p><span style=\"color: #000000;\"><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></span></p><p style=\"text-align: center;\"> </p>'),(742,1646,'rh_height','300'),(743,1646,'rh_back_color','#f6f6f6'),(744,1646,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2016/09/energyprocurement.jpg'),(745,1646,'rh_back_img_repeat','no-repeat'),(746,1646,'rh_back_img_position','center center'),(747,1646,'rh_back_img_attachment','scroll'),(748,1646,'rh_back_img_size','cover'),(749,1646,'rh','true'),(750,1646,'header_stuck','false'),(751,1646,'slider','false'),(752,1646,'blank','false'),(753,1646,'layout','true'),(754,1646,'one_page','false'),(755,1646,'padding','true'),(756,1646,'parallax','true'),(757,1646,'_wpb_vc_js_status','true'),(758,1646,'_wpb_shortcodes_custom_css','.vc_custom_1475216765636{margin-bottom: 20px !important;}.vc_custom_1475216824271{margin-bottom: 20px !important;}'),(759,1655,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(760,1655,'_edit_last','1'),(761,1655,'_edit_lock','1476276559:1'),(762,1655,'sidebar','none'),(763,1655,'sidebar_pos','left'),(764,1655,'rh_content','<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">UTILITY AUDIT</span></h1><p><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></p>'),(765,1655,'rh_height','300'),(766,1655,'rh_back_color','#f6f6f6'),(767,1655,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2016/09/utility-audit.jpg'),(768,1655,'rh_back_img_repeat','no-repeat'),(769,1655,'rh_back_img_position','center center'),(770,1655,'rh_back_img_attachment','scroll'),(771,1655,'rh_back_img_size','cover'),(772,1655,'rh','true'),(773,1655,'header_stuck','false'),(774,1655,'slider','false'),(775,1655,'blank','false'),(776,1655,'layout','true'),(777,1655,'one_page','false'),(778,1655,'padding','true'),(779,1655,'parallax','true'),(780,1655,'_wpb_vc_js_status','true'),(781,1655,'_wpb_shortcodes_custom_css','.vc_custom_1475217762407{margin-bottom: 20px !important;}.vc_custom_1475217770465{margin-bottom: 20px !important;}'),(782,1659,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(783,1659,'_edit_last','1'),(784,1659,'_edit_lock','1476276559:1'),(785,1659,'sidebar','none'),(786,1659,'sidebar_pos','left'),(787,1659,'rh_content','<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">WATER & WASTE WATER</span></h1><p><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></p>'),(788,1659,'rh_height','300'),(789,1659,'rh_back_color','#f6f6f6'),(790,1659,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2016/10/IMG_06102016_121932.png'),(791,1659,'rh_back_img_repeat','no-repeat'),(792,1659,'rh_back_img_position','center center'),(793,1659,'rh_back_img_attachment','scroll'),(794,1659,'rh_back_img_size','cover'),(795,1659,'rh','true'),(796,1659,'header_stuck','false'),(797,1659,'slider','false'),(798,1659,'blank','false'),(799,1659,'layout','true'),(800,1659,'one_page','false'),(801,1659,'padding','true'),(802,1659,'parallax','true'),(803,1659,'_wpb_vc_js_status','true'),(804,1659,'_wpb_shortcodes_custom_css','.vc_custom_1476274823933{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}'),(805,1664,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(806,1664,'_edit_last','1'),(807,1664,'_edit_lock','1476276560:1'),(808,1664,'sidebar','none'),(809,1664,'sidebar_pos','left'),(810,1664,'rh_content','<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">CARBON REDUCTION</span></h1><p><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></p>'),(811,1664,'rh_height','300'),(812,1664,'rh_back_color','#f6f6f6'),(813,1664,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2016/09/reducing-carbon.jpg'),(814,1664,'rh_back_img_repeat','no-repeat'),(815,1664,'rh_back_img_position','center center'),(816,1664,'rh_back_img_attachment','scroll'),(817,1664,'rh_back_img_size','cover'),(818,1664,'rh','true'),(819,1664,'header_stuck','false'),(820,1664,'slider','false'),(821,1664,'blank','false'),(822,1664,'layout','true'),(823,1664,'one_page','false'),(824,1664,'padding','true'),(825,1664,'parallax','true'),(826,1664,'_wpb_vc_js_status','true'),(827,1664,'_wpb_shortcodes_custom_css','.vc_custom_1475732836538{margin-bottom: 20px !important;}.vc_custom_1475218241345{margin-bottom: 20px !important;}'),(828,1668,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(829,1668,'_edit_last','1'),(830,1668,'_edit_lock','1476274965:1'),(831,1668,'sidebar','none'),(832,1668,'sidebar_pos','left'),(833,1668,'rh_content','<h1 style=\"text-align: center;\"><span style=\"color: #ffffff; font-size: 52px; line-height: 62px; font-weight: bold;\">SERVICES</span></h1><p><img class=\"aligncenter\" src=\"http://utilitywatch.uk/wp-content/uploads/2015/07/line.png\" alt=\""img\" /></p>'),(834,1668,'rh_height','300'),(835,1668,'rh_back_color','#f6f6f6'),(836,1668,'rh_back_img','http://utilitywatch.uk/wp-content/uploads/2016/09/rich-header.jpg'),(837,1668,'rh_back_img_repeat','no-repeat'),(838,1668,'rh_back_img_position','center center'),(839,1668,'rh_back_img_attachment','scroll'),(840,1668,'rh_back_img_size','cover'),(841,1668,'rh','true'),(842,1668,'header_stuck','false'),(843,1668,'slider','false'),(844,1668,'blank','false'),(845,1668,'layout','true'),(846,1668,'one_page','false'),(847,1668,'padding','true'),(848,1668,'parallax','true'),(849,1668,'_wpb_vc_js_status','true'),(851,1673,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(852,1673,'_menu_item_type','post_type'),(853,1673,'_menu_item_menu_item_parent','1691'),(854,1673,'_menu_item_object_id','1646'),(855,1673,'_menu_item_object','page'),(856,1673,'_menu_item_target',''),(857,1673,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(858,1673,'_menu_item_xfn',''),(859,1673,'_menu_item_url',''),(861,1674,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(862,1674,'_menu_item_type','post_type'),(863,1674,'_menu_item_menu_item_parent','1691'),(864,1674,'_menu_item_object_id','1655'),(865,1674,'_menu_item_object','page'),(866,1674,'_menu_item_target',''),(867,1674,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(868,1674,'_menu_item_xfn',''),(869,1674,'_menu_item_url',''),(891,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(892,1677,'_menu_item_type','post_type'),(893,1677,'_menu_item_menu_item_parent','1691'),(894,1677,'_menu_item_object_id','1668'),(895,1677,'_menu_item_object','page'),(896,1677,'_menu_item_target',''),(897,1677,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(898,1677,'_menu_item_xfn',''),(899,1677,'_menu_item_url',''),(901,1678,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(902,1678,'_menu_item_type','post_type'),(903,1678,'_menu_item_menu_item_parent','1691'),(904,1678,'_menu_item_object_id','1659'),(905,1678,'_menu_item_object','page'),(906,1678,'_menu_item_target',''),(907,1678,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(908,1678,'_menu_item_xfn',''),(909,1678,'_menu_item_url',''),(911,1679,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(912,1679,'_menu_item_type','post_type'),(913,1679,'_menu_item_menu_item_parent','1691'),(914,1679,'_menu_item_object_id','1664'),(915,1679,'_menu_item_object','page'),(916,1679,'_menu_item_target',''),(917,1679,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(918,1679,'_menu_item_xfn',''),(919,1679,'_menu_item_url',''),(931,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(932,1685,'_menu_item_type','post_type'),(933,1685,'_menu_item_menu_item_parent','0'),(934,1685,'_menu_item_object_id','2'),(935,1685,'_menu_item_object','page'),(936,1685,'_menu_item_target',''),(937,1685,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(938,1685,'_menu_item_xfn',''),(939,1685,'_menu_item_url',''),(941,1686,'_wp_attached_file','2016/09/reducing-carbon.jpg'),(942,1686,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:728;s:4:\"file\";s:27:\"2016/09/reducing-carbon.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"reducing-carbon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"reducing-carbon-300x114.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"reducing-carbon-768x291.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"reducing-carbon-1024x388.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:27:\"reducing-carbon-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"reducing-carbon-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"reducing-carbon-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"reducing-carbon-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"reducing-carbon-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(943,1691,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(944,1691,'_menu_item_type','custom'),(945,1691,'_menu_item_menu_item_parent','0'),(946,1691,'_menu_item_object_id','1691'),(947,1691,'_menu_item_object','custom'),(948,1691,'_menu_item_target',''),(949,1691,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(950,1691,'_menu_item_xfn',''),(951,1691,'_menu_item_url','#'),(953,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(954,1693,'_menu_item_type','post_type'),(955,1693,'_menu_item_menu_item_parent','0'),(956,1693,'_menu_item_object_id','1553'),(957,1693,'_menu_item_object','page'),(958,1693,'_menu_item_target',''),(959,1693,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(960,1693,'_menu_item_xfn',''),(961,1693,'_menu_item_url',''),(963,1696,'_wp_attached_file','2016/09/energyprocurement.jpg'),(964,1696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1903;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2016/09/energyprocurement.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"energyprocurement-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"energyprocurement-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"energyprocurement-768x242.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"energyprocurement-1024x323.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:29:\"energyprocurement-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"energyprocurement-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"energyprocurement-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"energyprocurement-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"energyprocurement-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(965,1697,'_wp_attached_file','2016/09/utility-audit.jpg'),(966,1697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:672;s:4:\"file\";s:25:\"2016/09/utility-audit.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"utility-audit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"utility-audit-300x105.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"utility-audit-768x269.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"utility-audit-1024x358.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:25:\"utility-audit-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"utility-audit-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"utility-audit-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"utility-audit-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"utility-audit-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(967,1700,'_wp_attached_file','2015/02/contact-us-900.jpg'),(968,1700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:570;s:4:\"file\";s:26:\"2015/02/contact-us-900.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"contact-us-900-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"contact-us-900-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"contact-us-900-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"contact-us-900-1024x307.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:26:\"contact-us-900-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"contact-us-900-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"contact-us-900-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"contact-us-900-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"contact-us-900-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(969,1703,'_wp_attached_file','2016/09/water-waster-water.jpg'),(970,1703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:570;s:4:\"file\";s:30:\"2016/09/water-waster-water.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"water-waster-water-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"water-waster-water-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"water-waster-water-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"water-waster-water-1024x307.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:30:\"water-waster-water-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"water-waster-water-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"water-waster-water-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"water-waster-water-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"water-waster-water-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(971,1705,'_wp_attached_file','2016/09/blue_wave_of_water-wide.jpg'),(972,1705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2016/09/blue_wave_of_water-wide.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"blue_wave_of_water-wide-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blue_wave_of_water-wide-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"blue_wave_of_water-wide-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"blue_wave_of_water-wide-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:35:\"blue_wave_of_water-wide-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:35:\"blue_wave_of_water-wide-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"blue_wave_of_water-wide-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:35:\"blue_wave_of_water-wide-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:36:\"blue_wave_of_water-wide-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(973,1707,'_wp_attached_file','2016/09/water-waster-water-1.jpg'),(974,1707,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:783;s:4:\"file\";s:32:\"2016/09/water-waster-water-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"water-waster-water-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"water-waster-water-1-300x122.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"water-waster-water-1-768x313.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"water-waster-water-1-1024x418.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:418;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:32:\"water-waster-water-1-640x540.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"water-waster-water-1-570x480.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"water-waster-water-1-370x300.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:32:\"water-waster-water-1-870x570.jpg\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"water-waster-water-1-1170x570.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:{}}}'),(975,1710,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(976,1710,'_menu_item_type','post_type'),(977,1710,'_menu_item_menu_item_parent','0'),(978,1710,'_menu_item_object_id','1612'),(979,1710,'_menu_item_object','page'),(980,1710,'_menu_item_target',''),(981,1710,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(982,1710,'_menu_item_xfn',''),(983,1710,'_menu_item_url',''),(984,1710,'_menu_item_orphaned','1475230919'),(985,2,'sidebar','none'),(986,2,'sidebar_pos','left'),(987,2,'rh_content',''),(988,2,'rh_height','300'),(989,2,'rh_back_color','#f6f6f6'),(990,2,'rh_back_img',''),(991,2,'rh_back_img_repeat','no-repeat'),(992,2,'rh_back_img_position','center center'),(993,2,'rh_back_img_attachment','scroll'),(994,2,'rh_back_img_size','cover'),(995,2,'rh','true'),(996,2,'header_stuck','false'),(997,2,'slider','false'),(998,2,'blank','false'),(999,2,'layout','true'),(1000,2,'one_page','false'),(1001,2,'padding','true'),(1002,2,'parallax','true'),(1003,2,'_wpb_vc_js_status','false'),(1004,1719,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1006,1719,'_edit_last','1'),(1007,1719,'_edit_lock','1475736740:1'),(1008,1719,'background_image','http://utilitywatch.uk/wp-content/uploads/2016/10/IMG_06102016_121932.png'),(1009,1719,'background_color',''),(1010,1719,'background_video_mp4',''),(1011,1719,'background_video_ogv',''),(1012,1719,'background_video_webm',''),(1013,1719,'background_video_pattern',''),(1014,1719,'layer_1','<h2 style=\"font-weight: 300; font-size: 40px; line-height: 50px; color: #ffffff; font-family: \'Open Sans\', tahoma, arial, helvetica, sans-serif; text-align: left;\">Water & Waste Water </h2>'),(1015,1719,'layer_index_1','active'),(1016,1719,'layer_delay_1','200'),(1017,1719,'layer_duration_1','300'),(1018,1719,'layer_zindex_1','1'),(1019,1719,'layer_direction_1','scaleout'),(1020,1719,'layer_posx_1','0'),(1021,1719,'layer_posy_1','170'),(1022,1719,'layer_2','<h2 style=\"font-weight: 300; font-size: 32px; line-height: 42px; color: #ffffff; font-family: \'Open Sans\',tahoma, arial, helvetica, sans-serif;\">Water deregulation will occur in 2017 and</h2>'),(1023,1719,'layer_index_2','active'),(1024,1719,'layer_delay_2','400'),(1025,1719,'layer_duration_2','300'),(1026,1719,'layer_zindex_2','1'),(1027,1719,'layer_direction_2','scaleout'),(1028,1719,'layer_posx_2','0'),(1029,1719,'layer_posy_2','220'),(1030,1719,'layer_3','<h2 style=\"font-weight: 300; font-size: 32px; line-height: 42px; color: #ffffff; font-family: \'Open Sans\',tahoma, arial, helvetica, sans-serif;\">will allow businesses to switch water providers to a cheaper alternative.</h2>'),(1031,1719,'layer_index_3','active'),(1032,1719,'layer_delay_3','600'),(1033,1719,'layer_duration_3','300'),(1034,1719,'layer_zindex_3','1'),(1035,1719,'layer_direction_3','scaleout'),(1036,1719,'layer_posx_3','0'),(1037,1719,'layer_posy_3','260'),(1038,1719,'layer_4','<p>[nz_btn text=\"GET QUOTE\" link=\"http://utilitywatch.uk/contact-us/\" target=\"_self\" icon=\"\" animate=\"false\" animation_type=\"ghost\" color=\"white\" size=\"medium\" shape=\"square\" type=\"ghost\" hover_normal=\"fill\" hover_ghost=\"scene\" el_class=\"\" /]</p>'),(1039,1719,'layer_index_4','active'),(1040,1719,'layer_delay_4','800'),(1041,1719,'layer_duration_4','300'),(1042,1719,'layer_zindex_4','1'),(1043,1719,'layer_direction_4','none'),(1044,1719,'layer_posx_4','0'),(1045,1719,'layer_posy_4','340'),(1046,1719,'layer_5',''),(1047,1719,'layer_index_5','active'),(1048,1719,'layer_delay_5','0'),(1049,1719,'layer_duration_5','0'),(1050,1719,'layer_zindex_5','1'),(1051,1719,'layer_direction_5','none'),(1052,1719,'layer_posx_5','0'),(1053,1719,'layer_posy_5','0'),(1054,1719,'layer_6',''),(1055,1719,'layer_index_6','active'),(1056,1719,'layer_delay_6','0'),(1057,1719,'layer_duration_6','0'),(1058,1719,'layer_zindex_6','1'),(1059,1719,'layer_direction_6','none'),(1060,1719,'layer_posx_6','0'),(1061,1719,'layer_posy_6','0'),(1062,1719,'layer_7',''),(1063,1719,'layer_index_7',''),(1064,1719,'layer_delay_7','0'),(1065,1719,'layer_duration_7','0'),(1066,1719,'layer_zindex_7','1'),(1067,1719,'layer_direction_7','none'),(1068,1719,'layer_posx_7','0'),(1069,1719,'layer_posy_7','0'),(1070,1722,'_wp_attached_file','2016/10/IMG_06102016_121932.png'),(1071,1722,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:783;s:4:\"file\";s:31:\"2016/10/IMG_06102016_121932.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_06102016_121932-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_06102016_121932-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_06102016_121932-768x313.png\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_06102016_121932-1024x418.png\";s:5:\"width\";i:1024;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"Ninzio-Uni\";a:4:{s:4:\"file\";s:31:\"IMG_06102016_121932-640x540.png\";s:5:\"width\";i:640;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:31:\"IMG_06102016_121932-570x480.png\";s:5:\"width\";i:570;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"IMG_06102016_121932-370x300.png\";s:5:\"width\";i:370;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:31:\"IMG_06102016_121932-870x570.png\";s:5:\"width\";i:870;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:32:\"IMG_06102016_121932-1170x570.png\";s:5:\"width\";i:1170;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(1073,1738,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
`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 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=1741 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2015-05-14 22:21:28','2015-05-14 22:21:28','<b>Gas</b>\r\n<b></b>\r\n\r\nStrong LNG output and imports heightened by an appreciating pound against the euro continued to support gas prices down throughout March. Supply remained reasonably high despite a number of outages at Norwegian gas fields increasing demand.\r\n\r\nWorryingly, a deal is yet to be reached between Russia & Ukraine which remains a concern, adding upwards pressure to the gas market. More potential upside is coming from fears over Centrica’s Rough gas storage facility with a potential 30% capacity cut due to technical issues. However, the strong supply and lower oil prices due to the continued over supply has muted this impact.\r\n\r\n<b>Power</b>\r\n<b></b>\r\n\r\nThe gas market continued to be the main driver behind the power market movement. The news that Rough gas storage might face capacity restrictions fed through to the power market and raised prices, however weak coal and oil prices reduced the impact.\r\n\r\nAt the beginning of the month milder temperatures and consistent wind speeds pushed up power production from renewables, pushed prices down. Mid-month saw cooler than forecasted temperatures increasing heating demand and the need for gas in power generation.\r\n\r\n \r\n\r\n<b>What to watch out for throughout April</b>\r\n<b></b>\r\n\r\nIn May we should hear more on the financial situation in Greece. They are currently locked in talks with creditors as they are running the risk of running out of cash and are seeking fresh financial aid.\r\n\r\nAn update on the Rough Gas Storage capacity problems is expected shortly.\r\nTalks between Russia & Ukraine continue with the EU next month on the pricing of Russian Gas deliveries.','Energy Market Update','','publish','closed','closed','','energy-market-update','','','2015-07-03 05:29:36','2015-07-03 05:29:36','',0,'http://utilitywatch.uk/?p=1',0,'post','',0),(2,1,'2015-05-14 22:21:28','2015-05-14 22:21:28','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:\r\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\n<blockquote>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.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://utilitywatch.uk/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','News','','publish','open','closed','','news','','','2016-09-30 11:27:49','2016-09-30 11:27:49','',0,'http://utilitywatch.uk/?page_id=2',0,'page','',0),(5,1,'2015-07-01 06:36:19','2015-07-01 06:36:19','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <wordpress@actualsoftsolutions.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Utility Watch (http://utilitywatch.uk)\nbhoobal.webdesigner@gmail.com\nReply-To: [your-email]\n\n0\n0\n\n[your-subject]\nUtility Watch <wordpress@actualsoftsolutions.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Utility Watch (http://utilitywatch.uk)\n[your-email]\nReply-To: bhoobal.webdesigner@gmail.com\n\n0\n0\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2015-07-01 06:36:19','2015-07-01 06:36:19','',0,'http://utilitywatch.uk/?post_type=wpcf7_contact_form&p=5',0,'wpcf7_contact_form','',0),(7,1,'2015-02-10 13:00:42','2015-02-10 13:00:42','[text your-name placeholder \"Name\"][email your-email placeholder \"E-mail\"][textarea your-message placeholder \"Message\"][submit \"Send\"]\n[your-subject]\n[your-name] <wordpress@mobilz.ninzio.com>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\nninziothemes@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nMobilz - Multipurpose Wordpress Them <wordpress@mobilz.ninzio.com>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\n[your-email]\nReply-To: ninziothemes@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','Contact form Footer','','publish','open','open','','contact-form-1-2','','','2015-07-02 06:46:50','2015-07-02 06:46:50','',0,'http://mobilz.ninzio.com/?post_type=wpcf7_contact_form&p=4',0,'wpcf7_contact_form','',0),(156,1,'2015-02-10 13:09:31','2015-02-10 13:09:31','[vc_row full_width=\"true\" padding_top=\"25\" padding_bottom=\"30\"][vc_column width=\"1/1\"][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row padding_top=\"40\" padding_bottom=\"50\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply\r\ncontracts for commercial operations, for energy and water\r\nmanagement, including multi-site purchasing.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business throughout\r\nthe United Kingdom, including a number of well known high street\r\ncompanies.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\"][vc_column margin_b=\"false\" width=\"1/1\"][vc_custom_heading text=\"Utility Watch’s professional team of advisors are on-call\" font_container=\"tag:h2|font_size:24px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_custom_heading text=\"between <b>08.30am & 5.00pm</b> Monday to Fridays. Freephone <b> 0800 043 8248</b>\" font_container=\"tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][/vc_column][/vc_row][vc_row padding_top=\"70\" padding_bottom=\"30\"][vc_column animate=\"true\" effect=\"fade-bottom\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and respect.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"30\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Home','','publish','open','closed','','corporate','','','2016-10-12 12:23:16','2016-10-12 12:23:16','',0,'http://mobilz.ninzio.com/?page_id=156',0,'page','',0),(1380,1,'2015-02-12 11:20:55','2015-02-12 11:20:55','','slide1','','publish','closed','closed','','slide1','','','2015-07-02 06:24:22','2015-07-02 06:24:22','',0,'http://mobilz.ninzio.com/?post_type=ninzio-slider&p=1380',0,'ninzio-slider','',0),(1418,1,'2015-02-19 11:55:47','2015-02-19 11:55:47','[vc_row full_width=\"true\" padding_bottom=\"50\"][vc_column pt=\"40\" width=\"1/1\"][vc_text_separator title=\"KEY SERVICES\" style=\"double\" el_class=\"extra-separator\"][nz_gap][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#eff3f6\" background_image=\"1423\" background_position=\"Center center\" padding_top=\"0\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"55\"][vc_column_text]\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply contracts for commercial operations, for energy and water management, including multi-site purchasing.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business’s throughout the United Kingdom, including a number of well known high street companies. This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and</span>\r\n<span style=\"font-size: 18px;\">respect.</span></p>\r\n[/vc_column_text][nz_gap height=\"35\"][nz_btn text=\"Get Quote\" link=\"http://utilitywatch.uk/contact-us/\" icon=\"icon-file\" animate=\"true\" color=\"sky\" size=\"medium\" shape=\"rounded\" type=\"3d\" el_class=\"extra-blue\"][nz_btn text=\"Latest News\" link=\"http://utilitywatch.uk/news/\" icon=\"icon-newspaper\" animate=\"true\" color=\"grey\" size=\"medium\" shape=\"rounded\" type=\"3d\" el_class=\"extra-grey\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"60\" padding_bottom=\"60\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Contact Us Now\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row]','About Us','','publish','open','open','','about-us','','','2016-10-12 12:24:55','2016-10-12 12:24:55','',0,'http://mobilz.ninzio.com/?page_id=1418',0,'page','',0),(1553,1,'2015-02-20 10:19:50','2015-02-20 10:19:50','[vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_top=\"125\" padding_bottom=\"50\"][vc_column animate=\"true\" width=\"1/1\"][vc_column_text]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2359.2690595484787!2d-2.4753946844921138!3d53.74909198006531!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b9fc9f7733981%3A0xe5d066a06442ee5e!2sBusiness+Development+Centre!5e0!3m2!1sen!2sin!4v1475228944586\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"2/3\"][vc_text_separator title=\"LEAVE A MESSAGE\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][contact-form-7 id=\"1559\"][/vc_column][vc_column animate=\"true\" effect=\"fade-right\" width=\"1/3\"][vc_text_separator title=\"CONTACT DETAILS\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][vc_column_text]Start Saving Money on your Business Energy Today. Contact us via any of the below information.[/vc_column_text][nz_sep][nz_icon_list icon=\"icon-location2\" icon_color=\"#0086d5\"]Suite 4 Eanam Wharf Business Centre, Blackburn, Lancashire, BB1 5BL[/nz_icon_list][nz_icon_list icon=\"icon-phone\" icon_color=\"#0086d5\"] 0800 043 8248[/nz_icon_list][nz_icon_list icon=\"icon-envelope\" icon_color=\"#0086d5\"]paul@utilitywatch.direct[/nz_icon_list][nz_icon_list icon=\"icon-earth\" icon_color=\"#0086d5\"]www.utilitywatch.uk[/nz_icon_list][nz_sep][nz_sl facebook=\"http://facebook.com/\" twitter=\"http://twitter.com/\" googleplus=\"http://plus.google.com/\" email=\"info@utilitywatch.co.uk\"][/vc_column][/vc_row]','Contact Us','','publish','open','open','','contact-us','','','2016-10-12 11:50:23','2016-10-12 11:50:23','',0,'http://mobilz.ninzio.com/?page_id=1553',0,'page','',0),(1559,1,'2015-02-20 10:47:29','2015-02-20 10:47:29','[text your-name placeholder \"Name\"][text your-phone placeholder \"Phone\"][email your-email placeholder \"E-mail\"][textarea your-message placeholder \"Message\"][submit \"Send a message\"]\n[your-subject]\n[your-name] <wordpress@mobilz.ninzio.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\nninziothemes@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nMobilz - Multipurpose Wordpress Them <wordpress@mobilz.ninzio.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mobilz - Multipurpose Wordpress Them (http://mobilz.ninzio.com)\n[your-email]\nReply-To: ninziothemes@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','Contact form 2','','publish','open','open','','untitled','','','2015-02-20 10:47:29','2015-02-20 10:47:29','',0,'http://mobilz.ninzio.com/?post_type=wpcf7_contact_form&p=1559',0,'wpcf7_contact_form','',0),(1576,1,'2015-07-02 05:17:25','2015-07-02 05:17:25','','favicon','','inherit','closed','closed','','favicon','','','2015-07-02 05:17:25','2015-07-02 05:17:25','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/favicon.png',0,'attachment','image/png',0),(1577,1,'2015-07-02 05:17:30','2015-07-02 05:17:30','','logo','','inherit','closed','closed','','logo','','','2015-07-02 05:17:30','2015-07-02 05:17:30','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/logo.png',0,'attachment','image/png',0),(1578,1,'2015-07-02 05:22:00','2015-07-02 05:22:00','','logo@2','','inherit','closed','closed','','logo2','','','2015-07-02 05:22:00','2015-07-02 05:22:00','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/logo@2.png',0,'attachment','image/png',0),(1579,1,'2015-07-02 05:38:58','2015-07-02 05:38:58','','logo-footer','','inherit','closed','closed','','logo-footer','','','2015-07-02 05:38:58','2015-07-02 05:38:58','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/logo-footer.png',0,'attachment','image/png',0),(1580,1,'2015-07-02 05:39:17','2015-07-02 05:39:17','','slide-1','','inherit','closed','closed','','slide-1','','','2015-07-02 05:39:17','2015-07-02 05:39:17','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/slide-1.jpg',0,'attachment','image/jpeg',0),(1584,1,'2015-07-02 06:04:46','2015-07-02 06:04:46','','About','','publish','closed','closed','','about-us','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1584',2,'nav_menu_item','',0),(1585,1,'2015-07-02 06:04:46','2015-07-02 06:04:46',' ','','','publish','closed','closed','','1585','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1585',1,'nav_menu_item','',0),(1589,1,'2015-07-02 06:25:13','2015-07-02 06:25:13','','slider_pattern1','','inherit','closed','closed','','slider_pattern1','','','2015-07-02 06:25:13','2015-07-02 06:25:13','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/slider_pattern1.png',0,'attachment','image/png',0),(1591,1,'2015-07-02 07:21:16','2015-07-02 07:21:16','','testimonial5','','inherit','closed','closed','','testimonial5','','','2015-07-02 07:21:16','2015-07-02 07:21:16','',156,'http://utilitywatch.uk/wp-content/uploads/2015/02/testimonial5.jpg',0,'attachment','image/jpeg',0),(1592,1,'2015-07-02 07:21:18','2015-07-02 07:21:18','','testimonial1','','inherit','closed','closed','','testimonial1','','','2015-07-02 07:21:18','2015-07-02 07:21:18','',156,'http://utilitywatch.uk/wp-content/uploads/2015/02/testimonial1.jpg',0,'attachment','image/jpeg',0),(1593,1,'2015-07-02 07:21:20','2015-07-02 07:21:20','','testimonial2','','inherit','closed','closed','','testimonial2','','','2015-07-02 07:21:20','2015-07-02 07:21:20','',156,'http://utilitywatch.uk/wp-content/uploads/2015/02/testimonial2.jpg',0,'attachment','image/jpeg',0),(1594,1,'2015-07-02 07:21:22','2015-07-02 07:21:22','','testimonial3','','inherit','closed','closed','','testimonial3','','','2015-07-02 07:21:22','2015-07-02 07:21:22','',156,'http://utilitywatch.uk/wp-content/uploads/2015/02/testimonial3.jpg',0,'attachment','image/jpeg',0),(1595,1,'2015-07-02 07:21:23','2015-07-02 07:21:23','','testimonial4','','inherit','closed','closed','','testimonial4','','','2015-07-02 07:21:23','2015-07-02 07:21:23','',156,'http://utilitywatch.uk/wp-content/uploads/2015/02/testimonial4.jpg',0,'attachment','image/jpeg',0),(1596,1,'2015-07-02 07:22:56','2015-07-02 07:22:56','','triangle','','inherit','closed','closed','','triangle','','','2015-07-02 07:22:56','2015-07-02 07:22:56','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/triangle.png',0,'attachment','image/png',0),(1597,1,'2015-07-02 07:33:47','2015-07-02 07:33:47','','partners-2','','inherit','closed','closed','','partners-2','','','2015-07-02 07:33:47','2015-07-02 07:33:47','',156,'http://utilitywatch.uk/wp-content/uploads/2015/02/partners-2.jpg',0,'attachment','image/jpeg',0),(1598,1,'2015-07-02 07:33:50','2015-07-02 07:33:50','','partners-1','','inherit','closed','closed','','partners-1','','','2015-07-02 07:33:50','2015-07-02 07:33:50','',156,'http://utilitywatch.uk/wp-content/uploads/2015/02/partners-1.jpg',0,'attachment','image/jpeg',0),(1602,1,'2015-07-02 09:12:23','2015-07-02 09:12:23','[vc_row full_width=\"true\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"25\" padding_bottom=\"30\" parallax=\"false\" video=\"false\"][vc_column width=\"1/1\"][nz_content_box columns=\"4\" version=\"v1\" animate=\"scale\"][nz_box link=\"#\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\" icon=\"icon-drawer3\" icon_border_color=\"#eef0f1\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\" icon=\"icon-search\" icon_border_color=\"#eef0f1\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\" icon=\"icon-meter2\" icon_border_color=\"#eef0f1\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\" icon=\"icon-text\" icon_border_color=\"#eef0f1\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"40\" padding_bottom=\"50\" parallax=\"false\" video=\"false\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2 style=\"text-align: center;\"><span style=\"color: #0086d5;\">Cheaper business electricity prices, Cheaper business gas prices, Business gas suppliers, Business electricity suppliers, Utility Watch</span></h2>\r\n[nz_gap height=\"25\" /]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">Utility Watch is a market leading Business Utility Broker in the UK. Specialising in the commercial Electricity and Gas markets we search for the best deal but charge you absolutely nothing. We work for you, not the suppliers. We take your utility business to several providers and use our buying knowledge to make sure you get the best price available.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"40\" padding_bottom=\"40\" parallax=\"false\" video=\"false\" background_color=\"#0086d5\"][vc_column width=\"1/1\" animate=\"false\" effect=\"fade\" margin_b=\"false\" text_align=\"left\" pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\" border_width=\"0\"][vc_custom_heading text=\"Utility Watch’s professional team of advisors are on-call\" font_container=\"tag:h2|font_size:24px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_custom_heading text=\"between <b>08.30am & 5.00pm</b> Monday to Fridays. Freephone <b>0800 668 1161</b>\" font_container=\"tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"70\" padding_bottom=\"30\" parallax=\"false\" video=\"false\"][vc_column width=\"1/6\" animate=\"true\" effect=\"fade-bottom\" margin_b=\"true\" text_align=\"left\" pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\" border_width=\"0\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">However, should you not know your Supply-Number, Utility Watch will, on completion of a Letter of Authority, find the detail from the current supplier.</span></p>\r\n<p style=\"text-align: center;\">[nz_gap height=\"25\" /]</p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">Utility Watch also offer a complimentary free Contact Checking service to establish dates whereby SMEs ares entitled to switch from their current supplier to another supplier at preferential rates.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"30\" padding_bottom=\"60\" parallax=\"false\" video=\"false\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f5f6f7\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"Center center\" background_attachment=\"fixed\" padding_top=\"0\" padding_bottom=\"50\" parallax=\"true\" video=\"false\"][vc_column width=\"1/1\" animate=\"true\" effect=\"fade-top\" margin_b=\"true\" text_align=\"left\" pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\" border_width=\"0\"][vc_single_image image=\"1596\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"75\"][nz_testimonials columns=\"3\" autoplay=\"false\" animate=\"none\"][nz_testimonial name=\"Alexandra Smart\" title=\"International Systems\" img=\"1593\"]Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros ” accumsan et iusto odio dignissi. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta[/nz_testimonial][nz_testimonial name=\"Michael Smart\" title=\"Developmnet\" img=\"1594\"]Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.[/nz_testimonial][nz_testimonial name=\"Anna Smart\" title=\"HR director\" img=\"1595\"]Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.[/nz_testimonial][nz_testimonial name=\"Michael Smart\" title=\"International Systems\" img=\"1592\"]Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi investigationes demonstraverunt.[/nz_testimonial][nz_testimonial name=\"John Smith\" title=\"Development\" img=\"1591\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi[/nz_testimonial][/nz_testimonials][/vc_column][/vc_row]','Home','','inherit','closed','closed','','156-revision-v1','','','2015-07-02 09:12:23','2015-07-02 09:12:23','',156,'http://utilitywatch.uk/2015/07/02/156-revision-v1/',0,'revision','',0),(1605,1,'2015-07-02 10:54:13','2015-07-02 10:54:13','','','','inherit','closed','closed','','line','','','2015-07-02 12:29:55','2015-07-02 12:29:55','',1418,'http://utilitywatch.uk/wp-content/uploads/2015/07/line.png',0,'attachment','image/png',0),(1606,1,'2015-07-02 12:10:08','2015-07-02 12:10:08','[vc_row full_width=\"true\" background_color=\"#f9f9f9\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"125\" padding_bottom=\"50\" parallax=\"false\" video=\"false\"][vc_column width=\"1/1\" animate=\"true\" effect=\"fade\" margin_b=\"true\" text_align=\"left\" pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\" border_width=\"0\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2516.573038176914!2d-1.2099756999999636!3d50.894612200000005!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4874692d7b3f670d%3A0x9bb249085cac38b6!2sTitchfield+Ln%2C+Wickham%2C+Fareham%2C+Hampshire%2C+UK!5e0!3m2!1sen!2sin!4v1435831038063\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f9f9f9\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"20\" padding_bottom=\"75\" parallax=\"false\" video=\"false\"][vc_column width=\"2/3\" animate=\"true\" effect=\"fade-left\" margin_b=\"true\" text_align=\"left\" pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\" border_width=\"0\"][vc_text_separator title=\"LEAVE A MESSAGE\" title_align=\"separator_align_left\" align=\"align_center\" color=\"grey\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][contact-form-7 id=\"1559\"][/vc_column][vc_column width=\"1/3\" animate=\"true\" effect=\"fade-right\" margin_b=\"true\" text_align=\"left\" pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\" border_width=\"0\"][vc_text_separator title=\"CONTACT DETAILS\" title_align=\"separator_align_left\" align=\"align_center\" color=\"grey\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]Start Saving Money on your Business Energy Today. Contact us via any of the below information.[/vc_column_text][nz_sep type=\"solid\" color=\"#e0e0e0\" top=\"20\" bottom=\"20\" width=\"\" height=\"\" align=\"left\"][nz_icon_list icon=\"icon-location2\" type=\"none\" icon_color=\"#0086d5\"]Quob Park, Titchfield Lane, Wickham, PO17 5PG[/nz_icon_list][nz_icon_list icon=\"icon-phone\" type=\"none\" icon_color=\"#0086d5\"]0800 668 1161[/nz_icon_list][nz_icon_list icon=\"icon-envelope\" type=\"none\" icon_color=\"#0086d5\"]info@utilitywatch.co.uk[/nz_icon_list][nz_icon_list icon=\"icon-earth\" type=\"none\" icon_color=\"#0086d5\"]www.utilitywatch.co.uk[/nz_icon_list][nz_sep type=\"solid\" color=\"#e0e0e0\" top=\"20\" bottom=\"20\" width=\"\" height=\"\" align=\"left\"][nz_sl target=\"_self\" align=\"left\" facebook=\"http://facebook.com/\" twitter=\"http://twitter.com/\" googleplus=\"http://plus.google.com/\" email=\"info@utilitywatch.co.uk\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1553-revision-v1','','','2015-07-02 12:10:08','2015-07-02 12:10:08','',1553,'http://utilitywatch.uk/2015/07/02/1553-revision-v1/',0,'revision','',0),(1607,1,'2016-09-30 09:31:12','2016-09-30 09:31:12','[vc_row full_width=\"true\" padding_bottom=\"50\"][vc_column width=\"1/1\"][vc_text_separator title=\"KEY SERVICES\" style=\"double\" el_class=\"extra-separator\"][nz_gap][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#eff3f6\" background_image=\"1423\" background_position=\"Center center\" padding_top=\"0\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"55\"][vc_column_text]\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply contracts for commercial operations, for energy and water management, including multi-site purchasing.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business’s throughout the United Kingdom, including a number of well known high street companies. This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and</span>\r\n<span style=\"font-size: 18px;\">respect.</span></p>\r\n[/vc_column_text][nz_gap height=\"35\"][nz_btn text=\"Get Quote\" link=\"http://utilitywatch.uk/contact-us/\" icon=\"icon-file\" animate=\"true\" color=\"sky\" size=\"medium\" shape=\"rounded\" type=\"3d\" el_class=\"extra-blue\"][nz_btn text=\"Latest News\" link=\"http://utilitywatch.uk/news/\" icon=\"icon-newspaper\" animate=\"true\" color=\"grey\" size=\"medium\" shape=\"rounded\" type=\"3d\" el_class=\"extra-grey\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"60\" padding_bottom=\"60\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Contact Us Now\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1418-autosave-v1','','','2016-09-30 09:31:12','2016-09-30 09:31:12','',1418,'http://utilitywatch.uk/2015/07/02/1418-autosave-v1/',0,'revision','',0),(1611,1,'2015-07-02 12:43:53','2015-07-02 12:43:53','[vc_row full_width=\"true\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"20\" padding_bottom=\"50\" parallax=\"false\" video=\"false\"][vc_column width=\"1/1\"][vc_text_separator title=\"KEY SERVICES\" title_align=\"separator_align_center\" align=\"align_center\" color=\"grey\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"25\"][nz_content_box columns=\"4\" version=\"v1\" animate=\"scale\"][nz_box link=\"#\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\" icon=\"icon-drawer3\" icon_border_color=\"#eef0f1\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\" icon=\"icon-search\" icon_border_color=\"#eef0f1\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\" icon=\"icon-meter2\" icon_border_color=\"#eef0f1\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\" icon=\"icon-text\" icon_border_color=\"#eef0f1\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#eff3f6\" background_image=\"1423\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"Center center\" background_attachment=\"scroll\" padding_top=\"0\" padding_bottom=\"75\" parallax=\"false\" video=\"false\"][vc_column width=\"1/6\" animate=\"true\" effect=\"fade-left\" margin_b=\"true\" text_align=\"left\" pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\" border_width=\"0\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"1596\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"60\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"line-height: 1.5em; color: #70878f; font-size: 36px;\">Utility Watch <span style=\"color: #0086d5;\">do not charge</span> you for the service and our service is without obligation, so you <span style=\"color: #0086d5;\">don\'t have to pay</span> us anything!</span></h2>\r\n[/vc_column_text][nz_gap height=\"15\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]<span style=\"font-size: 18px; line-height: 1.5em;\">The company was formed to alleviate the confusion of who gave who the best deal, businesses are generally far to busy keeping running and energy tends to take a back seat. We work closely with your business to ensure you never roll onto high out of contract rates and always have full visibility of current market pricing for your meters.</span>\r\n\r\n<span style=\"font-size: 18px; line-height: 1.5em;\">Answering a need for free and impartial information about business utility prices, Utility Watch has rapidly expanded to become the leader in price comparison and transferring services for businesses.</span>\r\n\r\n<span style=\"font-size: 18px; line-height: 1.5em;\">Our staff are trained to give you, the customer, the best advice on what the market is doing and when to place your contract.</span>[/vc_column_text][nz_gap height=\"35\"][nz_btn text=\"Get Quote\" link=\"http://utilitywatch.uk/contact-us/\" target=\"_self\" animate=\"true\" animation_type=\"ghost\" color=\"sky\" size=\"medium\" shape=\"rounded\" type=\"3d\" hover_normal=\"fill\" hover_ghost=\"fill\" el_class=\"extra-blue\" icon=\"icon-file\"][nz_btn text=\"Latest News\" link=\"http://utilitywatch.uk/news/\" target=\"_self\" animate=\"true\" animation_type=\"ghost\" color=\"grey\" size=\"medium\" shape=\"rounded\" type=\"3d\" hover_normal=\"fill\" hover_ghost=\"fill\" el_class=\"extra-grey\" icon=\"icon-newspaper\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"0\" padding_bottom=\"0\" parallax=\"false\" video=\"false\"][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch\" color=\"#ffffff\" background_color=\"#0086d5\" background_repeat=\"no-repeat\" background_position=\"left top\" padding_top=\"60\" padding_bottom=\"60\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Contact Us Now\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"60\" padding_bottom=\"40\" parallax=\"false\" video=\"false\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<p style=\"font-size: 18px; line-height: 1.5em;\">Our service, which is one of a very few which gives online pricing for your supply, the whole process is completely transparent as we understand there are many companies out there purporting to give an independent service who don\'t.</p>\r\n<p style=\"font-size: 18px; line-height: 1.5em;\">You don\'t have to change suppliers to get the best deal and here at Utility Watch we understand that, unless there are significant savings, changing supplier can make additional work for businesses and our aim is to get you the best price not a supplier who we prefer.</p>\r\n<p style=\"font-size: 18px; line-height: 1.5em;\">Our service is fast, efficient and simple! Our service is FREE with no obligation, as Utility Watch earns a fee from suppliers for introducing either new customers or maintaining existing contracts, this allows Utility Watch to remain impartial.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"70\" padding_bottom=\"50\" parallax=\"false\" video=\"false\"][vc_column width=\"1/1\" animate=\"true\" effect=\"fade-bottom\" margin_b=\"true\" text_align=\"left\" pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\" border_width=\"0\"][nz_testimonials columns=\"3\" autoplay=\"false\" animate=\"none\"][nz_testimonial name=\"Alexandra Smart\" title=\"International Systems\" img=\"1595\"]Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros ” accumsan et iusto odio dignissi. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta[/nz_testimonial][nz_testimonial name=\"Michael Smart\" title=\"Developmnet\" img=\"1594\"]Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.[/nz_testimonial][nz_testimonial name=\"Anna Smart\" title=\"HR director\" img=\"1593\"]Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.[/nz_testimonial][nz_testimonial name=\"Michael Smart\" title=\"International Systems\" img=\"1592\"]Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi investigationes demonstraverunt.[/nz_testimonial][nz_testimonial name=\"John Smith\" title=\"Development\" img=\"1591\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi[/nz_testimonial][/nz_testimonials][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1418-revision-v1','','','2015-07-02 12:43:53','2015-07-02 12:43:53','',1418,'http://utilitywatch.uk/2015/07/02/1418-revision-v1/',0,'revision','',0),(1612,1,'2015-07-02 12:59:29','2015-07-02 12:59:29','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">Why should you have an energy supply contract?</span></h2>\r\n<span style=\"font-size: 18px;\">Energy supply contracts are a key area where UK businesses can control their costs, generally speaking a business in contract will have the benefit of having fixed price per unit whereas a business not in contract is at the mercy of the market. Take into account the ever increasing cost of energy and is is plain to see this is not an enviable position to be in.</span>\r\n\r\n<span style=\"font-size: 18px;\">Most businesses are in contract and are unaware of their contract end dates. This puts businesses at risk of being rolled into contracts that are fixed by the supplier without negotiation. At Utility Watch we will check your terms and advise you of contract end dates and the best tariffs available. </span>\r\n\r\n<span style=\"font-size: 18px;\">Due to the volatility of energy markets, we recommend an online quote as the starting point for your electricity needs. Should you have a large usage (half hourly* or over 735,000kwh for gas) we need to collect data from your supplier, we can only do this with a completed Letter of Authority (LOA). <em>*half hourly meters start with 00</em></span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" background_repeat=\"no-repeat\" background_position=\"left top\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">How does it work?</span></h2>\r\n<span style=\"font-size: 18px;\">We are so confident of our service that, unlike many other brokers, we do not ask you to enter into an agreement with Utility Watch. If we don’t deliver you are free to use whoever you wish to source your energy requirements. Utility Watch search for your supply against supplier matrix pricing to identify the best price for your business, once this is complete we then negotiate directly with the top three suppliers to see if we can drive down the price further. The results from this are delivered to you to make your decision on which supplier you prefer.</span>\r\n\r\n<span style=\"font-size: 18px;\">Sounds simple and to us it is, we go through this process everyday, on behalf of our clients, most businesses carry out the same exercise with a selection of suppliers once a year, we do it with all of our suppliers so you can be confident the prices offered are the best from the greatest range.</span>\r\n\r\n<span style=\"font-size: 18px;\">To find out what savings your company can make on its electricity bills try on our online quote or complete the contact us form and we\'ll contact you.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"0\" padding_bottom=\"60\" parallax=\"false\" video=\"false\" background_color=\"#f5f6f7\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Business Electricity','','publish','closed','closed','','business-electricity','','','2015-07-03 05:02:32','2015-07-03 05:02:32','',0,'http://utilitywatch.uk/?page_id=1612',0,'page','',0),(1616,1,'2015-07-02 13:03:37','2015-07-02 13:03:37','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">Why should you have an energy supply contract?</span></h2>\r\n<p style=\"font-size: 18px;\">Energy supply contracts are a key area where UK businesses can control their costs, generally speaking a business in contract will have the benefit of having fixed price per unit whereas a business not in contract is at the whim of the market. Take into account the ever increasing cost of energy and is is plain to see this is not an enviable position to be in.</p>\r\n<p style=\"font-size: 18px;\">Most businesses are in contract and are unaware of their end dates. This enables energy suppliers to roll you into another contract on un-negotiated rates. At Utility Watch we will check your terms and advise you of contract end dates and the best tariffs available.</p>\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">How is Business Gas priced?</span></h2>\r\n<p style=\"font-size: 18px;\">Business gas is priced on a volume bracket and postcode. That is to say the larger the volume the lower the price ie. if you use 55000kwh of gas per annum you would expect to be charged (for example purposes only) 3pence a kwh, should you use 87000 kwh per year the kwh charge would be 2.8pence a kwh. The location of your business has an impact on pricing dependent on supplier, for a full breakdown of areas please refer to our operatives.</p>\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" background_repeat=\"no-repeat\" background_position=\"left top\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"0\" padding_bottom=\"40\" parallax=\"false\" video=\"false\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">How does it work?</span></h2>\r\n<p style=\"font-size: 18px;\">We are so confident of our service that, unlike many other brokers, we do not ask you to enter into an agreement with Utility Watch. If we don’t deliver you are free to use whoever you wish to source your energy requirements. Utility Watch search for your supply against supplier matrix pricing to identify the best price for your business, once this is complete we then negotiate directly with the top three suppliers to see if we can drive down the price further. The results from this are delivered to you to make your decision on which supplier you prefer.</p>\r\n<p style=\"font-size: 18px;\">Sounds simple and to us it is as we go through this process everyday, on behalf of our clients, most businesses carry out the same exercise with a selection of suppliers we do it with all of our suppliers so you can be confident the prices offered are the best from the greatest range.</p>\r\n<p style=\"font-size: 18px;\">To find out what savings your company can make on its gas bills please call our help line on 0800 668 1161 , or complete our contact us form and we\'ll contact you.</p>\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f5f6f7\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"0\" padding_bottom=\"60\" parallax=\"false\" video=\"false\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Business Gas','','publish','closed','closed','','business-gas','','','2015-07-03 05:15:05','2015-07-03 05:15:05','',0,'http://utilitywatch.uk/?page_id=1616',0,'page','',0),(1621,1,'2015-07-03 04:47:56','2015-07-03 04:47:56','','rich-header','','inherit','closed','closed','','rich-header','','','2015-07-03 04:47:56','2015-07-03 04:47:56','',1616,'http://utilitywatch.uk/wp-content/uploads/2015/07/rich-header.jpg',0,'attachment','image/jpeg',0),(1624,1,'2015-07-03 05:02:32','2015-07-03 05:02:32','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">Why should you have an energy supply contract?</span></h2>\r\n<span style=\"font-size: 18px;\">Energy supply contracts are a key area where UK businesses can control their costs, generally speaking a business in contract will have the benefit of having fixed price per unit whereas a business not in contract is at the mercy of the market. Take into account the ever increasing cost of energy and is is plain to see this is not an enviable position to be in.</span>\r\n\r\n<span style=\"font-size: 18px;\">Most businesses are in contract and are unaware of their contract end dates. This puts businesses at risk of being rolled into contracts that are fixed by the supplier without negotiation. At Utility Watch we will check your terms and advise you of contract end dates and the best tariffs available. </span>\r\n\r\n<span style=\"font-size: 18px;\">Due to the volatility of energy markets, we recommend an online quote as the starting point for your electricity needs. Should you have a large usage (half hourly* or over 735,000kwh for gas) we need to collect data from your supplier, we can only do this with a completed Letter of Authority (LOA). <em>*half hourly meters start with 00</em></span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" background_repeat=\"no-repeat\" background_position=\"left top\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">How does it work?</span></h2>\r\n<span style=\"font-size: 18px;\">We are so confident of our service that, unlike many other brokers, we do not ask you to enter into an agreement with Utility Watch. If we don’t deliver you are free to use whoever you wish to source your energy requirements. Utility Watch search for your supply against supplier matrix pricing to identify the best price for your business, once this is complete we then negotiate directly with the top three suppliers to see if we can drive down the price further. The results from this are delivered to you to make your decision on which supplier you prefer.</span>\r\n\r\n<span style=\"font-size: 18px;\">Sounds simple and to us it is, we go through this process everyday, on behalf of our clients, most businesses carry out the same exercise with a selection of suppliers once a year, we do it with all of our suppliers so you can be confident the prices offered are the best from the greatest range.</span>\r\n\r\n<span style=\"font-size: 18px;\">To find out what savings your company can make on its electricity bills try on our online quote or complete the contact us form and we\'ll contact you.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"0\" padding_bottom=\"60\" parallax=\"false\" video=\"false\" background_color=\"#f5f6f7\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Business Electricity','','inherit','closed','closed','','1612-revision-v1','','','2015-07-03 05:02:32','2015-07-03 05:02:32','',1612,'http://utilitywatch.uk/2015/07/03/1612-revision-v1/',0,'revision','',0),(1627,1,'2015-07-03 05:15:05','2015-07-03 05:15:05','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">Why should you have an energy supply contract?</span></h2>\r\n<p style=\"font-size: 18px;\">Energy supply contracts are a key area where UK businesses can control their costs, generally speaking a business in contract will have the benefit of having fixed price per unit whereas a business not in contract is at the whim of the market. Take into account the ever increasing cost of energy and is is plain to see this is not an enviable position to be in.</p>\r\n<p style=\"font-size: 18px;\">Most businesses are in contract and are unaware of their end dates. This enables energy suppliers to roll you into another contract on un-negotiated rates. At Utility Watch we will check your terms and advise you of contract end dates and the best tariffs available.</p>\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">How is Business Gas priced?</span></h2>\r\n<p style=\"font-size: 18px;\">Business gas is priced on a volume bracket and postcode. That is to say the larger the volume the lower the price ie. if you use 55000kwh of gas per annum you would expect to be charged (for example purposes only) 3pence a kwh, should you use 87000 kwh per year the kwh charge would be 2.8pence a kwh. The location of your business has an impact on pricing dependent on supplier, for a full breakdown of areas please refer to our operatives.</p>\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" background_repeat=\"no-repeat\" background_position=\"left top\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row full_width=\"false\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"0\" padding_bottom=\"40\" parallax=\"false\" video=\"false\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text pl=\"0\" pr=\"0\" pt=\"0\" pb=\"0\"]\r\n<h2><span style=\"color: #0086d5;\">How does it work?</span></h2>\r\n<p style=\"font-size: 18px;\">We are so confident of our service that, unlike many other brokers, we do not ask you to enter into an agreement with Utility Watch. If we don’t deliver you are free to use whoever you wish to source your energy requirements. Utility Watch search for your supply against supplier matrix pricing to identify the best price for your business, once this is complete we then negotiate directly with the top three suppliers to see if we can drive down the price further. The results from this are delivered to you to make your decision on which supplier you prefer.</p>\r\n<p style=\"font-size: 18px;\">Sounds simple and to us it is as we go through this process everyday, on behalf of our clients, most businesses carry out the same exercise with a selection of suppliers we do it with all of our suppliers so you can be confident the prices offered are the best from the greatest range.</p>\r\n<p style=\"font-size: 18px;\">To find out what savings your company can make on its gas bills please call our help line on 0800 668 1161 , or complete our contact us form and we\'ll contact you.</p>\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f5f6f7\" img_animate=\"false\" animation_dir=\"horizontal\" animation_speed=\"35000\" background_repeat=\"no-repeat\" background_position=\"left top\" background_attachment=\"scroll\" padding_top=\"0\" padding_bottom=\"60\" parallax=\"false\" video=\"false\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Business Gas','','inherit','closed','closed','','1616-revision-v1','','','2015-07-03 05:15:05','2015-07-03 05:15:05','',1616,'http://utilitywatch.uk/2015/07/03/1616-revision-v1/',0,'revision','',0),(1628,1,'2015-07-03 05:19:50','2015-07-03 05:19:50','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:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>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.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://utilitywatch.uk/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','News','','inherit','closed','closed','','2-revision-v1','','','2015-07-03 05:19:50','2015-07-03 05:19:50','',2,'http://utilitywatch.uk/2015/07/03/2-revision-v1/',0,'revision','',0),(1637,1,'2015-07-03 05:29:22','2015-07-03 05:29:22','','market-update','','inherit','closed','closed','','market-update','','','2015-07-03 05:29:22','2015-07-03 05:29:22','',1,'http://utilitywatch.uk/wp-content/uploads/2015/05/market-update.jpg',0,'attachment','image/jpeg',0),(1638,1,'2015-07-03 05:29:36','2015-07-03 05:29:36','<b>Gas</b>\r\n<b></b>\r\n\r\nStrong LNG output and imports heightened by an appreciating pound against the euro continued to support gas prices down throughout March. Supply remained reasonably high despite a number of outages at Norwegian gas fields increasing demand.\r\n\r\nWorryingly, a deal is yet to be reached between Russia & Ukraine which remains a concern, adding upwards pressure to the gas market. More potential upside is coming from fears over Centrica’s Rough gas storage facility with a potential 30% capacity cut due to technical issues. However, the strong supply and lower oil prices due to the continued over supply has muted this impact.\r\n\r\n<b>Power</b>\r\n<b></b>\r\n\r\nThe gas market continued to be the main driver behind the power market movement. The news that Rough gas storage might face capacity restrictions fed through to the power market and raised prices, however weak coal and oil prices reduced the impact.\r\n\r\nAt the beginning of the month milder temperatures and consistent wind speeds pushed up power production from renewables, pushed prices down. Mid-month saw cooler than forecasted temperatures increasing heating demand and the need for gas in power generation.\r\n\r\n \r\n\r\n<b>What to watch out for throughout April</b>\r\n<b></b>\r\n\r\nIn May we should hear more on the financial situation in Greece. They are currently locked in talks with creditors as they are running the risk of running out of cash and are seeking fresh financial aid.\r\n\r\nAn update on the Rough Gas Storage capacity problems is expected shortly.\r\nTalks between Russia & Ukraine continue with the EU next month on the pricing of Russian Gas deliveries.','Energy Market Update','','inherit','closed','closed','','1-revision-v1','','','2015-07-03 05:29:36','2015-07-03 05:29:36','',1,'http://utilitywatch.uk/2015/07/03/1-revision-v1/',0,'revision','',0),(1639,1,'2015-07-03 05:32:37','2015-07-03 05:32:37','Almost nine in 10 (87%) businesses are concerned by the UK’s energy security, according to a new survey. Published on 3 November, the CBI’s Taking the Long View report said that the figure was even higher among manufacturers (92%), and that despite increased investment in the grid over recent years there was “a very real perception that we are experiencing an energy crisis”.\r\n\r\nThe vast majority of businesses (94%) were also concerned about the future cost of energy supply. The CBI called on the government to implement all elements of its Electricity Market Reform package and to ensure that energy efficiency was treated as an infrastructure priority. Get Solutions have consistently helped UK business reduced long term demand giving clients stability in a volatile market.','Concern over energy security in the UK','','publish','closed','closed','','concern-over-energy-security-in-the-uk','','','2015-07-03 05:35:04','2015-07-03 05:35:04','',0,'http://utilitywatch.uk/?p=1639',0,'post','',0),(1642,1,'2015-07-03 05:35:04','2015-07-03 05:35:04','Almost nine in 10 (87%) businesses are concerned by the UK’s energy security, according to a new survey. Published on 3 November, the CBI’s Taking the Long View report said that the figure was even higher among manufacturers (92%), and that despite increased investment in the grid over recent years there was “a very real perception that we are experiencing an energy crisis”.\r\n\r\nThe vast majority of businesses (94%) were also concerned about the future cost of energy supply. The CBI called on the government to implement all elements of its Electricity Market Reform package and to ensure that energy efficiency was treated as an infrastructure priority. Get Solutions have consistently helped UK business reduced long term demand giving clients stability in a volatile market.','Concern over energy security in the UK','','inherit','closed','closed','','1639-revision-v1','','','2015-07-03 05:35:04','2015-07-03 05:35:04','',1639,'http://utilitywatch.uk/2015/07/03/1639-revision-v1/',0,'revision','',0),(1643,1,'2015-07-03 07:31:34','2015-07-03 07:31:34','','logo-mobile@2','','inherit','closed','closed','','logo-mobile2','','','2015-07-03 07:31:34','2015-07-03 07:31:34','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/logo-mobile@2.png',0,'attachment','image/png',0),(1644,1,'2015-07-03 07:31:36','2015-07-03 07:31:36','','logo-mobile','','inherit','closed','closed','','logo-mobile','','','2015-07-03 07:31:36','2015-07-03 07:31:36','',0,'http://utilitywatch.uk/wp-content/uploads/2015/07/logo-mobile.png',0,'attachment','image/png',0),(1646,1,'2016-09-30 06:09:14','2016-09-30 06:09:14','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">We undertake this on behalf of our client’s.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100 % of our Clients have Saved on energy costs with Utility Watch. Call us on 0800 043 8148 or Get Quote*\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"The Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216765636{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assessing your current contract terms, tariffs and conditions</span></li>\r\n <li><span style=\"font-size: 18px;\">Research the market place to find your most suitable supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Obtain optimum contracts for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Monitor contract</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216824271{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Terminate existing contracts on behalf of the client</span></li>\r\n <li><span style=\"font-size: 18px;\">Dedicated Team tracking the markets daily</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim any historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Advise ethical purchasing fuel mix i.e. wind power, energy from </span></li>\r\n <li><span style=\"font-size: 18px;\">waste and nuclear sources</span></li>\r\n <li><span style=\"font-size: 18px;\">Arrange payment terms and the length of payments</span></li>\r\n <li><span style=\"font-size: 18px;\">Smart meters and non-half hourly meters</span></li>\r\n <li><span style=\"font-size: 18px;\">Bring group contracts in line to one common</span></li>\r\n <li><span style=\"font-size: 18px;\">contract end date</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefit from our long-standing</span></li>\r\n <li><span style=\"font-size: 18px;\">relationships with suppliers</span></li>\r\n</ul>\r\n[/vc_column_text][vc_column_text]\r\n\r\n \r\n\r\n* Please Note these customers saved on Energy costs when compared to offers from their existing supplier renewal offer[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','publish','closed','closed','','energy-procurement','','','2017-05-18 14:00:58','2017-05-18 14:00:58','',0,'http://utilitywatch.uk/?page_id=1646',0,'page','',0),(1647,1,'2016-09-30 06:04:40','2016-09-30 06:04:40','','rich-header','','inherit','closed','closed','','rich-header-2','','','2016-09-30 06:04:40','2016-09-30 06:04:40','',1646,'http://utilitywatch.uk/wp-content/uploads/2016/09/rich-header.jpg',0,'attachment','image/jpeg',0),(1648,1,'2016-09-30 06:09:14','2016-09-30 06:09:14','','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2016-09-30 06:09:14','2016-09-30 06:09:14','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0),(1649,1,'2017-05-18 14:00:09','2017-05-18 14:00:09','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">We undertake this on behalf of our client’s.</span></p>\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100 % of our Clients have Saved on energy costs with Utility Watch. Call us on 0800 043 8148 or Get Quote*\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"The Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216765636{margin-bottom: 20px !important;}\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 18px;\">Assessing your current contract terms, tariffs and conditions</span></li>\n <li><span style=\"font-size: 18px;\">Research the market place to find your most suitable supplier</span></li>\n <li><span style=\"font-size: 18px;\">Obtain optimum contracts for your business</span></li>\n <li><span style=\"font-size: 18px;\">Monitor contract</span></li>\n</ul>\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216824271{margin-bottom: 20px !important;}\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 18px;\">Maximise all potential savings</span></li>\n <li><span style=\"font-size: 18px;\">Terminate existing contracts on behalf of the client</span></li>\n <li><span style=\"font-size: 18px;\">Dedicated Team tracking the markets daily</span></li>\n <li><span style=\"font-size: 18px;\">Reclaim any historical billing losses</span></li>\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure for your business</span></li>\n <li><span style=\"font-size: 18px;\">Claim multi-site and large user discounts</span></li>\n <li><span style=\"font-size: 18px;\">Advise ethical purchasing fuel mix i.e. wind power, energy from </span></li>\n <li><span style=\"font-size: 18px;\">waste and nuclear sources</span></li>\n <li><span style=\"font-size: 18px;\">Arrange payment terms and the length of payments</span></li>\n <li><span style=\"font-size: 18px;\">Smart meters and non-half hourly meters</span></li>\n <li><span style=\"font-size: 18px;\">Bring group contracts in line to one common</span></li>\n <li><span style=\"font-size: 18px;\">contract end date</span></li>\n <li><span style=\"font-size: 18px;\">Benefit from our long-standing</span></li>\n <li><span style=\"font-size: 18px;\">relationships with suppliers</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-autosave-v1','','','2017-05-18 14:00:09','2017-05-18 14:00:09','',1646,'http://utilitywatch.uk/1646-autosave-v1/',0,'revision','',0),(1650,1,'2016-09-30 06:18:04','2016-09-30 06:18:04','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<h2><span style=\"color: #0086d5;\">Why should you have an energy supply contract?</span></h2>\n<span style=\"font-size: 18px;\">Energy supply contracts are a key area where UK businesses can control their costs, generally speaking a business in contract will have the benefit of having fixed price per unit whereas a business not in contract is at the mercy of the market. Take into account the ever increasing cost of energy and is is plain to see this is not an enviable position to be in.</span>\n\n<span style=\"font-size: 18px;\">Most businesses are in contract and are unaware of their contract end dates. This puts businesses at risk of being rolled into contracts that are fixed by the supplier without negotiation. At Utility Watch we will check your terms and advise you of contract end dates and the best tariffs available. </span>\n\n<span style=\"font-size: 18px;\">Due to the volatility of energy markets, we recommend an online quote as the starting point for your electricity needs. Should you have a large usage (half hourly* or over 735,000kwh for gas) we need to collect data from your supplier, we can only do this with a completed Letter of Authority (LOA).\n\n<em>*half hourly meters start with 00</em></span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\n<h2><span style=\"color: #0086d5;\">How does it work?</span></h2>\n<span style=\"font-size: 18px;\">We are so confident of our service that, unlike many other brokers, we do not ask you to enter into an agreement with Utility Watch. If we don’t deliver you are free to use whoever you wish to source your energy requirements. Utility Watch search for your supply against supplier matrix pricing to identify the best price for your business, once this is complete we then negotiate directly with the top three suppliers to see if we can drive down the price further. The results from this are delivered to you to make your decision on which supplier you prefer.</span>\n\n<span style=\"font-size: 18px;\">Sounds simple and to us it is, we go through this process everyday, on behalf of our clients, most businesses carry out the same exercise with a selection of suppliers once a year, we do it with all of our suppliers so you can be confident the prices offered are the best from the greatest range.</span>\n\n<span style=\"font-size: 18px;\">To find out what savings your company can make on its electricity bills try on our online quote or complete the contact us form and we\'ll contact you.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Business Electricity','','inherit','closed','closed','','1612-autosave-v1','','','2016-09-30 06:18:04','2016-09-30 06:18:04','',1612,'http://utilitywatch.uk/1612-autosave-v1/',0,'revision','',0),(1651,1,'2016-09-30 06:20:15','2016-09-30 06:20:15','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<span style=\"font-size: 18px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span>[/vc_column_text][vc_column_text]<span style=\"font-size: 18px;\">we undertake this on behalf of our client’s.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<span style=\"font-size: 18px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span>\r\n\r\n<span style=\"font-size: 18px; margin-top: 20px;\">we undertake this on behalf of our client’s.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2016-09-30 06:20:15','2016-09-30 06:20:15','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0),(1652,1,'2016-09-30 06:21:37','2016-09-30 06:21:37','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<span style=\"font-size: 18px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span>[/vc_column_text][vc_column_text]<span style=\"font-size: 18px; margin-top: 25px;\">we undertake this on behalf of our client’s.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<span style=\"font-size: 18px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span>\r\n\r\n<span style=\"font-size: 18px; margin-top: 20px;\">we undertake this on behalf of our client’s.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2016-09-30 06:21:37','2016-09-30 06:21:37','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0),(1653,1,'2016-09-30 06:26:16','2016-09-30 06:26:16','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<span style=\"font-size: 18px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span>[/vc_column_text][vc_column_text]<span style=\"font-size: 18px; margin-top: 25px;\">we undertake this on behalf of our client’s.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"The Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216765636{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assessing your current contract terms, tariffs and conditions</span></li>\r\n <li><span style=\"font-size: 18px;\">Research the market place to find your most suitable supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Obtain optimum contracts for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Monitor contract</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2016-09-30 06:26:16','2016-09-30 06:26:16','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0),(1654,1,'2016-09-30 06:30:26','2016-09-30 06:30:26','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<span style=\"font-size: 18px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span>[/vc_column_text][vc_column_text]<span style=\"font-size: 18px; margin-top: 25px;\">we undertake this on behalf of our client’s.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"The Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216765636{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assessing your current contract terms, tariffs and conditions</span></li>\r\n <li><span style=\"font-size: 18px;\">Research the market place to find your most suitable supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Obtain optimum contracts for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Monitor contract</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216824271{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Terminate existing contracts on behalf of the client</span></li>\r\n <li><span style=\"font-size: 18px;\">Dedicated Team tracking the markets daily</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim any historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Advise ethical purchasing fuel mix i.e. wind power, energy from </span></li>\r\n <li><span style=\"font-size: 18px;\">waste and nuclear sources</span></li>\r\n <li><span style=\"font-size: 18px;\">Arrange payment terms and the length of payments</span></li>\r\n <li><span style=\"font-size: 18px;\">Smart meters and non-half hourly meters</span></li>\r\n <li><span style=\"font-size: 18px;\">Bring group contracts in line to one common</span></li>\r\n <li><span style=\"font-size: 18px;\">contract end date</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefit from our long-standing</span></li>\r\n <li><span style=\"font-size: 18px;\">relationships with suppliers</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2016-09-30 06:30:26','2016-09-30 06:30:26','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0),(1655,1,'2016-09-30 06:44:41','2016-09-30 06:44:41','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Our utility audit service is aimed at identifying and implementing savings on your electricity and gas usage. After identifying the full range of savings available to your business, an energy consultant will produce a cost saving report for your organisation.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217762407{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess business costs and consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on opportunities for savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Create a cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217770465{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Identify consumption patterns and problems</span></li>\r\n <li><span style=\"font-size: 18px;\">Consumption forecast and analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Cost to profit analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Eradicate estimated bills/inaccurate bills</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter installations/removals</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter energising /de-energising</span></li>\r\n <li><span style=\"font-size: 18px;\">Web access real time consumption reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter type tariff assessment</span></li>\r\n <li><span style=\"font-size: 18px;\">Invoice validation</span></li>\r\n <li><span style=\"font-size: 18px;\">Secure future contracts (see above)</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n <li><span style=\"font-size: 18px;\">VAT and CCL applications</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Utility Audit','','publish','closed','closed','','utility-audit','','','2016-10-12 12:26:03','2016-10-12 12:26:03','',0,'http://utilitywatch.uk/?page_id=1655',0,'page','',0),(1656,1,'2016-09-30 06:34:30','2016-09-30 06:34:30','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]<h2><span style=\"color: #0086d5;\">Why should you have an energy supply contract?</span></h2>\r\n<span style=\"font-size: 18px;\">Energy supply contracts are a key area where UK businesses can control their costs, generally speaking a business in contract will have the benefit of having fixed price per unit whereas a business not in contract is at the mercy of the market. Take into account the ever increasing cost of energy and is is plain to see this is not an enviable position to be in.</span>\r\n\r\n<span style=\"font-size: 18px;\">Most businesses are in contract and are unaware of their contract end dates. This puts businesses at risk of being rolled into contracts that are fixed by the supplier without negotiation. At Utility Watch we will check your terms and advise you of contract end dates and the best tariffs available. </span>\r\n\r\n<span style=\"font-size: 18px;\">Due to the volatility of energy markets, we recommend an online quote as the starting point for your electricity needs. Should you have a large usage (half hourly* or over 735,000kwh for gas) we need to collect data from your supplier, we can only do this with a completed Letter of Authority (LOA).\r\n\r\n<em>*half hourly meters start with 00</em></span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<h2><span style=\"color: #0086d5;\">How does it work?</span></h2>\r\n<span style=\"font-size: 18px;\">We are so confident of our service that, unlike many other brokers, we do not ask you to enter into an agreement with Utility Watch. If we don’t deliver you are free to use whoever you wish to source your energy requirements. Utility Watch search for your supply against supplier matrix pricing to identify the best price for your business, once this is complete we then negotiate directly with the top three suppliers to see if we can drive down the price further. The results from this are delivered to you to make your decision on which supplier you prefer.</span>\r\n\r\n<span style=\"font-size: 18px;\">Sounds simple and to us it is, we go through this process everyday, on behalf of our clients, most businesses carry out the same exercise with a selection of suppliers once a year, we do it with all of our suppliers so you can be confident the prices offered are the best from the greatest range.</span>\r\n\r\n<span style=\"font-size: 18px;\">To find out what savings your company can make on its electricity bills try on our online quote or complete the contact us form and we\'ll contact you.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','','','inherit','closed','closed','','1655-revision-v1','','','2016-09-30 06:34:30','2016-09-30 06:34:30','',1655,'http://utilitywatch.uk/1655-revision-v1/',0,'revision','',0),(1657,1,'2016-09-30 06:42:50','2016-09-30 06:42:50','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n\r\n<span style=\"font-size: 18px;\">Our utility audit service is aimed at identifying and implementing savings on your electricity and gas usage. After identifying the full range of savings available to your business, an energy consultant will produce a cost saving report for your organisation.</span>\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217762407{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess business costs and consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Identifying and reporting on opportunities for savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Create a cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217770465{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess business costs and consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Identifying and reporting on opportunities for savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Create a cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Utility Audit','','inherit','closed','closed','','1655-revision-v1','','','2016-09-30 06:42:50','2016-09-30 06:42:50','',1655,'http://utilitywatch.uk/1655-revision-v1/',0,'revision','',0),(1658,1,'2016-09-30 06:44:35','2016-09-30 06:44:35','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n\r\n<span style=\"font-size: 18px;\">Our utility audit service is aimed at identifying and implementing savings on your electricity and gas usage. After identifying the full range of savings available to your business, an energy consultant will produce a cost saving report for your organisation.</span>\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217762407{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess business costs and consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Identifying and reporting on opportunities for savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Create a cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217770465{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Identify consumption patterns and problems</span></li>\r\n <li><span style=\"font-size: 18px;\">Consumption forecast and analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Cost to profit analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Eradicate estimated bills/inaccurate bills</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter installations/removals</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter energising /de-energising</span></li>\r\n <li><span style=\"font-size: 18px;\">Web access real time consumption reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter type tariff assessment</span></li>\r\n <li><span style=\"font-size: 18px;\">Invoice validation</span></li>\r\n <li><span style=\"font-size: 18px;\">Secure future contracts (see above)</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n <li><span style=\"font-size: 18px;\">VAT and CCL applications</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Utility Audit','','inherit','closed','closed','','1655-revision-v1','','','2016-09-30 06:44:35','2016-09-30 06:44:35','',1655,'http://utilitywatch.uk/1655-revision-v1/',0,'revision','',0),(1659,1,'2016-09-30 06:52:48','2016-09-30 06:52:48','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Water deregulation will occur in 2017 and will allow businesses to switch water providers to a cheaper alternative. It is anticipated that business will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1476274823933{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','publish','closed','closed','','water-waste-water','','','2016-10-12 12:25:52','2016-10-12 12:25:52','',0,'http://utilitywatch.uk/?page_id=1659',0,'page','',0),(1660,1,'2016-09-30 06:52:16','2016-09-30 06:52:16','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]Water deregulation is expected in 2014 and will allow business to switch water providers to a cheaper alternative. It is anticipated that business’s will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li>Desktop Audit of water consumption</li>\r\n <li>Desktop Audit of waste consumption</li>\r\n <li>Return to sewer tariff analysis</li>\r\n <li>Historical billing analysis</li>\r\n <li>Benefits</li>\r\n <li>Saving by switiching supplier</li>\r\n <li>Maximise all potential saving</li>\r\n <li>Reclaim historical billing losses</li>\r\n <li>Assessment of correct pricing structure</li>\r\n <li>Claim Multi-site and large user discounts</li>\r\n <li>Contractual dispute resolution</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','','','inherit','closed','closed','','1659-revision-v1','','','2016-09-30 06:52:16','2016-09-30 06:52:16','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1661,1,'2016-09-30 06:52:48','2016-09-30 06:52:48','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]<span style=\"font-size: 18px;\">Water deregulation is expected in 2014 and will allow business to switch water providers to a cheaper alternative. It is anticipated that business’s will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','','','inherit','closed','closed','','1659-revision-v1','','','2016-09-30 06:52:48','2016-09-30 06:52:48','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1662,1,'2016-10-06 05:38:48','2016-10-06 05:38:48','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475225132425{margin-bottom: 20px !important;}\"][vc_column_text]\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Water deregulation will occur in 2017 and will allow businesses to switch water providers to a cheaper alternative. It is anticipated that business will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475221802990{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-autosave-v1','','','2016-10-06 05:38:48','2016-10-06 05:38:48','',1659,'http://utilitywatch.uk/1659-autosave-v1/',0,'revision','',0),(1663,1,'2016-09-30 06:55:19','2016-09-30 06:55:19','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]<span style=\"font-size: 18px;\">Water deregulation is expected in 2014 and will allow business to switch water providers to a cheaper alternative. It is anticipated that business’s will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-09-30 06:55:19','2016-09-30 06:55:19','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1664,1,'2016-09-30 07:05:21','2016-09-30 07:05:21','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Carbon reduction commitment (CRC) is a compulsory emission trading scheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits / Options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475732836538{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','publish','closed','closed','','carbon-reduction','','','2016-10-12 12:25:41','2016-10-12 12:25:41','',0,'http://utilitywatch.uk/?page_id=1664',0,'page','',0),(1665,1,'2016-09-30 07:05:21','2016-09-30 07:05:21','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]<span style=\"font-size: 18px;\">Carbon reduction commitment (CRC) is a compulsory emission tradingscheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by Business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span>\r\n\r\n<span style=\"font-size: 18px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span>\r\n\r\n<span style=\"font-size: 18px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits / options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219002174{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting</span>\r\n<span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-revision-v1','','','2016-09-30 07:05:21','2016-09-30 07:05:21','',1664,'http://utilitywatch.uk/1664-revision-v1/',0,'revision','',0),(1667,1,'2016-09-30 07:06:23','2016-09-30 07:06:23','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]<span style=\"font-size: 18px;\">Carbon reduction commitment (CRC) is a compulsory emission tradingscheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by Business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span>\r\n\r\n<span style=\"font-size: 18px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span>\r\n\r\n<span style=\"font-size: 18px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits / options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219002174{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-revision-v1','','','2016-09-30 07:06:23','2016-09-30 07:06:23','',1664,'http://utilitywatch.uk/1664-revision-v1/',0,'revision','',0),(1668,1,'2016-09-30 07:12:06','2016-09-30 07:12:06','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">We have a dedicated team committed to providing quick solutions and expert advice to meet your statutory requirements.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">This survey involves a comprehensive inspection of the property and a detailed in-depth report.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Our team will provide a commercial energy performance certificate (EPC) for buildings with assessments that include: lighting, heating and ventilation.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Introduced in 2013 the new format EPC highlights any improvements that can be made, together with indicative cost and the likely potential savings.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">These improvements can now be funded under the Govermant\'s green deal scheme.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','publish','closed','closed','','other-services','','','2016-10-12 12:23:48','2016-10-12 12:23:49','',0,'http://utilitywatch.uk/?page_id=1668',0,'page','',0),(1669,1,'2016-09-30 07:11:12','2016-09-30 07:11:12','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]<span style=\"font-size: 18px;\">Carbon reduction commitment (CRC) is a compulsory emission tradingscheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by Business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span>\r\n\r\n<span style=\"font-size: 18px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span>\r\n\r\n<span style=\"font-size: 18px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits / options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219002174{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','','','inherit','closed','closed','','1668-revision-v1','','','2016-09-30 07:11:12','2016-09-30 07:11:12','',1668,'http://utilitywatch.uk/1668-revision-v1/',0,'revision','',0),(1670,1,'2016-09-30 07:12:32','2016-09-30 07:12:32','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]<span style=\"font-size: 18px;\">Carbon reduction commitment (CRC) is a compulsory emission tradingscheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by Business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span>\r\n\r\n<span style=\"font-size: 18px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span>\r\n\r\n<span style=\"font-size: 18px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits / options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219002174{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','inherit','closed','closed','','1668-revision-v1','','','2016-09-30 07:12:32','2016-09-30 07:12:32','',1668,'http://utilitywatch.uk/1668-revision-v1/',0,'revision','',0),(1671,1,'2016-09-30 09:32:31','2016-09-30 09:32:31','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475227893423{margin-bottom: 20px !important;}\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 20px; line-height: 36px;\">We have a dedicated team committed to providing quick solutions and expert advice to meet your statutory requirements.</span></li>\n <li><span style=\"font-size: 20px; line-height: 36px;\">This survey involves a comprehensive inspection of the property and a detailed in-depth report.</span></li>\n <li><span style=\"font-size: 20px; line-height: 36px;\">Our team will provide a commercial energy performance certificate (EPC) for buildings with assessments that include: lighting, heating and ventilation.</span></li>\n <li><span style=\"font-size: 20px; line-height: 36px;\">Introduced in 2013 the new format EPC highlights any improvements that can be made, together with indicative cost and the likely potential savings.</span></li>\n <li><span style=\"font-size: 20px; line-height: 36px;\">These improvements can now be funded under the govermants green deal scheme.</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','inherit','closed','closed','','1668-autosave-v1','','','2016-09-30 09:32:31','2016-09-30 09:32:31','',1668,'http://utilitywatch.uk/1668-autosave-v1/',0,'revision','',0),(1672,1,'2016-09-30 07:16:01','2016-09-30 07:16:01','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219625350{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">We have a dedicated team committed to providing quick solutions and expert advice to meet your statutory requirements.</span></li>\r\n <li><span style=\"font-size: 18px;\">This survey involves a comprehensive inspection of the property and a detailed in-depth report.</span></li>\r\n <li><span style=\"font-size: 18px;\">Our team will provide a commercial energy performance certificate (EPC) for buildings with assessments that include: lighting, heating and ventilation.</span></li>\r\n <li><span style=\"font-size: 18px;\">Introduced in 2013 the new format EPC highlights any improvements that can be made, together with indicative cost and the likely potential savings.</span></li>\r\n <li><span style=\"font-size: 18px;\">These improvements can now be funded under the govermants green deal scheme.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','inherit','closed','closed','','1668-revision-v1','','','2016-09-30 07:16:01','2016-09-30 07:16:01','',1668,'http://utilitywatch.uk/1668-revision-v1/',0,'revision','',0),(1673,1,'2016-09-30 07:22:47','2016-09-30 07:22:47',' ','','','publish','closed','closed','','1673','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1673',7,'nav_menu_item','',0),(1674,1,'2016-09-30 07:22:47','2016-09-30 07:22:47',' ','','','publish','closed','closed','','1674','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1674',6,'nav_menu_item','',0),(1677,1,'2016-09-30 07:22:47','2016-09-30 07:22:47',' ','','','publish','closed','closed','','services','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1677',8,'nav_menu_item','',0),(1678,1,'2016-09-30 07:28:43','2016-09-30 07:28:43',' ','','','publish','closed','closed','','1678','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1678',5,'nav_menu_item','',0),(1679,1,'2016-09-30 07:28:43','2016-09-30 07:28:43',' ','','','publish','closed','closed','','1679','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1679',4,'nav_menu_item','',0),(1681,1,'2016-09-30 07:52:05','2016-09-30 07:52:05','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]<span style=\"font-size: 18px;\">Water deregulation is expected in 2014 and will allow business to switch water providers to a cheaper alternative. It is anticipated that business’s will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span>[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475221802990{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-09-30 07:52:05','2016-09-30 07:52:05','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1682,1,'2016-09-30 08:29:12','2016-09-30 08:29:12','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475224112288{margin-bottom: 20px !important;}\"][vc_column_text]\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">Carbon reduction commitment (CRC) is a compulsory emission tradingscheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by Business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span></p>\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span></p>\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits / options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219002174{margin-bottom: 20px !important;}\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-autosave-v1','','','2016-09-30 08:29:12','2016-09-30 08:29:12','',1664,'http://utilitywatch.uk/1664-autosave-v1/',0,'revision','',0),(1683,1,'2016-09-30 07:57:39','2016-09-30 07:57:39','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218201030{margin-bottom: 20px !important;}\"][vc_column_text]<span style=\"font-size: 18px;\">Carbon reduction commitment (CRC) is a compulsory emission tradingscheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by Business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span>\r\n\r\n<span style=\"font-size: 18px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span>\r\n\r\n<span style=\"font-size: 18px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span>[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits / options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219002174{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-revision-v1','','','2016-09-30 07:57:39','2016-09-30 07:57:39','',1664,'http://utilitywatch.uk/1664-revision-v1/',0,'revision','',0),(1684,1,'2016-09-30 07:58:45','2016-09-30 07:58:45','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219625350{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">We have a dedicated team committed to providing quick solutions and expert advice to meet your statutory requirements.</span></li>\r\n <li><span style=\"font-size: 18px;\">This survey involves a comprehensive inspection of the property and a detailed in-depth report.</span></li>\r\n <li><span style=\"font-size: 18px;\">Our team will provide a commercial energy performance certificate (EPC) for buildings with assessments that include: lighting, heating and ventilation.</span></li>\r\n <li><span style=\"font-size: 18px;\">Introduced in 2013 the new format EPC highlights any improvements that can be made, together with indicative cost and the likely potential savings.</span></li>\r\n <li><span style=\"font-size: 18px;\">These improvements can now be funded under the govermants green deal scheme.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','inherit','closed','closed','','1668-revision-v1','','','2016-09-30 07:58:45','2016-09-30 07:58:45','',1668,'http://utilitywatch.uk/1668-revision-v1/',0,'revision','',0),(1685,1,'2016-09-30 08:07:10','2016-09-30 08:07:10',' ','','','publish','closed','closed','','1685','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1685',9,'nav_menu_item','',0),(1686,1,'2016-09-30 08:20:09','2016-09-30 08:20:09','','reducing-carbon','','inherit','closed','closed','','reducing-carbon','','','2016-09-30 08:20:09','2016-09-30 08:20:09','',1664,'http://utilitywatch.uk/wp-content/uploads/2016/09/reducing-carbon.jpg',0,'attachment','image/jpeg',0),(1687,1,'2016-09-30 08:37:21','2016-09-30 08:37:21','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475224112288{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">Carbon reduction commitment (CRC) is a compulsory emission tradingscheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by Business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits / options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219002174{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-revision-v1','','','2016-09-30 08:37:21','2016-09-30 08:37:21','',1664,'http://utilitywatch.uk/1664-revision-v1/',0,'revision','',0),(1688,1,'2016-09-30 08:45:47','2016-09-30 08:45:47','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475225132425{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px;\">Water deregulation is expected in 2014 and will allow business to switch water providers to a cheaper alternative. It is anticipated that business’s will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475221802990{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-09-30 08:45:47','2016-09-30 08:45:47','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1689,1,'2016-09-30 09:08:29','2016-09-30 09:08:29','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475225132425{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 26px;\">Water deregulation is expected in 2014 and will allow business to switch water providers to a cheaper alternative. It is anticipated that business’s will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475221802990{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-09-30 09:08:29','2016-09-30 09:08:29','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1690,1,'2016-09-30 09:19:55','2016-09-30 09:19:55','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475225132425{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Water deregulation is expected in 2014 and will allow business to switch water providers to a cheaper alternative. It is anticipated that business’s will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475221802990{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-09-30 09:19:55','2016-09-30 09:19:55','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1691,1,'2016-09-30 09:20:24','2016-09-30 09:20:24','','Services','','publish','closed','closed','','services-2','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1691',3,'nav_menu_item','',0),(1692,1,'2016-09-30 09:20:18','2016-09-30 09:20:18','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475224112288{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Carbon reduction commitment (CRC) is a compulsory emission tradingscheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by Business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits / options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475219002174{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-revision-v1','','','2016-09-30 09:20:18','2016-09-30 09:20:18','',1664,'http://utilitywatch.uk/1664-revision-v1/',0,'revision','',0),(1693,1,'2016-09-30 09:21:20','2016-09-30 09:21:20',' ','','','publish','closed','closed','','1693','','','2016-09-30 11:18:46','2016-09-30 11:18:46','',0,'http://utilitywatch.uk/?p=1693',10,'nav_menu_item','',0),(1694,1,'2016-09-30 09:24:29','2016-09-30 09:24:29','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Our utility audit service is aimed at identifying and implementing savings on your electricity and gas usage. After identifying the full range of savings available to your business, an energy consultant will produce a cost saving report for your organisation.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217762407{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess business costs and consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Identifying and reporting on opportunities for savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Create a cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217770465{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Identify consumption patterns and problems</span></li>\r\n <li><span style=\"font-size: 18px;\">Consumption forecast and analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Cost to profit analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Eradicate estimated bills/inaccurate bills</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter installations/removals</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter energising /de-energising</span></li>\r\n <li><span style=\"font-size: 18px;\">Web access real time consumption reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter type tariff assessment</span></li>\r\n <li><span style=\"font-size: 18px;\">Invoice validation</span></li>\r\n <li><span style=\"font-size: 18px;\">Secure future contracts (see above)</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n <li><span style=\"font-size: 18px;\">VAT and CCL applications</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Utility Audit','','inherit','closed','closed','','1655-revision-v1','','','2016-09-30 09:24:29','2016-09-30 09:24:29','',1655,'http://utilitywatch.uk/1655-revision-v1/',0,'revision','',0),(1695,1,'2016-09-30 09:26:22','2016-09-30 09:26:22','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">We undertake this on behalf of our client’s.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"The Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216765636{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assessing your current contract terms, tariffs and conditions</span></li>\r\n <li><span style=\"font-size: 18px;\">Research the market place to find your most suitable supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Obtain optimum contracts for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Monitor contract</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216824271{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Terminate existing contracts on behalf of the client</span></li>\r\n <li><span style=\"font-size: 18px;\">Dedicated Team tracking the markets daily</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim any historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Advise ethical purchasing fuel mix i.e. wind power, energy from </span></li>\r\n <li><span style=\"font-size: 18px;\">waste and nuclear sources</span></li>\r\n <li><span style=\"font-size: 18px;\">Arrange payment terms and the length of payments</span></li>\r\n <li><span style=\"font-size: 18px;\">Smart meters and non-half hourly meters</span></li>\r\n <li><span style=\"font-size: 18px;\">Bring group contracts in line to one common</span></li>\r\n <li><span style=\"font-size: 18px;\">contract end date</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefit from our long-standing</span></li>\r\n <li><span style=\"font-size: 18px;\">relationships with suppliers</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2016-09-30 09:26:22','2016-09-30 09:26:22','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0),(1696,1,'2016-09-30 09:27:04','2016-09-30 09:27:04','','energyprocurement','','inherit','closed','closed','','energyprocurement','','','2016-09-30 09:27:04','2016-09-30 09:27:04','',1646,'http://utilitywatch.uk/wp-content/uploads/2016/09/energyprocurement.jpg',0,'attachment','image/jpeg',0),(1697,1,'2016-09-30 09:30:54','2016-09-30 09:30:54','','utility-audit','','inherit','closed','closed','','utility-audit-2','','','2016-09-30 09:30:54','2016-09-30 09:30:54','',1655,'http://utilitywatch.uk/wp-content/uploads/2016/09/utility-audit.jpg',0,'attachment','image/jpeg',0),(1698,1,'2016-09-30 09:31:22','2016-09-30 09:31:22','[vc_row full_width=\"true\" padding_bottom=\"50\"][vc_column width=\"1/1\"][vc_text_separator title=\"KEY SERVICES\" style=\"double\" el_class=\"extra-separator\"][nz_gap][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#eff3f6\" background_image=\"1423\" background_position=\"Center center\" padding_top=\"0\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"55\"][vc_column_text]\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply contracts for commercial operations, for energy and water management, including multi-site purchasing.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business’s throughout the United Kingdom, including a number of well known high street companies. This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and</span>\r\n<span style=\"font-size: 18px;\">respect.</span></p>\r\n[/vc_column_text][nz_gap height=\"35\"][nz_btn text=\"Get Quote\" link=\"http://utilitywatch.uk/contact-us/\" icon=\"icon-file\" animate=\"true\" color=\"sky\" size=\"medium\" shape=\"rounded\" type=\"3d\" el_class=\"extra-blue\"][nz_btn text=\"Latest News\" link=\"http://utilitywatch.uk/news/\" icon=\"icon-newspaper\" animate=\"true\" color=\"grey\" size=\"medium\" shape=\"rounded\" type=\"3d\" el_class=\"extra-grey\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"60\" padding_bottom=\"60\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Contact Us Now\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1418-revision-v1','','','2016-09-30 09:31:22','2016-09-30 09:31:22','',1418,'http://utilitywatch.uk/1418-revision-v1/',0,'revision','',0),(1699,1,'2016-09-30 09:32:43','2016-09-30 09:32:43','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1475227948914{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">We have a dedicated team committed to providing quick solutions and expert advice to meet your statutory requirements.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">This survey involves a comprehensive inspection of the property and a detailed in-depth report.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Our team will provide a commercial energy performance certificate (EPC) for buildings with assessments that include: lighting, heating and ventilation.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Introduced in 2013 the new format EPC highlights any improvements that can be made, together with indicative cost and the likely potential savings.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">These improvements can now be funded under the govermants green deal scheme.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','inherit','closed','closed','','1668-revision-v1','','','2016-09-30 09:32:43','2016-09-30 09:32:43','',1668,'http://utilitywatch.uk/1668-revision-v1/',0,'revision','',0),(1700,1,'2016-09-30 09:34:26','2016-09-30 09:34:26','','contact-us-900','','inherit','closed','closed','','contact-us-900','','','2016-09-30 09:34:26','2016-09-30 09:34:26','',1553,'http://utilitywatch.uk/wp-content/uploads/2015/02/contact-us-900.jpg',0,'attachment','image/jpeg',0),(1701,1,'2016-09-30 09:42:07','2016-09-30 09:42:07','[vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_top=\"125\" padding_bottom=\"50\"][vc_column animate=\"true\" width=\"1/1\"][vc_column_text]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2516.573038176914!2d-1.2099756999999636!3d50.894612200000005!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4874692d7b3f670d%3A0x9bb249085cac38b6!2sTitchfield+Ln%2C+Wickham%2C+Fareham%2C+Hampshire%2C+UK!5e0!3m2!1sen!2sin!4v1435831038063\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"2/3\"][vc_text_separator title=\"LEAVE A MESSAGE\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][contact-form-7 id=\"1559\"][/vc_column][vc_column animate=\"true\" effect=\"fade-right\" width=\"1/3\"][vc_text_separator title=\"CONTACT DETAILS\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][vc_column_text]Start Saving Money on your Business Energy Today. Contact us via any of the below information.[/vc_column_text][nz_sep][nz_icon_list icon=\"icon-location2\" icon_color=\"#0086d5\"]Suite 4 Eanam Wharf Business Centre,[/nz_icon_list][nz_icon_list icon=\"icon-location2\" icon_color=\"#0086d5\"]Blackburn, Lancashire, BB1 5BL[/nz_icon_list][nz_icon_list icon=\"icon-phone\" icon_color=\"#0086d5\"]0800 0438248[/nz_icon_list][nz_icon_list icon=\"icon-envelope\" icon_color=\"#0086d5\"]paul@utilitywatch.direct[/nz_icon_list][nz_icon_list icon=\"icon-earth\" icon_color=\"#0086d5\"]www.utilitywatch.co.uk[/nz_icon_list][nz_sep][nz_sl facebook=\"http://facebook.com/\" twitter=\"http://twitter.com/\" googleplus=\"http://plus.google.com/\" email=\"info@utilitywatch.co.uk\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1553-revision-v1','','','2016-09-30 09:42:07','2016-09-30 09:42:07','',1553,'http://utilitywatch.uk/1553-revision-v1/',0,'revision','',0),(1702,1,'2016-09-30 09:43:07','2016-09-30 09:43:07','[vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_top=\"125\" padding_bottom=\"50\"][vc_column animate=\"true\" width=\"1/1\"][vc_column_text]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2516.573038176914!2d-1.2099756999999636!3d50.894612200000005!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4874692d7b3f670d%3A0x9bb249085cac38b6!2sTitchfield+Ln%2C+Wickham%2C+Fareham%2C+Hampshire%2C+UK!5e0!3m2!1sen!2sin!4v1435831038063\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"2/3\"][vc_text_separator title=\"LEAVE A MESSAGE\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][contact-form-7 id=\"1559\"][/vc_column][vc_column animate=\"true\" effect=\"fade-right\" width=\"1/3\"][vc_text_separator title=\"CONTACT DETAILS\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][vc_column_text]Start Saving Money on your Business Energy Today. Contact us via any of the below information.[/vc_column_text][nz_sep][nz_icon_list icon=\"icon-location2\" icon_color=\"#0086d5\"]Suite 4 Eanam Wharf Business Centre, Blackburn, Lancashire, BB1 5BL[/nz_icon_list][nz_icon_list icon=\"icon-phone\" icon_color=\"#0086d5\"]0800 0438248[/nz_icon_list][nz_icon_list icon=\"icon-envelope\" icon_color=\"#0086d5\"]paul@utilitywatch.direct[/nz_icon_list][nz_icon_list icon=\"icon-earth\" icon_color=\"#0086d5\"]www.utilitywatch.co.uk[/nz_icon_list][nz_sep][nz_sl facebook=\"http://facebook.com/\" twitter=\"http://twitter.com/\" googleplus=\"http://plus.google.com/\" email=\"info@utilitywatch.co.uk\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1553-revision-v1','','','2016-09-30 09:43:07','2016-09-30 09:43:07','',1553,'http://utilitywatch.uk/1553-revision-v1/',0,'revision','',0),(1703,1,'2016-09-30 09:48:53','2016-09-30 09:48:53','','water-waster-water','','inherit','closed','closed','','water-waster-water','','','2016-09-30 09:48:53','2016-09-30 09:48:53','',1659,'http://utilitywatch.uk/wp-content/uploads/2016/09/water-waster-water.jpg',0,'attachment','image/jpeg',0),(1704,1,'2016-09-30 09:49:39','2016-09-30 09:49:39','[vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_top=\"125\" padding_bottom=\"50\"][vc_column animate=\"true\" width=\"1/1\"][vc_column_text]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2359.2690595484787!2d-2.4753946844921138!3d53.74909198006531!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b9fc9f7733981%3A0xe5d066a06442ee5e!2sBusiness+Development+Centre!5e0!3m2!1sen!2sin!4v1475228944586\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"2/3\"][vc_text_separator title=\"LEAVE A MESSAGE\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][contact-form-7 id=\"1559\"][/vc_column][vc_column animate=\"true\" effect=\"fade-right\" width=\"1/3\"][vc_text_separator title=\"CONTACT DETAILS\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][vc_column_text]Start Saving Money on your Business Energy Today. Contact us via any of the below information.[/vc_column_text][nz_sep][nz_icon_list icon=\"icon-location2\" icon_color=\"#0086d5\"]Suite 4 Eanam Wharf Business Centre, Blackburn, Lancashire, BB1 5BL[/nz_icon_list][nz_icon_list icon=\"icon-phone\" icon_color=\"#0086d5\"]0800 0438248[/nz_icon_list][nz_icon_list icon=\"icon-envelope\" icon_color=\"#0086d5\"]paul@utilitywatch.direct[/nz_icon_list][nz_icon_list icon=\"icon-earth\" icon_color=\"#0086d5\"]www.utilitywatch.co.uk[/nz_icon_list][nz_sep][nz_sl facebook=\"http://facebook.com/\" twitter=\"http://twitter.com/\" googleplus=\"http://plus.google.com/\" email=\"info@utilitywatch.co.uk\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1553-revision-v1','','','2016-09-30 09:49:39','2016-09-30 09:49:39','',1553,'http://utilitywatch.uk/1553-revision-v1/',0,'revision','',0),(1705,1,'2016-09-30 09:51:09','2016-09-30 09:51:09','','blue_wave_of_water-wide','','inherit','closed','closed','','blue_wave_of_water-wide','','','2016-09-30 09:51:09','2016-09-30 09:51:09','',1659,'http://utilitywatch.uk/wp-content/uploads/2016/09/blue_wave_of_water-wide.jpg',0,'attachment','image/jpeg',0),(1706,1,'2016-10-06 05:54:18','2016-10-06 05:54:18','[vc_row full_width=\"true\" padding_top=\"25\" padding_bottom=\"30\"][vc_column width=\"1/1\"][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\n<h4 style=\"text-align: center;\">Find your Bill</h4>\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\n<h4 style=\"text-align: center;\">Get Quote</h4>\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row padding_top=\"40\" padding_bottom=\"50\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply\ncontracts for commercial operations, for energy and water\nmanagement, including multi-site purchasing.</span></p>\n \n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business’s throughout\nthe United Kingdom, including a number of well known high street\ncompanies.</span></p>\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\"][vc_column margin_b=\"false\" width=\"1/1\"][vc_custom_heading text=\"Utility Watch’s professional team of advisors are on-call\" font_container=\"tag:h2|font_size:24px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_custom_heading text=\"between <b>08.30am & 5.00pm</b> Monday to Fridays. Freephone <b>0800 668 1161</b>\" font_container=\"tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][/vc_column][/vc_row][vc_row padding_top=\"70\" padding_bottom=\"30\"][vc_column animate=\"true\" effect=\"fade-bottom\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\n \n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and respect.</span></p>\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"30\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','156-autosave-v1','','','2016-10-06 05:54:18','2016-10-06 05:54:18','',156,'http://utilitywatch.uk/156-autosave-v1/',0,'revision','',0),(1707,1,'2016-09-30 09:53:37','2016-09-30 09:53:37','','water-waster-water','','inherit','closed','closed','','water-waster-water-2','','','2016-09-30 09:53:37','2016-09-30 09:53:37','',1659,'http://utilitywatch.uk/wp-content/uploads/2016/09/water-waster-water-1.jpg',0,'attachment','image/jpeg',0),(1708,1,'2016-09-30 09:54:29','2016-09-30 09:54:29','[vc_row full_width=\"true\" padding_top=\"25\" padding_bottom=\"30\"][vc_column width=\"1/1\"][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row padding_top=\"40\" padding_bottom=\"50\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply</span>\r\n<span style=\"font-size: 18px;\">contracts for commercial operations, for energy and water</span>\r\n<span style=\"font-size: 18px;\">management, including multi-site purchasing.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business’s throughout</span>\r\n<span style=\"font-size: 18px;\">the United Kingdom, including a number of well known high street</span>\r\n<span style=\"font-size: 18px;\">companies.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\"][vc_column margin_b=\"false\" width=\"1/1\"][vc_custom_heading text=\"Utility Watch’s professional team of advisors are on-call\" font_container=\"tag:h2|font_size:24px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_custom_heading text=\"between <b>08.30am & 5.00pm</b> Monday to Fridays. Freephone <b>0800 668 1161</b>\" font_container=\"tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][/vc_column][/vc_row][vc_row padding_top=\"70\" padding_bottom=\"30\"][vc_column animate=\"true\" effect=\"fade-bottom\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and</span>\r\n<span style=\"font-size: 18px;\">respect.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"30\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"50\"][vc_column animate=\"true\" effect=\"fade-top\" width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"75\"][nz_testimonials columns=\"3\" autoplay=\"false\" animate=\"none\"][nz_testimonial img=\"1593\" name=\"Alexandra Smart\" title=\"International Systems\"]Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros ” accumsan et iusto odio dignissi. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta[/nz_testimonial][nz_testimonial img=\"1594\" name=\"Michael Smart\" title=\"Developmnet\"]Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.[/nz_testimonial][nz_testimonial img=\"1595\" name=\"Anna Smart\" title=\"HR director\"]Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.[/nz_testimonial][nz_testimonial img=\"1592\" name=\"Michael Smart\" title=\"International Systems\"]Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi investigationes demonstraverunt.[/nz_testimonial][nz_testimonial img=\"1591\" name=\"John Smith\" title=\"Development\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi[/nz_testimonial][/nz_testimonials][/vc_column][/vc_row]','Home','','inherit','closed','closed','','156-revision-v1','','','2016-09-30 09:54:29','2016-09-30 09:54:29','',156,'http://utilitywatch.uk/156-revision-v1/',0,'revision','',0),(1709,1,'2016-09-30 10:12:30','2016-09-30 10:12:30','[vc_row full_width=\"true\" padding_top=\"25\" padding_bottom=\"30\"][vc_column width=\"1/1\"][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row padding_top=\"40\" padding_bottom=\"50\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply\r\ncontracts for commercial operations, for energy and water\r\nmanagement, including multi-site purchasing.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business’s throughout\r\nthe United Kingdom, including a number of well known high street\r\ncompanies.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\"][vc_column margin_b=\"false\" width=\"1/1\"][vc_custom_heading text=\"Utility Watch’s professional team of advisors are on-call\" font_container=\"tag:h2|font_size:24px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_custom_heading text=\"between <b>08.30am & 5.00pm</b> Monday to Fridays. Freephone <b>0800 668 1161</b>\" font_container=\"tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][/vc_column][/vc_row][vc_row padding_top=\"70\" padding_bottom=\"30\"][vc_column animate=\"true\" effect=\"fade-bottom\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and respect.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"30\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"50\"][vc_column animate=\"true\" effect=\"fade-top\" width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"75\"][nz_testimonials columns=\"3\" autoplay=\"false\" animate=\"none\"][nz_testimonial img=\"1593\" name=\"Alexandra Smart\" title=\"International Systems\"]Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros ” accumsan et iusto odio dignissi. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta[/nz_testimonial][nz_testimonial img=\"1594\" name=\"Michael Smart\" title=\"Developmnet\"]Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.[/nz_testimonial][nz_testimonial img=\"1595\" name=\"Anna Smart\" title=\"HR director\"]Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.[/nz_testimonial][nz_testimonial img=\"1592\" name=\"Michael Smart\" title=\"International Systems\"]Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi investigationes demonstraverunt.[/nz_testimonial][nz_testimonial img=\"1591\" name=\"John Smith\" title=\"Development\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi[/nz_testimonial][/nz_testimonials][/vc_column][/vc_row]','Home','','inherit','closed','closed','','156-revision-v1','','','2016-09-30 10:12:30','2016-09-30 10:12:30','',156,'http://utilitywatch.uk/156-revision-v1/',0,'revision','',0),(1710,1,'2016-09-30 10:21:59','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2016-09-30 10:21:59','0000-00-00 00:00:00','',0,'http://utilitywatch.uk/?p=1710',1,'nav_menu_item','',0),(1711,1,'2016-09-30 11:17:17','2016-09-30 11:17:17','[vc_row full_width=\"true\" padding_top=\"25\" padding_bottom=\"30\"][vc_column width=\"1/1\"][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row padding_top=\"40\" padding_bottom=\"50\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply\r\ncontracts for commercial operations, for energy and water\r\nmanagement, including multi-site purchasing.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business’s throughout\r\nthe United Kingdom, including a number of well known high street\r\ncompanies.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\"][vc_column margin_b=\"false\" width=\"1/1\"][vc_custom_heading text=\"Utility Watch’s professional team of advisors are on-call\" font_container=\"tag:h2|font_size:24px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_custom_heading text=\"between <b>08.30am & 5.00pm</b> Monday to Fridays. Freephone <b>0800 668 1161</b>\" font_container=\"tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][/vc_column][/vc_row][vc_row padding_top=\"70\" padding_bottom=\"30\"][vc_column animate=\"true\" effect=\"fade-bottom\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and respect.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"30\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','156-revision-v1','','','2016-09-30 11:17:17','2016-09-30 11:17:17','',156,'http://utilitywatch.uk/156-revision-v1/',0,'revision','',0),(1712,1,'2016-10-06 05:40:36','2016-10-06 05:40:36','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Our utility audit service is aimed at identify and implementing savings on your electricity and gas usage. After identify the full range of savings available to your business, an energy consultant will produce a cost saving report for your organisation.</span></p>\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217762407{margin-bottom: 20px !important;}\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 18px;\">Assess business costs and consumption</span></li>\n <li><span style=\"font-size: 18px;\">Identifying and reporting on opportunities for savings</span></li>\n <li><span style=\"font-size: 18px;\">Create a cost reduction strategy</span></li>\n <li><span style=\"font-size: 18px;\">Implement cost reduction strategy</span></li>\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\n</ul>\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217770465{margin-bottom: 20px !important;}\"][vc_column_text]\n<ul>\n <li><span style=\"font-size: 18px;\">Identify consumption patterns and problems</span></li>\n <li><span style=\"font-size: 18px;\">Consumption forecast and analysis</span></li>\n <li><span style=\"font-size: 18px;\">Cost to profit analysis</span></li>\n <li><span style=\"font-size: 18px;\">Eradicate estimated bills/inaccurate bills</span></li>\n <li><span style=\"font-size: 18px;\">Meter installations/removals</span></li>\n <li><span style=\"font-size: 18px;\">Meter energising /de-energising</span></li>\n <li><span style=\"font-size: 18px;\">Web access real time consumption reporting</span></li>\n <li><span style=\"font-size: 18px;\">Meter type tariff assessment</span></li>\n <li><span style=\"font-size: 18px;\">Invoice validation</span></li>\n <li><span style=\"font-size: 18px;\">Secure future contracts (see above)</span></li>\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\n <li><span style=\"font-size: 18px;\">VAT and CCL applications</span></li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Utility Audit','','inherit','closed','closed','','1655-autosave-v1','','','2016-10-06 05:40:36','2016-10-06 05:40:36','',1655,'http://utilitywatch.uk/1655-autosave-v1/',0,'revision','',0),(1713,1,'2016-09-30 11:21:04','2016-09-30 11:21:04','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:\r\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\n<blockquote>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.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://utilitywatch.uk/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','News','','inherit','closed','closed','','2-revision-v1','','','2016-09-30 11:21:04','2016-09-30 11:21:04','',2,'http://utilitywatch.uk/2-revision-v1/',0,'revision','',0),(1714,1,'2016-10-06 05:38:44','2016-10-06 05:38:44','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475225132425{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Water deregulation will occur in 2017 and will allow businesses to switch water providers to a cheaper alternative. It is anticipated that business will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475221802990{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-10-06 05:38:44','2016-10-06 05:38:44','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1715,1,'2016-10-06 05:41:36','2016-10-06 05:41:36','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Our utility audit service is aimed at identifying and implementing savings on your electricity and gas usage. After identifying the full range of savings available to your business, an energy consultant will produce a cost saving report for your organisation.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217762407{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess business costs and consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on opportunities for savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Create a cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217770465{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Identify consumption patterns and problems</span></li>\r\n <li><span style=\"font-size: 18px;\">Consumption forecast and analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Cost to profit analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Eradicate estimated bills/inaccurate bills</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter installations/removals</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter energising /de-energising</span></li>\r\n <li><span style=\"font-size: 18px;\">Web access real time consumption reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter type tariff assessment</span></li>\r\n <li><span style=\"font-size: 18px;\">Invoice validation</span></li>\r\n <li><span style=\"font-size: 18px;\">Secure future contracts (see above)</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n <li><span style=\"font-size: 18px;\">VAT and CCL applications</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Utility Audit','','inherit','closed','closed','','1655-revision-v1','','','2016-10-06 05:41:36','2016-10-06 05:41:36','',1655,'http://utilitywatch.uk/1655-revision-v1/',0,'revision','',0),(1716,1,'2016-10-06 05:42:50','2016-10-06 05:42:50','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1475227948914{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">We have a dedicated team committed to providing quick solutions and expert advice to meet your statutory requirements.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">This survey involves a comprehensive inspection of the property and a detailed in-depth report.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Our team will provide a commercial energy performance certificate (EPC) for buildings with assessments that include: lighting, heating and ventilation.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Introduced in 2013 the new format EPC highlights any improvements that can be made, together with indicative cost and the likely potential savings.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">These improvements can now be funded under the Govermant\'s green deal scheme.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','inherit','closed','closed','','1668-revision-v1','','','2016-10-06 05:42:50','2016-10-06 05:42:50','',1668,'http://utilitywatch.uk/1668-revision-v1/',0,'revision','',0),(1717,1,'2016-10-06 05:47:14','2016-10-06 05:47:14','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_custom_heading text=\"Performance Surveys\" font_container=\"tag:h2|font_size:25|text_align:center\" use_theme_fonts=\"yes\" css=\".vc_custom_1475224112288{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Carbon reduction commitment (CRC) is a compulsory emission trading scheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits / Options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475732836538{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-revision-v1','','','2016-10-06 05:47:14','2016-10-06 05:47:14','',1664,'http://utilitywatch.uk/1664-revision-v1/',0,'revision','',0),(1718,1,'2016-10-06 05:58:16','2016-10-06 05:58:16','[vc_row full_width=\"true\" padding_top=\"25\" padding_bottom=\"30\"][vc_column width=\"1/1\"][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row padding_top=\"40\" padding_bottom=\"50\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply\r\ncontracts for commercial operations, for energy and water\r\nmanagement, including multi-site purchasing.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business throughout\r\nthe United Kingdom, including a number of well known high street\r\ncompanies.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\"][vc_column margin_b=\"false\" width=\"1/1\"][vc_custom_heading text=\"Utility Watch’s professional team of advisors are on-call\" font_container=\"tag:h2|font_size:24px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_custom_heading text=\"between <b>08.30am & 5.00pm</b> Monday to Fridays. Freephone <b>0800 668 1161</b>\" font_container=\"tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][/vc_column][/vc_row][vc_row padding_top=\"70\" padding_bottom=\"30\"][vc_column animate=\"true\" effect=\"fade-bottom\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and respect.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"30\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','156-revision-v1','','','2016-10-06 05:58:16','2016-10-06 05:58:16','',156,'http://utilitywatch.uk/156-revision-v1/',0,'revision','',0),(1719,1,'2016-10-06 06:10:34','2016-10-06 06:10:34','','slide2','','publish','closed','closed','','slide2','','','2016-10-06 06:52:18','2016-10-06 06:52:18','',0,'http://utilitywatch.uk/?post_type=ninzio-slider&p=1719',0,'ninzio-slider','',0),(1721,1,'2016-10-06 06:16:43','2016-10-06 06:16:43','','slide2','','inherit','closed','closed','','1719-autosave-v1','','','2016-10-06 06:16:43','2016-10-06 06:16:43','',1719,'http://utilitywatch.uk/1719-autosave-v1/',0,'revision','',0),(1722,1,'2016-10-06 06:52:06','2016-10-06 06:52:06','','','','inherit','closed','closed','','img_06102016_121932','','','2016-10-06 06:52:13','2016-10-06 06:52:13','',0,'http://utilitywatch.uk/wp-content/uploads/2016/10/IMG_06102016_121932.png',0,'attachment','image/png',0),(1724,1,'2016-10-12 11:42:01','2016-10-12 11:42:01','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Carbon reduction commitment (CRC) is a compulsory emission trading scheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits / Options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475732836538{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-revision-v1','','','2016-10-12 11:42:01','2016-10-12 11:42:01','',1664,'http://utilitywatch.uk/1664-revision-v1/',0,'revision','',0),(1725,1,'2016-10-12 11:42:12','2016-10-12 11:42:12','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Water deregulation will occur in 2017 and will allow businesses to switch water providers to a cheaper alternative. It is anticipated that business will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475221802990{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-10-12 11:42:12','2016-10-12 11:42:12','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1726,1,'2016-10-12 11:42:44','2016-10-12 11:42:44','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">We have a dedicated team committed to providing quick solutions and expert advice to meet your statutory requirements.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">This survey involves a comprehensive inspection of the property and a detailed in-depth report.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Our team will provide a commercial energy performance certificate (EPC) for buildings with assessments that include: lighting, heating and ventilation.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Introduced in 2013 the new format EPC highlights any improvements that can be made, together with indicative cost and the likely potential savings.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">These improvements can now be funded under the Govermant\'s green deal scheme.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','inherit','closed','closed','','1668-revision-v1','','','2016-10-12 11:42:44','2016-10-12 11:42:44','',1668,'http://utilitywatch.uk/1668-revision-v1/',0,'revision','',0),(1727,1,'2016-10-12 11:47:35','2016-10-12 11:47:35','[vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_top=\"125\" padding_bottom=\"50\"][vc_column animate=\"true\" width=\"1/1\"][vc_column_text]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2359.2690595484787!2d-2.4753946844921138!3d53.74909198006531!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b9fc9f7733981%3A0xe5d066a06442ee5e!2sBusiness+Development+Centre!5e0!3m2!1sen!2sin!4v1475228944586\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"2/3\"][vc_text_separator title=\"LEAVE A MESSAGE\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][contact-form-7 id=\"1559\"][/vc_column][vc_column animate=\"true\" effect=\"fade-right\" width=\"1/3\"][vc_text_separator title=\"CONTACT DETAILS\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][vc_column_text]Start Saving Money on your Business Energy Today. Contact us via any of the below information.[/vc_column_text][nz_sep][nz_icon_list icon=\"icon-location2\" icon_color=\"#0086d5\"]Suite 4 Eanam Wharf Business Centre, Blackburn, Lancashire, BB1 5BL[/nz_icon_list][nz_icon_list icon=\"icon-phone\" icon_color=\"#0086d5\"]0800 0438248[/nz_icon_list][nz_icon_list icon=\"icon-envelope\" icon_color=\"#0086d5\"]paul@utilitywatch.direct[/nz_icon_list][nz_icon_list icon=\"icon-earth\" icon_color=\"#0086d5\"]www.utilitywatch.uk[/nz_icon_list][nz_sep][nz_sl facebook=\"http://facebook.com/\" twitter=\"http://twitter.com/\" googleplus=\"http://plus.google.com/\" email=\"info@utilitywatch.co.uk\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1553-revision-v1','','','2016-10-12 11:47:35','2016-10-12 11:47:35','',1553,'http://utilitywatch.uk/1553-revision-v1/',0,'revision','',0),(1728,1,'2016-10-12 11:50:23','2016-10-12 11:50:23','[vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_top=\"125\" padding_bottom=\"50\"][vc_column animate=\"true\" width=\"1/1\"][vc_column_text]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2359.2690595484787!2d-2.4753946844921138!3d53.74909198006531!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487b9fc9f7733981%3A0xe5d066a06442ee5e!2sBusiness+Development+Centre!5e0!3m2!1sen!2sin!4v1475228944586\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#f9f9f9\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"2/3\"][vc_text_separator title=\"LEAVE A MESSAGE\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][contact-form-7 id=\"1559\"][/vc_column][vc_column animate=\"true\" effect=\"fade-right\" width=\"1/3\"][vc_text_separator title=\"CONTACT DETAILS\" title_align=\"separator_align_left\" style=\"double\" el_class=\"extra-separator\"][nz_gap height=\"15\"][vc_column_text]Start Saving Money on your Business Energy Today. Contact us via any of the below information.[/vc_column_text][nz_sep][nz_icon_list icon=\"icon-location2\" icon_color=\"#0086d5\"]Suite 4 Eanam Wharf Business Centre, Blackburn, Lancashire, BB1 5BL[/nz_icon_list][nz_icon_list icon=\"icon-phone\" icon_color=\"#0086d5\"] 0800 043 8248[/nz_icon_list][nz_icon_list icon=\"icon-envelope\" icon_color=\"#0086d5\"]paul@utilitywatch.direct[/nz_icon_list][nz_icon_list icon=\"icon-earth\" icon_color=\"#0086d5\"]www.utilitywatch.uk[/nz_icon_list][nz_sep][nz_sl facebook=\"http://facebook.com/\" twitter=\"http://twitter.com/\" googleplus=\"http://plus.google.com/\" email=\"info@utilitywatch.co.uk\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1553-revision-v1','','','2016-10-12 11:50:23','2016-10-12 11:50:23','',1553,'http://utilitywatch.uk/1553-revision-v1/',0,'revision','',0),(1729,1,'2016-10-12 12:20:50','2016-10-12 12:20:50','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Water deregulation will occur in 2017 and will allow businesses to switch water providers to a cheaper alternative. It is anticipated that business will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 471 5109 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1476274823933{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-10-12 12:20:50','2016-10-12 12:20:50','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1730,1,'2016-10-12 12:22:09','2016-10-12 12:22:09','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Water deregulation will occur in 2017 and will allow businesses to switch water providers to a cheaper alternative. It is anticipated that business will achieve substantial savings in the initial phase of the deregulation process. Substantial savings can also be made by analysing the water usage, water management and waste.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1476274823933{margin-bottom: 0px !important;border-bottom-width: 0px !important;padding-bottom: 0px !important;}\"][/vc_column][vc_column width=\"5/12\"][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row padding_top=\"\" padding_bottom=\"\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of water consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Desktop Audit of waste consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Return to sewer tariff analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Historical billing analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefits</span></li>\r\n <li><span style=\"font-size: 18px;\">Saving by switiching supplier</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential saving</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim Multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Water & Waste Water','','inherit','closed','closed','','1659-revision-v1','','','2016-10-12 12:22:09','2016-10-12 12:22:09','',1659,'http://utilitywatch.uk/1659-revision-v1/',0,'revision','',0),(1731,1,'2016-10-12 12:22:37','2016-10-12 12:22:37','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">We have a dedicated team committed to providing quick solutions and expert advice to meet your statutory requirements.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">This survey involves a comprehensive inspection of the property and a detailed in-depth report.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Our team will provide a commercial energy performance certificate (EPC) for buildings with assessments that include: lighting, heating and ventilation.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">Introduced in 2013 the new format EPC highlights any improvements that can be made, together with indicative cost and the likely potential savings.</span></li>\r\n <li><span style=\"font-size: 20px; line-height: 36px;\">These improvements can now be funded under the Govermant\'s green deal scheme.</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Other Services','','inherit','closed','closed','','1668-revision-v1','','','2016-10-12 12:22:37','2016-10-12 12:22:37','',1668,'http://utilitywatch.uk/1668-revision-v1/',0,'revision','',0),(1732,1,'2016-10-12 12:23:16','2016-10-12 12:23:16','[vc_row full_width=\"true\" padding_top=\"25\" padding_bottom=\"30\"][vc_column width=\"1/1\"][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row padding_top=\"40\" padding_bottom=\"50\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply\r\ncontracts for commercial operations, for energy and water\r\nmanagement, including multi-site purchasing.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business throughout\r\nthe United Kingdom, including a number of well known high street\r\ncompanies.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\"][vc_column margin_b=\"false\" width=\"1/1\"][vc_custom_heading text=\"Utility Watch’s professional team of advisors are on-call\" font_container=\"tag:h2|font_size:24px|text_align:center|color:%23ffffff|line_height:34px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][vc_custom_heading text=\"between <b>08.30am & 5.00pm</b> Monday to Fridays. Freephone <b> 0800 043 8248</b>\" font_container=\"tag:h3|font_size:28px|text_align:center|color:%23ffffff|line_height:38px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:400%20regular%3A400%3Anormal\"][/vc_column][/vc_row][vc_row padding_top=\"70\" padding_bottom=\"30\"][vc_column animate=\"true\" effect=\"fade-bottom\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n \r\n<p style=\"text-align: center; line-height: 25px;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and respect.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"30\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','156-revision-v1','','','2016-10-12 12:23:16','2016-10-12 12:23:16','',156,'http://utilitywatch.uk/156-revision-v1/',0,'revision','',0),(1733,1,'2016-10-12 12:24:55','2016-10-12 12:24:55','[vc_row full_width=\"true\" padding_bottom=\"50\"][vc_column pt=\"40\" width=\"1/1\"][vc_text_separator title=\"KEY SERVICES\" style=\"double\" el_class=\"extra-separator\"][nz_gap][nz_content_box columns=\"4\" animate=\"scale\"][nz_box link=\"#\" icon=\"icon-drawer3\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Bill</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-search\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your Supply Number</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-meter2\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Find your KWh Usage</h4>\r\n[/nz_box][nz_box link=\"#\" icon=\"icon-text\" icon_color=\"#0086d5\" icon_back_color=\"#eef0f1\" icon_border_color=\"#eef0f1\" icon_hover_color=\"#ffffff\" icon_hover_effect_color=\"#0086d5\"]\r\n<h4 style=\"text-align: center;\">Get Quote</h4>\r\n[/nz_box][/nz_content_box][/vc_column][/vc_row][vc_row full_width=\"true\" background_color=\"#eff3f6\" background_image=\"1423\" background_position=\"Center center\" padding_top=\"0\" padding_bottom=\"75\"][vc_column animate=\"true\" effect=\"fade-left\" width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"55\"][vc_column_text]\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">Utility Watch specialise in sourcing the most competitive supply contracts for commercial operations, for energy and water management, including multi-site purchasing.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">We have a client base in excess of 4,700 business’s throughout the United Kingdom, including a number of well known high street companies. This enables us to negotiate with suppliers from a position of strength. Utility Watch has been built up on operating professionally and ethically in the utilities market. The relationships developed have been as a result of this.</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: 18px;\">We are proud of our friendly service and we will continue to build long term relationships with clients, based on mutual trust and</span>\r\n<span style=\"font-size: 18px;\">respect.</span></p>\r\n[/vc_column_text][nz_gap height=\"35\"][nz_btn text=\"Get Quote\" link=\"http://utilitywatch.uk/contact-us/\" icon=\"icon-file\" animate=\"true\" color=\"sky\" size=\"medium\" shape=\"rounded\" type=\"3d\" el_class=\"extra-blue\"][nz_btn text=\"Latest News\" link=\"http://utilitywatch.uk/news/\" icon=\"icon-newspaper\" animate=\"true\" color=\"grey\" size=\"medium\" shape=\"rounded\" type=\"3d\" el_class=\"extra-grey\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row padding_top=\"0\" padding_bottom=\"0\"][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"60\" padding_bottom=\"60\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Contact Us Now\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1418-revision-v1','','','2016-10-12 12:24:55','2016-10-12 12:24:55','',1418,'http://utilitywatch.uk/1418-revision-v1/',0,'revision','',0),(1734,1,'2016-10-12 12:25:41','2016-10-12 12:25:41','[vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"10/12\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Carbon reduction commitment (CRC) is a compulsory emission trading scheme, designed to improve energy efficiency and reduce the amount of CO2 emissions produced by business. It aims to reduce carbon emissions in large non-energy intensive organisations.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Utility Watch have an in-depth understanding of Government Legislation and taxes including the Climate Change Levy (CCL), the European Union Emissions Trading Scheme (EUETS) and the Carbon Reduction Commitment (CRC). We have the expertise to offer sound advice to your business in all of these areas.</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">(Note: This service only applies to organisations with a total electricity usage of over 6,000 MWH per annum)</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Benefits / Options available:\" use_theme_fonts=\"yes\" css=\".vc_custom_1475732836538{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Reporting and forecasting carbon allowance requirements</span></li>\r\n <li><span style=\"font-size: 18px;\">Integrating carbon reporting with financial and energy management </span><span style=\"font-size: 18px;\">reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Footprint Report</span></li>\r\n <li><span style=\"font-size: 18px;\">Annual Emissions Report (CO2)</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide an auditable data capture, maintenance and reporting </span><span style=\"font-size: 18px;\">infrastructure</span></li>\r\n <li><span style=\"font-size: 18px;\">Estimated energy bills (pro-rata calculation)</span></li>\r\n <li><span style=\"font-size: 18px;\">Multi-location portfolio purchasing</span></li>\r\n <li><span style=\"font-size: 18px;\">Climate Change Levy (CCL)</span></li>\r\n <li><span style=\"font-size: 18px;\">European Union Emissions Trading Scheme (EUETS)</span></li>\r\n <li><span style=\"font-size: 18px;\">Carbon Reduction Commitment (CRC)</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"5/12\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475218241345{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess CO2 Output</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on reduction opportunities</span></li>\r\n <li><span style=\"font-size: 18px;\">Create CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement CO2 reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Carbon Reduction','','inherit','closed','closed','','1664-revision-v1','','','2016-10-12 12:25:41','2016-10-12 12:25:41','',1664,'http://utilitywatch.uk/1664-revision-v1/',0,'revision','',0),(1735,1,'2016-10-12 12:26:03','2016-10-12 12:26:03','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">Our utility audit service is aimed at identifying and implementing savings on your electricity and gas usage. After identifying the full range of savings available to your business, an energy consultant will produce a cost saving report for your organisation.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217762407{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assess business costs and consumption</span></li>\r\n <li><span style=\"font-size: 18px;\">Identify and report on opportunities for savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Create a cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Implement cost reduction strategy</span></li>\r\n <li><span style=\"font-size: 18px;\">Provide performance reports</span></li>\r\n <li><span style=\"font-size: 18px;\">Continue to assess performance</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475217770465{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Identify consumption patterns and problems</span></li>\r\n <li><span style=\"font-size: 18px;\">Consumption forecast and analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Cost to profit analysis</span></li>\r\n <li><span style=\"font-size: 18px;\">Eradicate estimated bills/inaccurate bills</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter installations/removals</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter energising /de-energising</span></li>\r\n <li><span style=\"font-size: 18px;\">Web access real time consumption reporting</span></li>\r\n <li><span style=\"font-size: 18px;\">Meter type tariff assessment</span></li>\r\n <li><span style=\"font-size: 18px;\">Invoice validation</span></li>\r\n <li><span style=\"font-size: 18px;\">Secure future contracts (see above)</span></li>\r\n <li><span style=\"font-size: 18px;\">Contractual dispute resolution</span></li>\r\n <li><span style=\"font-size: 18px;\">VAT and CCL applications</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Utility Audit','','inherit','closed','closed','','1655-revision-v1','','','2016-10-12 12:26:03','2016-10-12 12:26:03','',1655,'http://utilitywatch.uk/1655-revision-v1/',0,'revision','',0),(1736,1,'2016-10-12 12:26:15','2016-10-12 12:26:15','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">We undertake this on behalf of our client’s.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100% of our clients have saved on energy costs with Utility Watch, Call us on 0800 043 8248 or\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"The Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216765636{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assessing your current contract terms, tariffs and conditions</span></li>\r\n <li><span style=\"font-size: 18px;\">Research the market place to find your most suitable supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Obtain optimum contracts for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Monitor contract</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216824271{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Terminate existing contracts on behalf of the client</span></li>\r\n <li><span style=\"font-size: 18px;\">Dedicated Team tracking the markets daily</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim any historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Advise ethical purchasing fuel mix i.e. wind power, energy from </span></li>\r\n <li><span style=\"font-size: 18px;\">waste and nuclear sources</span></li>\r\n <li><span style=\"font-size: 18px;\">Arrange payment terms and the length of payments</span></li>\r\n <li><span style=\"font-size: 18px;\">Smart meters and non-half hourly meters</span></li>\r\n <li><span style=\"font-size: 18px;\">Bring group contracts in line to one common</span></li>\r\n <li><span style=\"font-size: 18px;\">contract end date</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefit from our long-standing</span></li>\r\n <li><span style=\"font-size: 18px;\">relationships with suppliers</span></li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2016-10-12 12:26:15','2016-10-12 12:26:15','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0),(1738,1,'2017-04-24 10:25:41','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2017-04-24 10:25:41','0000-00-00 00:00:00','',0,'http://utilitywatch.uk/?p=1738',0,'post','',0),(1739,1,'2017-05-18 14:00:28','2017-05-18 14:00:28','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">We undertake this on behalf of our client’s.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100 % of our Clients have Saved on energy costs with Utility Watch. Call us on 0800 043 8148 or Get Quote*\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"The Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216765636{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assessing your current contract terms, tariffs and conditions</span></li>\r\n <li><span style=\"font-size: 18px;\">Research the market place to find your most suitable supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Obtain optimum contracts for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Monitor contract</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216824271{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Terminate existing contracts on behalf of the client</span></li>\r\n <li><span style=\"font-size: 18px;\">Dedicated Team tracking the markets daily</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim any historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Advise ethical purchasing fuel mix i.e. wind power, energy from </span></li>\r\n <li><span style=\"font-size: 18px;\">waste and nuclear sources</span></li>\r\n <li><span style=\"font-size: 18px;\">Arrange payment terms and the length of payments</span></li>\r\n <li><span style=\"font-size: 18px;\">Smart meters and non-half hourly meters</span></li>\r\n <li><span style=\"font-size: 18px;\">Bring group contracts in line to one common</span></li>\r\n <li><span style=\"font-size: 18px;\">contract end date</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefit from our long-standing</span></li>\r\n <li><span style=\"font-size: 18px;\">relationships with suppliers</span></li>\r\n</ul>\r\n[/vc_column_text][vc_column_text]* Please Note these customers saved on Energy costs when compared to offers from their existing supplier renewal offer[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2017-05-18 14:00:28','2017-05-18 14:00:28','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0),(1740,1,'2017-05-18 14:00:58','2017-05-18 14:00:58','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">The sourcing and purchasing of energy contracts can be complicated and time consuming for all business’s. In our experience, most business’s pay more than they need to by not controlling energy costs and not renegotiating their supply contracts at the correct time ensuring the best and most beneficial supply contracts are sourced….</span></p>\r\n<p style=\"text-align: center;\"><span style=\"font-size: 20px; line-height: 36px;\">We undertake this on behalf of our client’s.</span></p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][nz_tagline_2 title=\"100 % of our Clients have Saved on energy costs with Utility Watch. Call us on 0800 043 8148 or Get Quote*\" color=\"#ffffff\" background_color=\"#0086d5\" padding_top=\"40\" padding_bottom=\"40\" link=\"http://utilitywatch.uk/contact-us/\" text=\"Get Quote\" btn_type=\"ghost\" btn_shape=\"round\" btn_color=\"#ffffff\" btn_back_color=\"#ffffff\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"The Process\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216765636{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Assessing your current contract terms, tariffs and conditions</span></li>\r\n <li><span style=\"font-size: 18px;\">Research the market place to find your most suitable supplier</span></li>\r\n <li><span style=\"font-size: 18px;\">Obtain optimum contracts for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Monitor contract</span></li>\r\n</ul>\r\n[/vc_column_text][vc_custom_heading text=\"Benefits\" use_theme_fonts=\"yes\" css=\".vc_custom_1475216824271{margin-bottom: 20px !important;}\"][vc_column_text]\r\n<ul>\r\n <li><span style=\"font-size: 18px;\">Maximise all potential savings</span></li>\r\n <li><span style=\"font-size: 18px;\">Terminate existing contracts on behalf of the client</span></li>\r\n <li><span style=\"font-size: 18px;\">Dedicated Team tracking the markets daily</span></li>\r\n <li><span style=\"font-size: 18px;\">Reclaim any historical billing losses</span></li>\r\n <li><span style=\"font-size: 18px;\">Assessment of correct pricing structure for your business</span></li>\r\n <li><span style=\"font-size: 18px;\">Claim multi-site and large user discounts</span></li>\r\n <li><span style=\"font-size: 18px;\">Advise ethical purchasing fuel mix i.e. wind power, energy from </span></li>\r\n <li><span style=\"font-size: 18px;\">waste and nuclear sources</span></li>\r\n <li><span style=\"font-size: 18px;\">Arrange payment terms and the length of payments</span></li>\r\n <li><span style=\"font-size: 18px;\">Smart meters and non-half hourly meters</span></li>\r\n <li><span style=\"font-size: 18px;\">Bring group contracts in line to one common</span></li>\r\n <li><span style=\"font-size: 18px;\">contract end date</span></li>\r\n <li><span style=\"font-size: 18px;\">Benefit from our long-standing</span></li>\r\n <li><span style=\"font-size: 18px;\">relationships with suppliers</span></li>\r\n</ul>\r\n[/vc_column_text][vc_column_text]\r\n\r\n \r\n\r\n* Please Note these customers saved on Energy costs when compared to offers from their existing supplier renewal offer[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row background_color=\"#f5f6f7\" padding_top=\"0\" padding_bottom=\"60\"][vc_column width=\"1/1\"][vc_single_image image=\"1596\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"30\"][vc_custom_heading text=\"Our Supplier Partners\" font_container=\"tag:h3|font_size:27px|text_align:center|color:%230086d5|line_height:37px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:600%20bold%20regular%3A600%3Anormal\"][nz_gap height=\"30\"][vc_single_image image=\"1598\" img_size=\"full\" alignment=\"center\"][nz_gap height=\"40\"][vc_single_image image=\"1597\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','Energy Procurement','','inherit','closed','closed','','1646-revision-v1','','','2017-05-18 14:00:58','2017-05-18 14:00:58','',1646,'http://utilitywatch.uk/1646-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(1584,6,0),(1585,6,0),(1639,1,0),(1673,6,0),(1674,6,0),(1677,6,0),(1678,6,0),(1679,6,0),(1685,6,0),(1691,6,0),(1693,6,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,2),(2,2,'product_type','',0,0),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'nav_menu','',0,10);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'Main Menu','main-menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
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) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','utilitywatch'),(2,1,'first_name','Bhoobala'),(3,1,'last_name','Krishnan'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw,vc_pointers_backend_editor'),(13,1,'show_welcome_panel','1'),(15,1,'wp_dashboard_quick_press_last_post_id','1738'),(16,1,'session_tokens','a:1:{s:64:\"72779ae10b9d26f65d418822e4d6ae702fa128fb1024109c84fa01307666e2b6\";a:4:{s:10:\"expiration\";i:1495288629;s:2:\"ip\";s:12:\"92.16.26.188\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1495115829;}}'),(17,1,'wp_user-settings','libraryContent=browse&editor=tinymce&hidetb=1&urlbutton=none&imgsize=full&align=center&edit_element_vcUIPanelWidth=651&edit_element_vcUIPanelLeft=156px&edit_element_vcUIPanelTop=0px'),(18,1,'wp_user-settings-time','1475735662'),(19,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(20,1,'metaboxhidden_nav-menus','a:11:{i:0;s:30:\"woocommerce_endpoints_nav_link\";i:1;s:8:\"add-post\";i:2;s:11:\"add-product\";i:3;s:17:\"add-ninzio-slider\";i:4;s:13:\"add-portfolio\";i:5;s:12:\"add-post_tag\";i:6;s:15:\"add-post_format\";i:7;s:22:\"add-portfolio-category\";i:8;s:17:\"add-portfolio-tag\";i:9;s:15:\"add-product_cat\";i:10;s:15:\"add-product_tag\";}'),(21,1,'nav_menu_recently_edited','6'),(22,1,'closedpostboxes_post','a:0:{}'),(23,1,'metaboxhidden_post','a:10:{i:0;s:20:\"post-feature-image-2\";i:1;s:20:\"post-feature-image-3\";i:2;s:20:\"post-feature-image-4\";i:3;s:20:\"post-feature-image-5\";i:4;s:13:\"trackbacksdiv\";i:5;s:10:\"postcustom\";i:6;s:16:\"commentstatusdiv\";i:7;s:11:\"commentsdiv\";i:8;s:7:\"slugdiv\";i:9;s:9:\"authordiv\";}'),(24,1,'wp_r_tru_u_x','a:2:{s:2:\"id\";i:0;s:7:\"expires\";i:1475157020;}'),(25,1,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:109:\"wpb_visual_composer,ninzio-page-options,postexcerpt,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(26,1,'screen_layout_page','2');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'utilitywatch','$P$BjCrIfd4nv4aNyyXCWS423xUnu/iwN0','utilitywatch','bhoobal.webdesigner@gmail.com','','2015-05-14 22:21:27','',0,'utilitywatch');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_api_keys`
--
DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
`key_id` bigint(20) NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci,
`permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
`nonces` longtext COLLATE utf8mb4_unicode_ci,
`truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_access` datetime DEFAULT NULL,
PRIMARY KEY (`key_id`),
KEY `consumer_key` (`consumer_key`),
KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_api_keys`
--
LOCK TABLES `wp_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--
DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
`attribute_id` bigint(20) NOT NULL AUTO_INCREMENT,
`attribute_name` varchar(200) NOT NULL,
`attribute_label` longtext,
`attribute_type` varchar(200) NOT NULL,
`attribute_orderby` varchar(200) NOT NULL,
`attribute_public` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`attribute_id`),
KEY `attribute_name` (`attribute_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--
LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--
DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
`permission_id` bigint(20) NOT NULL AUTO_INCREMENT,
`download_id` varchar(32) NOT NULL,
`product_id` bigint(20) NOT NULL,
`order_id` bigint(20) NOT NULL DEFAULT '0',
`order_key` varchar(200) NOT NULL,
`user_email` varchar(200) NOT NULL,
`user_id` bigint(20) DEFAULT NULL,
`downloads_remaining` varchar(9) DEFAULT NULL,
`access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access_expires` datetime DEFAULT NULL,
`download_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`permission_id`),
KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`,`download_id`),
KEY `download_order_product` (`download_id`,`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--
LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_itemmeta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`order_item_id` bigint(20) NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `order_item_id` (`order_item_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--
LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_items`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
`order_item_id` bigint(20) NOT NULL AUTO_INCREMENT,
`order_item_name` longtext NOT NULL,
`order_item_type` varchar(200) NOT NULL DEFAULT '',
`order_id` bigint(20) NOT NULL,
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_order_items`
--
LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`payment_token_id` bigint(20) NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `payment_token_id` (`payment_token_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--
LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokens`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
`token_id` bigint(20) NOT NULL AUTO_INCREMENT,
`gateway_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) NOT NULL DEFAULT '0',
`type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`token_id`),
KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--
LOCK TABLES `wp_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_sessions`
--
DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
`session_id` bigint(20) NOT NULL AUTO_INCREMENT,
`session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`session_expiry` bigint(20) NOT NULL,
PRIMARY KEY (`session_key`),
UNIQUE KEY `session_id` (`session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_sessions`
--
LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
`location_id` bigint(20) NOT NULL AUTO_INCREMENT,
`zone_id` bigint(20) NOT NULL,
`location_code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`location_id`),
KEY `location_id` (`location_id`),
KEY `location_type` (`location_type`),
KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--
LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
`zone_id` bigint(20) NOT NULL,
`instance_id` bigint(20) NOT NULL AUTO_INCREMENT,
`method_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`method_order` bigint(20) NOT NULL,
`is_enabled` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--
LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zones`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
`zone_id` bigint(20) NOT NULL AUTO_INCREMENT,
`zone_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`zone_order` bigint(20) NOT NULL,
PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--
LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
`location_id` bigint(20) NOT NULL AUTO_INCREMENT,
`location_code` varchar(255) NOT NULL,
`tax_rate_id` bigint(20) NOT NULL,
`location_type` varchar(40) NOT NULL,
PRIMARY KEY (`location_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `location_type` (`location_type`),
KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--
LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rates`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
`tax_rate_id` bigint(20) NOT NULL AUTO_INCREMENT,
`tax_rate_country` varchar(200) NOT NULL DEFAULT '',
`tax_rate_state` varchar(200) NOT NULL DEFAULT '',
`tax_rate` varchar(200) NOT NULL DEFAULT '',
`tax_rate_name` varchar(200) NOT NULL DEFAULT '',
`tax_rate_priority` bigint(20) NOT NULL,
`tax_rate_compound` int(1) NOT NULL DEFAULT '0',
`tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
`tax_rate_order` bigint(20) NOT NULL,
`tax_rate_class` varchar(200) NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_id`),
KEY `tax_rate_country` (`tax_rate_country`),
KEY `tax_rate_state` (`tax_rate_state`),
KEY `tax_rate_class` (`tax_rate_class`),
KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_tax_rates`
--
LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_termmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_termmeta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`woocommerce_term_id` bigint(20) NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `woocommerce_term_id` (`woocommerce_term_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_termmeta`
--
LOCK TABLES `wp_woocommerce_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-04-25 23:04:00